NetEye 4 is a comprehensive monitoring platform which natively supports Icinga 2 checks on remote hosts and devices.
Several Icinga 2 checks support an historical view of the status. An example is the firewall interface performance status below, which displays a Performance Graph:
Getting a better overview
All the graph data generated by the Icinga 2 checks are hosted by default in a local Influx database named “icinga2”. This is very useful for rendering the collected metrics using the Grafana engine in NetEye’s ITOA.
Steps required
First of all, a new Datasource must be defined in ITOA. The Datasource could be of type INFLUX/QL or Flux and requires a read-only account to access the “icinga2” Influx DB:
This new Datasource can then be used to create Grafana dashboards.
Where to get data
The next question is: how is the collected data named in the “icinga2” database?
The answer is that metrics use the Icinga 2 command name. In the firewall example above, the Icinga 2 command is called “nx-c-check-nwc-health”:
We recommend that the Grafana variable holds the host to be rendered, as in this example:
This way, the dashboard can be reused for different hosts just by changing the Regex field in the variable definition. Thus an Influx-QL query sample to get the firewall graphs of all the firewall interfaces, which uses the host variable defined above, becomes:
SELECT max("value") FROM "nx-c-check-nwc-health" WHERE ("hostname" =~ /^$host$/) AND ("service" =~ /Traffic Interface/) AND $timeFilter GROUP BY time($__interval), "service" fill(null)
When this query is rendered as a Grafana panel it produces this dashboard:
In a single dashboard you can see the traffic of all the firewall interfaces with the max value in the selected time period.
A further example
Icinga 2 graphs are useful not just for network performance, but also for host monitoring. The example below is an ITOA dashboard which monitors vSphere infrastructure performance and also shows the VMware datastore allocation over the time period.
Icinga 2 monitoring is very powerful: with ITOA and the Grafana engine, you can make dashboards even more useful!
These Solutions are Engineered by Humans
Are you passionate about performance metrics or other modern IT challenges? Do you have the experience to drive solutions like the one above? Our customers often present us with problems that need customized solutions. In fact, we’re currently hiring for roles just like this as well as other roles here at Würth Phoenix.
My name is Alessandro and I joined Würth Phoenix (now Würth IT Italy) early in 2013. I have over 20 years of experience in the IT sector: For a long time I've worked for a big Italian bank in a very complex environment, managing the software provisioning for all the branch offices. Then I've worked as a system administrator for an international IT provider supporting several big companies in their infrastructures, providing high availability solutions and disaster recovery implementations. I've joined the VMware virtual infrastructure in early stage, since version 2: it was one of the first productive Server Farms in Italy. I always like to study and compare different technologies: I work with Linux, MAC OSX, Windows and VMWare. Since I joined Würth Phoenix, I could also expand my experience on Firewalls, Storage Area Networks, Local Area Networks, designing and implementing complete solutions for our customers. Primarily, I'm a system administrator and solution designer, certified as VMware VCP6 DCV, Microsoft MCP for Windows Server, Hyper-V and System Center Virtual Machine Manager, SQL Server, SharePoint. Besides computers, I also like photography, sport and trekking in the mountains.
Author
Alessandro Romboli
My name is Alessandro and I joined Würth Phoenix (now Würth IT Italy) early in 2013. I have over 20 years of experience in the IT sector: For a long time I've worked for a big Italian bank in a very complex environment, managing the software provisioning for all the branch offices. Then I've worked as a system administrator for an international IT provider supporting several big companies in their infrastructures, providing high availability solutions and disaster recovery implementations. I've joined the VMware virtual infrastructure in early stage, since version 2: it was one of the first productive Server Farms in Italy. I always like to study and compare different technologies: I work with Linux, MAC OSX, Windows and VMWare. Since I joined Würth Phoenix, I could also expand my experience on Firewalls, Storage Area Networks, Local Area Networks, designing and implementing complete solutions for our customers. Primarily, I'm a system administrator and solution designer, certified as VMware VCP6 DCV, Microsoft MCP for Windows Server, Hyper-V and System Center Virtual Machine Manager, SQL Server, SharePoint. Besides computers, I also like photography, sport and trekking in the mountains.
Running Ollama locally or on dedicated hardware is straightforward until you need to know whether a model is actually loaded in RAM, how fast it generates tokens under load, or when memory consumption reaches a threshold that affects other workloads. Read More
Hi everyone! Today I'd like to share with you an investigation we undertook related to ingesting Open Telemetry data in Elasticsearch, while maintaining tenant segregation from start to end. The Scenario Let's imagine we have multiple customers, where in this Read More
SNMP monitoring is the standard method for obtaining information and metrics from network devices. Typically, we focus on extracting data from a single interface to monitor its status, traffic, or errors. But in many cases, we’re only interested in getting Read More
In the ITOA module we fixed a bug that prevented the Performance Graphs to be shown in the Monitoring host and service page. List of updated packages grafana, grafana-autosetup, grafana-configurator and grafana-neteye-config to version 12.4.1_neteye3.29.2-1
Creating a GitHub organization is easy. Creating a public one that is actually well-structured, secure, and maintainable over time… not so much. At the beginning, it feels like a simple task: create the org, push some repositories, maybe define a Read More