Since 2009 Delta Cloud has been providing tailored IT services based on the actual needs of their corporate customers. For every project the team examines thoroughly the client's business needs and designs a delivery process optimized for easy maintenance, low expenditures and future scaling.
The value proposition of the company is the young, but experienced team of network engineers, DevOps engineers, and system administrators, who design, create, and maintain the solutions for delivery. These solutions include Application and Content Acceleration, Automation, Backup and Recovery, Cloud Infrastructure, Cloud Networking, Cloud Storage, Collaboration, Colocation Services, Consulting Services, Content Delivery (CDN), Data Migration, Data Networks, DevOps, Disaster Recovery, Disaster Recovery and Business Continuity, eCommerce, Hybrid Cloud Computing, Hybrid IT, Infrastructure as a Service, Integration Services, Managed Security, Managed Services, Managed Storage, Monitoring, Networking, Network Optimization, Platform as a Service (PaaS), Private Cloud, Private Hosting, Professional Services, Workload Orchestration.
Icinga is a monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting.
More about Icinga 2 can be found here.
This is an Icinga 2 docker image, built by the Delta Cloud team, designed to handle small and large updates seamlessly.
- Based on ubuntu:focal
- Ready to use Icinga 2
- Key-Features:
- icinga2
- icinga2-ido-mysql
- icinga2 feature graphite
- monitoring-plugins
- No SSH. Use docker exec.
This docker container cannot operate as standalone. It needs the following containers:
We made three deployment examples. You can use them according to your needs.
You can find the sample environment file example.env in our GitHub project. It can be customized to your liking.
git clone https://github.com/DeltaBG/docker-icinga2.git
cd docker-icinga2Open example.env with your favorite text editor and customize it to your needs.
vi example.envdocker network create icingadocker run -d \
--network icinga \
--name icinga_mariadb \
--restart unless-stopped \
--env-file ./example.env \
-h icinga-mariadb \
-v /data/var/lib/mysql:/var/lib/mysql \
--health-cmd "mysqladmin ping -h localhost -p$MYSQL_ROOT_PASSWORD" \
--health-interval 30s \
--health-timeout 30s \
--health-retries 3 \
--health-start-period 5s \
mariadb:focaldocker run -d \
--privileged \
--network icinga \
--name icinga_icinga2 \
--restart unless-stopped \
--env-file ./example.env \
-h icinga-icinga2 \
-p 5665:5665 \
-v /data/etc/icinga2:/etc/icinga2 \
-v /data/var/lib/icinga2:/var/lib/icinga2 \
-v /data/var/log/icinga2:/var/log/icinga2 \
deltabg/icinga2docker run -d \
--network icinga \
--name icinga_icingaweb2 \
--restart unless-stopped \
--env-file ./example.env \
-h icinga-icingaweb2 \
-p 80:80 \
-p 443:443 \
-v /data/etc/icingaweb2:/etc/icingaweb2 \
-v /data/var/log/icingaweb2:/var/log/icingaweb2 \
-v /data/var/log/apache2:/var/log/apache2 \
deltabg/icingaweb2You can find the sample file docker-compose.yml in our GitHub project.
git clone https://github.com/DeltaBG/docker-icinga2.git
cd docker-icinga2Open example.env with your favorite text editor and customize it to your needs.
vi example.envdocker-compose up -dYou can find the sample file ansible-playbook.yml in our GitHub project.
git clone https://github.com/DeltaBG/docker-icinga2.git
cd docker-icinga2Open example.env with your favorite text editor and customize it to your needs.
vi example.envansible-playbook ansible-playbook.ymlThe Icinga 2 API is enabled by default and cannot be disabled. You can configurate API username and password by setting the ICINGA2_API_USER and ICINGA2_API_PASSWORD variables.
The IDO (Icinga Data Output) feature is enabled by default and cannot be disabled. This container does not have MariaDB/MySQL database, so you need to use an external container. There is an example in the Usage section.
You can configurate DB username, password, host and port by setting the following variables:
ICINGA2_MYSQL_HOSTICINGA2_MYSQL_PORTICINGA2_MYSQL_DBICINGA2_MYSQL_USERICINGA2_MYSQL_PASSWORD
The Graphite writer feature can be activated by setting the ICINGA2_FEATURE_GRAPHITE variable to true. This container does not have graphite and carbon daemons, so you need to use an external containers, such as graphiteapp/graphite-statsd, and set a value to the variable ICINGA2_FEATURE_GRAPHITE_HOST.
Launch the graphite container before the others. You can use the following example:
docker run -d \
--network icinga \
--name icinga_graphite \
--restart unless-stopped \
--env-file ./example.env \
-h icinga-graphite \
graphiteapp/graphite-statsdCheck the Environmental Variables section for more information.
The docker container will have msmtp installed by defult. Msmtp is a mail client, which uses already preconfigured remote SMTP server.
You can read more about msmtp at the official website. The configuration of msmtp is done via the environment variables
MSMTP_TLS, MSMTP_ACCOUNT, MSMTP_HOST, MSMTP_PORT, MSMTP_FROM, MSMTP_USER and MSMTP_PASSWORD. If you are not planning to have mail notifications,
you can simply skip configuring your environment file and use the defalt values.
If you want to update your SMTP credentials, you will need to redact the .env file and then re-run docker-compose.
Variables marked in bold are recommended to be adjusted according to your needs.
| Variable | Default Value | Description |
|---|---|---|
ICINGA2_CN |
localhost | Common name used for certificate signing. |
ICINGA2_ZONE_NAME |
localhost | Icinga 2 zone name. |
DEFAULT_MYSQL_PORT |
3306 | Default database port. |
MYSQL_ROOT_USER |
root | Database root user. |
MYSQL_ROOT_PASSWORD |
Database root user password. | |
ICINGA2_MYSQL_HOST |
icinga-mariadb | Hostname or IP address of the Icinga 2 database. |
ICINGA2_MYSQL_PORT |
DEFAULT_MYSQL_PORT |
Port of the Icinga 2 database. |
ICINGA2_MYSQL_DB |
icinga2 | Database name of the Icinga 2 database. |
ICINGA2_MYSQL_USER |
icinga2 | Username of the Icinga 2 database. |
ICINGA2_MYSQL_PASSWORD |
2agnici | Password of the Icinga 2 database. |
ICINGA2_API_USER |
icingaweb2 | Username of the Icinga 2 API. |
ICINGA2_API_PASSWORD |
2bewagnici | Password of the Icinga 2 API. |
ICINGA2_FEATURE_GRAPHITE |
false | Enable or disable Graphite writer feature. |
ICINGA2_FEATURE_GRAPHITE_HOST |
icinga-graphite | Hostname or IP address of the Carbon/Graphite. |
ICINGA2_FEATURE_GRAPHITE_PORT |
2003 | Port of the Carbon/Graphite. |
ICINGA2_FEATURE_GRAPHITE_SEND_THRESHOLDS |
true | If you want to send min, max, warn and crit values for perf data. |
ICINGA2_FEATURE_GRAPHITE_SEND_METADATA |
false | If you want to send state, latency and execution_time values for the checks. |
ICINGA2_SATELLITE |
false | Whether you want to deploy the configuration as a satellite. |
ICINGA2_SATELLITE_PARENT |
master | Used for CN and endpoint connection when setting up as a satellite. |
ICINGA2_SATELLITE_PARENT_API_PORT |
5665 | Parent API port. Used when setting up as a satellite. |
ICINGA2_SATELLITE_CN |
$ICINGA2_CN |
Icinga 2 satellite common name. |
ICINGA2_SATELLITE_ZONE_NAME |
$ICINGA2_ZONE_NAME |
Icinga 2 satellite zone name. |
MSMTP_TLS |
on | Whether of not TLS authentication is enabled. Allowed values are on or off. |
MSMTP_ACCOUNT |
gmail | Name of the account which msmtp will use. |
MSMTP_HOST |
smtp.gmail.com | Remote SMTP host that msmtp will use to connect to. |
MSMTP_PORT |
587 | Remote SMTP port that msmtp will use. |
MSMTP_FROM |
[email protected] | From address, that msmtp will use to send emails. |
MSMTP_USER |
[email protected] | User, that msmtp will use for authentication. |
MSMTP_PASSWORD |
examplepass | Password for MSMTP_USER that msmtp will use for authentication. |
The following folders are configured and can be mounted as volumes.
| Volume | Description |
|---|---|
| /etc/icinga2 | Icinga 2 configuration folder. |
| /var/lib/icinga2 | Icinga 2 library folder. |
| /var/log/icinga2 | Icinga 2 log folder. |
| /usr/lib/nagios/plugins | Nagios plugins folder. |
Licensed under the terms of the MIT license.
If you like what we do in this and our other projects, follow us!