23.6k views
3 votes
What is a supported data model for the Juniper Telemetry Interface?

1 Answer

3 votes

Final answer:

The supported data model for the Juniper Telemetry Interface is the Juniper Telemetry Interface Data Model (JT-IDM), which uses JSON as the data format.

Step-by-step explanation:

A supported data model for the Juniper Telemetry Interface is the Juniper Telemetry Interface Data Model (JT-IDM). It is a standardized format for collecting, storing, and analyzing telemetry data from Juniper devices. JT-IDM uses JSON (JavaScript Object Notation) as the data format, which is a lightweight and easily readable and writable format.

With the JT-IDM, telemetry data is organized into key-value pairs, allowing for easy extraction and analysis of specific data points. The data model includes built-in templates for common telemetry data, but it can also be customized to accommodate specific requirements.

An example of a JT-IDM data structure is:

{
"interface": {
"name": "ge-0/0/0",
"status": "up",
"speed": 1000
}
}

User CJD
by
8.2k points