Know-how

From the initial installation to the running monitoring stack:

Here you will find all instructions for the basic installation of Icinga.
Compact and practical.

Ansible: What to Do with Standalone Roles?

Ansible: What to Do with Standalone Roles?

Last updated: September 3, 2026 · Reading time: 9–11 minutes Ansible has been using so-called " Collections" since 2019. They are the primary method for sharing Ansible content with others. But even before Ansible Collections existed, roles were already used for this purpose. In today's ecosystem, both are still present. Find out now what "Roles" and "Collections" are all about and which one you should choose today. The Most Important Points in 30 Seconds Roles are functions; collections are...

What can Wazuh do?

What can Wazuh do?

Last updated: August 13, 2026 · Reading time: 7–9 minutes What exactly can Wazuh do? In this article, Leander explains how the open-source security platform processes events, what modules it includes, and how these elements come together in typical everyday scenarios. In the first part of this blog series, he provided a general overview of what Wazuh is and what it's used for. This second part is about getting a feel for what Wazuh can do and developing a technical understanding of how it...

Alertmanager-Icinga-Bridge – A Signalilo Fork

Alertmanager-Icinga-Bridge – A Signalilo Fork

Last updated: July 30, 2026 · Reading time: 2–3 minutes Alertmanager and Icinga do not communicate with each other by default. If you want to process Prometheus alerts centrally via Icinga, you need a bridge between the two systems. That's exactly what the Alertmanager-Icinga Bridge does: It receives alerts from Alertmanager and automatically creates them as services in Icinga. In this post, we'll explain why we're continuing to develop the Signalilo tool under a new name, what changes have...

Filebeat and Metricbeat – Visualizing Your First Logs with Elastic and Kibana

Filebeat and Metricbeat – Visualizing Your First Logs with Elastic and Kibana

Last updated: July 9, 2026 · Reading time: 2–3 minutes Elasticsearch is running, Kibana is set up, but how does the data actually get into the stack? The answer lies in what are known as "Beats": lightweight data collectors that run in the background and forward data to Elasticsearch. The easiest way to get started is with Filebeat and Metricbeat. This article shows you how to set up Filebeat for log files and Metricbeat for system metrics, and how to view both in Kibana. Why use Filebeat...

Ansible Icinga Collection

Ansible Icinga Collection

Last updated: July 16, 2026 · Reading time: 4–6 minutes With Ansible and Icinga, you can automate the setup of your entire monitoring environment. The " netways.icinga " collection brings together eight roles that handle exactly these recurring steps for you. We'll show you what the Collection can do, where its limitations lie, and how to set up a test environment in just a few minutes using the Full-Stack Playbook. Introduction to the Collection If you run a monitoring system like Icinga, you...

What is the ELK Stack? Elasticsearch, Logstash, and Kibana Explained Simply

What is the ELK Stack? Elasticsearch, Logstash, and Kibana Explained Simply

Last updated: July 9, 2026 · Reading time: 2–4 minutes Anyone involved in monitoring, log analysis, or searching through large amounts of data will sooner or later come across the ELK Stack. The ELK Stack consists of three different tools: Elasticsearch, Logstash, and Kibana. Find out what's behind it all, how the three components work together, and why the stack is completely free for self-hosting in our article here. An Overview of the Three Components ELK is not a single software program,...

What is Wazuh?

What is Wazuh?

Last updated: July 2, 2026 · Reading time: 3–4 minutes Wazuh is an open-source security platform that combines log management, intrusion detection, vulnerability assessment, and compliance monitoring all in one place. At NETWAYS, we’re getting more and more questions about this, and our customers would like to start by getting an overview of Wazuh and understanding how it fits into the bigger picture. Leander, a consultant on the Professional Services team, therefore provides an initial...

Integrate Icinga and Prometheus

Integrate Icinga and Prometheus

Last updated: 23.04.2026 Icinga and Prometheus are both excellent monitoring solutions. However, the focus of the tools is different. When it comes to monitoring real-time metrics or short-lived services such as containers, Prometheus is the tool of choice. Icinga is often better suited for large-scale status monitoring of the basic infrastructure. However, both solutions do not have to be contrary to each other, but complementary. In this article, we will look at how we can integrate both...

Is Icinga free of charge?

Is Icinga free of charge?

Last updated: 05.03.2026 This blog post explains whether Icinga is free. As I sit here and start writing this blog post, I still can't believe that today is about this topic. Is Icinga free of charge? For me, as someone who has been involved with open source software for almost 25 years now (yes, I'm old!), this question seems strange and yet the topic is interesting. As obvious as the answer to this is for me, the figures, data and facts from the usual analytics tools are just as clear. The...

Infrastructure as Code (IaC): Fundamentals, History, and Practical Applications of Ansible and GitLab

Infrastructure as Code (IaC): Fundamentals, History, and Practical Applications of Ansible and GitLab

Introduction The way in which IT infrastructure is provided and operated has changed significantly in recent decades. In the early years of system administration, everyday life consisted of manually installing individual servers, importing software packages, editing configurations directly in files and starting services. This was not only time-consuming, but also error-prone and difficult to reproduce. Even a small difference in a configuration could lead to problems that were almost...

Observability vs Monitoring

Observability vs Monitoring

Last updated: August 5, 2026 · Reading time: 6–8 minutes Observability vs. Monitoring: Two terms that are constantly used interchangeably in everyday IT, but don't mean the same thing. We'll break down the etymology, cite the earliest known definition from 1959, and use OpenTelemetry and Graylog to demonstrate how these two concepts interact in practice. The term observability is on everyone's lips and is often touted as a modern solution to dusty old, static monitoring. All manufacturers...

Show users in MySQL

Show users in MySQL

In MySQL, user management plays a crucial role in making database access secure and efficient. But how do you display existing users? In this blog post you will learn how to quickly and easily list all MySQL users, what information you will get and what you should look out for. Step 1: Login to MySQL To display the users in MySQL, you must first log in with a user account with sufficient permissions (e.g. B. root). You can do this from the command line: root@testhost:~# mysql -u root Welcome...