Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: ServerTelemetryNetwork
description: Network telemetry for the server.
required:
- devices
- neighbors
properties:
devices:
type:
Expand All @@ -11,3 +12,12 @@ properties:
description: Per-interface network counters, keyed by interface name.
additionalProperties:
$ref: ./ServerTelemetryDeviceStats.yml
neighbors:
type:
- array
- "null"
description: >-
Live network neighbors (ARP/NDP table entries) discovered via the
kernel netlink API, covering both IPv4 (ARP) and IPv6 (NDP).
items:
$ref: ./ServerTelemetryNetworkNeighbor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
type: object
title: ServerTelemetryNetworkNeighbor
description: A single entry in the server's ARP/NDP neighbor table.
required:
- ip
- device
- state
properties:
ip:
type: string
description: The IP address of the neighbor (IPv4 or IPv6).
device:
type: string
description: The network interface the neighbor was discovered on.
mac:
type: string
description: >-
The MAC address of the neighbor. Omitted for incomplete or failed
entries, matching `ip neigh` behavior.
state:
type: string
description: >-
The NUD (Neighbor Unreachability Detection) state of the entry.
enum:
- INCOMPLETE
- REACHABLE
- STALE
- DELAY
- PROBE
- FAILED
- NOARP
- PERMANENT
- NONE
- UNKNOWN
Loading