Skip to content

gNMIc joins Openconfig 🚀#

Two years ago, a dozen contributors less, 400 Pull Requests, and 2000 commits behind, another pet project appeared on a vast GitHub landscape. It was a learning exercise by Karim Radhouani to sharpen his skills in gNMI - a niche network management protocol promoted by the Openconfig group.

Initially named gnmi_client, it had a noble but narrow scope of providing a feature-rich, complete, yet intuitive CLI for gNMI-enabled routers. Fast forward two years, and we have the gNMIc software suite that is much more than just a CLI for gNMI.

Today, Nokia donates the gNMIc project to Openconfig, and with that move, we expect to see gNMIc adopted by even more companies and organizations 🥳

In this post I'd like to give you a brief overview of gNMIc's core features and share my thoughts on what we expect to happen with gNMIc moving under the Openconfig's wing.

Over the past two years, gNMIc became a feature-rich gNMI-focused software suite. Both its CLI and collection capabilities matured with lots of new integrations added. Moreover, gNMIc had quite some air time in production networks, not to mention lab deployments and dev testbeds.

I would like to briefly highlight gNMIc's current feature set for those who aren't familiar with it yet. Broadly, we split gNMIc capabilities into the following three domains:

  • CLI
  • Collector
  • API

Note

Each of those domain areas packs a hefty number of neat features, and I will only highlight some of them to keep the introduction short and sweet.

gNMIc cherishes documentation; readers are encouraged to follow the links provided in this post to get more information on particular topics.

logo logo

CLI#

gNMIc provides an intuitive yet full-featured CLI for interacting with gNMI-capable targets. It fully implements gNMI v0.7+ specification with extensions1, and with the move under Openconfig, it becomes a standard gNMI CLI tool.

In 2020 I wrote about gNMIc highlighting its CLI capabilities. Since then CLI side of gNMIc has only become better with the following changes:

  • Added template-based payloads to simplify complex and data-driven configuration use cases.
  • GetSet command introduced to allow conditional execution of a Set RPC based on a received Get response.
  • Implemented diff command to compare configurations between two different targets and identify configuration drift.
  • Added prompt mode for a guided CLI experience.
  • Added generation of paths out of the YANG modules.
  • Support configuration via any of the following methods: CLI flags, environment variables, or file.
  • Integrated prototext and protojson output options to display raw requests and responses.

gNMIc CLI

Easy one-click installation, multi-arch/multi-OS hermetic binary, full feature parity with gNMI spec and intuitive commands layout make gnmic tool a perfect choice for the task.



Collector#

Having a great CLI was just the beginning; the lion's share of changes happened in the collector area of gNMIc.

collector

gNMIc as a collector in a typical open-source streaming telemetry deployment

With the growing interest in Streaming Telemetry, we saw an opportunity to create an open-source telemetry collector to meet the demand. Not just a collector, but the open-source collector that can survive a production deployment with all its requirements. I'd like to believe that gNMIc succeeded in delivering on that promise.

Given the central piece that collection capabilities take in gNMIc, it makes sense to spend some additional time on collector's core components.

Clustering#

Streaming Telemetry is often perceived as glorified monitoring that can tolerate outages. Not really, no.

Modern telemetry systems are essential for observability, diagnostics and starting to play a vital role in network automation; Because of that importance, an outage is undesired and should be avoided. For that reason, a Streaming Telemetry collector needs to support High Availability and resiliency.

clustering

gNMIc comes with automatic cluster formation routines that enable high availability, scaling, and target redistribution.

A cluster of gNMIc instances distributes the load by locking the targets to certain instances of the cluster. When the cluster is healthy and operational, targets are assigned to specific gNMIc nodes; in the case of a gNMIc node failure, its targets are going to be moved to a healthy gNMIc node.

load-balancing

A view on Consul service key/value store with targets distributed across gNMIc instances

Target loaders#

Adding gNMI targets to the config file works as long as the number of targets stays reasonable and constant. More often than not, in production deployments, the number of targets is quite large. And what is even more critical, targets are being added/removed over time.
Consequently, it is desirable for a controller to be able to discover and load targets automatically.

gNMIc supports the dynamic loading of gNMI targets from external systems and services. This feature allows adding and deleting gNMI targets without the need to restart gnmic.

fileloader

Targets can be loaded from the following sources:

  • file: watch for the changes done to a local file containing gNMI targets definitions.
  • consul: read targets registered in the Consul service registry.
  • docker: retrieve available targets using Docker API.
  • http: read target definition from an HTTP server.

Processors#

No collection service can live without a data processing pipeline. Data that the users typically collect from the network elements often requires some processing before it can be stored in a database.

Let's have a look at a few examples where processing is mandatory:

  • Units normalization/conversion: in a multivendor network it may be needed to normalize units for, say, utilization rate, from various vendors to a common unit. MB, KB to Bytes, or various time formats to a common epoch time or datetime format.
  • Filtering metrics: when dealing with a wildcard-based subscription, a collector may receive more data than needed. To optimize for space in the database, processors can be used to allow/drop the needed metrics and give you control over what is going to be written to it.
  • Data conversion: depending on the telemetry encoding or vendor's implementation, a collector might receive data in a string format, while it needs to be an integer. A conversion processor can automatically convert such metrics so that users can run operations on them in the database.
  • Tag extraction: For certain metrics collected via gNMI, users may need to extract specific values and promote them to metric's tags to enable a nice layout in the database.

gNMIc employs a large set of processors that can help you transform and shape your data the way you need it. Processors can form processing pipelines and be associated with any configured output to enable flexible data pipelines.

