gNMI for Streaming Telemetry from Sonic Device
gNMI streaming telemetry offers an efficient alternative by continuously transmitting data from network devices with incremental updates. Instead of relying on SNMPโs polling mechanism, which collects data regardless of changes, gNMI allows operators to subscribe to specific data points using well-defined sensor identifiers. This approach provides near real-time, model-driven, and analytics-ready insights, enabling more effective network automation, traffic optimization, and proactive troubleshooting.
[[inputs.gnmi]]
#Address and port of the gNMI GRPC server (Update with sonic device IP)
addresses = [“:”,”:”]
#define credentials
username = “”
password = “”
#gNMI encoding requested (one of: “proto”, “json”, “json_ietf”, “bytes”)
encoding = “json”
#redial in case of failures after
redial = “10s”
#enable TLS only if any of the other options are specified (For different telegraf version it will be enable_tls = true)
tls_enable = true
#Use TLS but skip chain & host verification
insecure_skip_verify = true
#Subscription to get temperature detail
[[inputs.gnmi.subscription]]
name = “temperature_sensor”
origin = “openconfig”
path = “<url>”
sample_interval = “60s”
Note : Once Configuration has been Updated restart telegraf service i.e sudo systemctl restart telegraf