All Projects → cisco-ie → Anx

cisco-ie / Anx

Licence: apache-2.0
Advanced NETCONF Explorer: Graphical Explorer for NETCONF / YANG and GNMI/GRPC Telemetry & Java NETCONF 1.1 client library

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Anx

Opentelemetry Js
OpenTelemetry JavaScript Client
Stars: ✭ 700 (+493.22%)
Mutual labels:  telemetry
Unifi exporter
Multiarch images for scraping Prometheus metrics from a Unifi Controller. Kubernetes / prometheus-operator compatible.
Stars: ✭ 54 (-54.24%)
Mutual labels:  telemetry
Applicationinsights Dotnet Logging
.NET Logging adaptors
Stars: ✭ 100 (-15.25%)
Mutual labels:  telemetry
Junos monitoring with healthbot
Healthbot configuration examples. Scripts to manage Healthbot. Closed loop automation. Healthbot building blocks description and troubleshooting guide
Stars: ✭ 17 (-85.59%)
Mutual labels:  telemetry
Opentelemetry Dotnet
The OpenTelemetry .NET Client
Stars: ✭ 1,037 (+778.81%)
Mutual labels:  telemetry
Solariot
Leverage your IoT enabled Solar PV Inverter to stream your solar energy usage data to a real time dashboard.
Stars: ✭ 79 (-33.05%)
Mutual labels:  telemetry
Regtweaks
Registry Tweaks for Windows.
Stars: ✭ 675 (+472.03%)
Mutual labels:  telemetry
Applicationinsights Python
Application Insights SDK for Python
Stars: ✭ 114 (-3.39%)
Mutual labels:  telemetry
Telemetry Data
A collection of telemetry captured from SpaceX Launch Webcasts
Stars: ✭ 53 (-55.08%)
Mutual labels:  telemetry
Applicationinsights Php
Azure Application Insights SDK for PHP
Stars: ✭ 98 (-16.95%)
Mutual labels:  telemetry
Llama Archive
Loss & LAtency MAtrix
Stars: ✭ 44 (-62.71%)
Mutual labels:  telemetry
Privatezilla
👀👮🐢🔥Performs a privacy & security check of Windows 10
Stars: ✭ 1,045 (+785.59%)
Mutual labels:  telemetry
Panoptes
A Global Scale Network Telemetry Ecosystem
Stars: ✭ 80 (-32.2%)
Mutual labels:  telemetry
Analytics
Lightweight analytics abstraction layer for tracking page views, custom events, & identifying visitors
Stars: ✭ 814 (+589.83%)
Mutual labels:  telemetry
Gnmic
gnmic a gnmi CLI client and collector
Stars: ✭ 105 (-11.02%)
Mutual labels:  telemetry
Debotnet
🔥🚀 Debotnet is a tiny portable tool for controlling Windows 10's many privacy-related settings and keep your personal data private.
Stars: ✭ 707 (+499.15%)
Mutual labels:  telemetry
Ffck
🦊 & 🧅 hardening
Stars: ✭ 72 (-38.98%)
Mutual labels:  telemetry
Telemetry
Data visualization and communication with embedded devices
Stars: ✭ 116 (-1.69%)
Mutual labels:  telemetry
Applicationinsights Go
Microsoft Application Insights SDK for Go
Stars: ✭ 113 (-4.24%)
Mutual labels:  telemetry
Windows
Various batch files for Windows
Stars: ✭ 87 (-26.27%)
Mutual labels:  telemetry

Advanced NETCONF Explorer

Advanced NETCONF explorer and NETCONF client library for Java

This is a graphical explorer for YANG models supported by a NETCONF device or service orchestrator. Features include:

  • Retrieving all YANG models supported by a device or orchestrator using the NETCONF monitoring standard.
  • Parsing the YANG models (using ODL yangtools) and outputting a tree with all the nodes, which the user can expand / collapse.
  • Filtering the model tree by module name and searching the names and descriptions of the YANG nodes in it (e.g. “neighbor count” or “bgp” “neighbor count”).
  • Downloading a ZIP-Archive of all YANG-models supported by the device or orchestrator.
  • Showing details and generating metadata for a YANG node, e.g. the description, the (sensor-)path, a subtree-filter (for NETCONF development) etc.
  • GNMI and IOS XR Telemetry support tools to edit sensor groups and show live data using GRPC.
  • Browsing and searching live (operational) data for selected YANG models.

Setup

Using Docker

You can easily build and run using docker:

  • docker build -t netconf-explorer .
  • docker run --name netconf-exlorer -d -p 9269:8080 netconf-explorer

If you have docker-compose installed this can be shortened to:

  • docker-compose up -d

Note: You need at least 2-3 GB of RAM on your Docker (Virtual) Machine to run this application. In case you are running it on your laptop, please increase the RAM assigned to Docker to 3 GB. See https://docs.docker.com/docker-for-windows/#advanced or https://docs.docker.com/docker-for-mac/#advanced

Using JDK and Maven

If you have a working Java development environment with maven on your machine, you can also launch the explorer with an embedded webserver using:

  • mvn -e -f anc/pom.xml install
  • mvn -e -f grpc/pom.xml install
  • mvn -e -f explorer/pom.xml jetty:run

You can also create a WAR file for deployment in an application server using

  • mvn package

Using the Explorer

Access port 9269 (or 8080 for the embedded webserver) of the host using a browser. You can then use the explorer to connect to any NETCONF / Yang enabled device or orchestrator supporting NETCONF Monitoring RFC 6022.

  1. Enter a hostname or IP-address in the "NETCONF Host"-field (optionally followed by a colon and the NETCONF over SSH port) and input the username and password into the corresponding fields and click "Login".

  2. The explorer will now download and parse all available YANG models. This process may take a minute or two.

  3. The following start screen is divided in two parts. On the left-hand side you have a menu listing all YANG models including a simple name-based search and the option to show an individual YANG model in source or download all YANG models as a ZIP-file. On the right-hand side you have the data model tree which allows you to browse and search within the data model (the search will match against the YANG field names and descriptions). If you click on an element details will be shown on the left-hand side.

  4. By selecting one or more nodes in the model tree so that they are highlighted in blue, you can use the "Show Data" function to retrieve and visualize the corresponding operational or configurational data from the device. The model tree will then be replaced by the data tree for the selected values and the search bar will let you search by both model names and also values. Again by clicking a node, details will be shown on the left-hand side.

  5. For IOS-XR telemetry you will be able to view and edit sensors groups by using the Telemetry Tools on the left-hand side. Select or type the name of a sensor group and use Edit to make changes to it. If you have previously selected a node in the model browser, its sensor path will be prepopulated in the sensor group editor for convenience. If your device runs a 64-bit version of IOS XR, you can also view a JSON-encoding of the live feed of the Telemetry data exactly as it is sent to your telemetry collector.

ANC - Java NETCONF client library

ANC is the basis of the explorer and offers abstraction for most of the features of NETCONF. It is packaged as a maven artifact so it can be installed using mvn install in the anc directory.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].