Processors
Add Tag Allow Convert Data Convert Date String
Delete Drop Duration Convert Extract Tags Group By
Jq Merge Override TS Strings To Tag
Trigger Value Tag Write

Processors become invaluable when Streaming Telemetry leaves the lab's sandbox and gets applied in production where dragons lie.

Outputs#

A Streaming Telemetry typically doesn't store collected data; instead, it pushes the collected and processed data to an output, such as a Time Series Database (TSDB), a message bus, or a file.

Various supported outputs make a streaming telemetry collector versatile because it can be deployed in different data pipelines. gNMIc supports a solid number of outputs categorized as databases, message queues, and files.

outputs

Most popular and used outputs are already supported by gNMIc:

  • Time Series Databases
    • InfluxDB
    • Prometheus (pull and remote write models)
    • and others working with Prometheus or Influx wire protocols.
  • Message queues
    • NATS
    • STAN
    • Kafka
  • Raw outputs
    • TCP, UDP (for example in conjunction with ElasticSearch database)

With a powerful concept of multiple outputs, users can write their metrics to different data stores and create advanced data pipelines.

Inputs#

Complex telemetry pipelines might be built using gNMIc's concept of inputs. With inputs, gNMIc is able to receive gNMI data not from an end-device such as a router but from another gNMIc instance.

This powerful technique enables users to build a distributed cluster of gNMIc collectors that export the data to a single collector upstream.

input-clustering

Or create a so-called data-reuse pipeline where multiple outputs receive the same telemetry data.

data-reuse

Tunnel server (gNMI dial-out)#

Dial-out Streaming Telemetry has been a custom thing for quite some time. gNMI specification only specifies the dial-in model where a collector initiates the session towards the gNMI-enabled targets, and not the other way around. But being able to initiate a connection from the router towards a collector is sometimes desirable or even mandatory.

To accommodate for that deployment scenario, vendors implemented custom gRPC services that catered to this use case. And recently, the Openconfig group proposed a standard approach to enable dial-out gNMI telemetry using openconfig/grpc-tunnel project.

dialout

gNMIc is the first open-source collector that implements grpc-tunnel specification and thus can support deployment scenarios where dial-out is needed using a proposed standard approach.

Deployment examples#

All those features make gNMIc quite versatile and powerful, but at the same time, it might be overwhelming for newcomers. With that thought in mind, gNMIc packs many deployment examples that should help users get going quickly and smooth.

example
A deployment topology from one of the examples

gNMIc deployment examples provide users with a complete use case explanation. Moreover, every example comes with a ready-made virtual testbed2 so that you can try the scenario for yourself.
The examples typically include a gNMIc instance with its configuration, the rest of the Telemetry stack (TSDB of choice plus Grafana), and a virtual network to extract the data.

What else?#

Many other things and improvements were made to gNMIc, making it even more powerful.

  • gNMI Server that makes gNMIc act as a gNMI target itself to build hierarchical collector deployments.
  • Actions allow gNMIc to invoke reactions based on the received telemetry data and, to some extent, help users build reactive systems.
  • REST API to automate target provisioning and lifecycle.

Why Not Telegraf?#

This question may very well still be on your mind when you reach this chapter. And now, when we walked over the collector's features, it is evident that most of those features are simply not available in Telegraf. Clustering, high availability, target discovery, hierarchical deployments are all unique to gNMIc.

scalpel

Telegraf is an excellent product, don't get me wrong, but when it comes to gNMI it is a swiss knife vs. a surgical scalpel.



Go API#

And finally, gNMIc provides a human-friendly Go API for gNMI. In contrast with the auto-generated gNMI API supplied by the github.com/openconfig/gnmi package, the API exposed by the gNMIc in the github.com/openconfig/gnmic/api package has abstractions in place that make interactions with gNMI targets less cumbersome and more intuitive.

router, err := api.NewTarget(
    api.Name("router1"),
    api.Address("10.0.0.1:57400"),
    api.Username("admin"),
    api.Password("S3cret!"),
    api.SkipVerify(true),
)
getRequest, err := api.NewGetRequest(
    api.Encoding("json_ietf"),
    api.DataType("config"),
    api.Path("interfaces/interface"),
    api.Path("network-instances/network-instance"),
)
getResponse, err := router.Get(ctx, getRequest)

With a friendly API, we expect to see an uptake in gNMI as a network management protocol being used programmatically. Go get it!



Move to Openconfig#

Now to the meat of it. Nokia donates gNMIc to the Openconfig group. But why moving?

I believe there are several interdependent areas of improvement worth indicating.

  1. The move will help gNMIc to gain more visibility across the expanding field of Streaming Telemetry users.
  2. With the popularity gain, we might discover new use cases, new integration opportunities and get more feedback.
  3. Close collaboration with Openconfig/Google might bring new contributors to the project and help with sustainability. It is an open-source project, and it will stay open.
  4. Being under the wing of Openconfig should help users be less concerned about the project's health should they consider using it in production.

There is a lot of wishful thinking, and we don't know if everything we wish to accomplish will materialize, but we would like to give it a go.

Karim, as the sole developer, will still be at the helm of gNMIc development, but we expect more contributors appear in the future.

Disclaimer#

  1. I contributed to gNMIc during the project's early days, but 99% of the effort came from Karim Radhouani3. The credit goes to him for making gNMIc as we know it today. I would also like to thank our contributors who helped shape and form gNMIc with their valuable comments, feedback, and contributions.

  2. The thoughts and statements I made in this post belong to me and do not necessarily match Nokia's.


  1. such as History 

  2. powered by containerlab or docker-compose. 

  3. you can find him at linkedin and github

Comments