Skip to content

Commit cfee820

Browse files
authored
Merge pull request #950 from Icinga/bugfix-week-docs-docs-docs
Doc: Big Picture Overview, Forced Logs, Operations
2 parents 9c9ed7f + d8f42a3 commit cfee820

File tree

3 files changed

+123
-0
lines changed

3 files changed

+123
-0
lines changed

doc/01-About.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,28 @@ visualizing monitoring data in the Icinga ecosystem, consisting of:
1212
[Icinga DB Web](https://icinga.com/docs/icinga-db-web) module enabled,
1313
which connects to both Redis® and the database to display and work with the most up-to-date data
1414

15+
## Big Picture
16+
1517
![Icinga DB Architecture](images/icingadb-architecture.png)
1618

19+
Icinga DB consists of several components in an Icinga setup.
20+
This section tries to help understanding how these components relate, following the architecture diagram shown above.
21+
22+
First things first, Icinga DB is not a database itself, but consumes and passes data from Icinga 2 to be displayed in Icinga DB Web and persisted in a relational database.
23+
24+
Let's start with Icinga 2.
25+
With the Icinga DB feature enabled, Icinga 2 synchronizes its state to a Redis® server that can be queried by both the Icinga DB daemon and Icinga DB Web.
26+
27+
The Icinga DB daemon reads all the information from Redis®, transforms it, and finally inserts it into a relational database such as MySQL, MariaDB, or PostgreSQL.
28+
Doing so removes load from Icinga 2 and lets Icinga DB do the more time-consuming database operations in bulk.
29+
In addition, the Icinga DB daemon does some bookkeeping, such as removing old history entries if a retention is configured.
30+
31+
To display information in Icinga Web 2, the Icinga DB Web module fetches the latest service and host state information from Redis®.
32+
Additional monitoring data and history information is retrieved from the relational database.
33+
Icinga DB Web also connects to the Icinga 2 API with its Command Transport to acknowledge problems, trigger check executions, and so on.
34+
35+
These are the components of Icinga DB embedded into an Icinga setup with Icinga 2 and Icinga Web 2.
36+
1737
## Installation
1838

1939
To install Icinga DB see [Installation](02-Installation.md).

doc/03-Configuration.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ For environment variables, each option is prefixed with `ICINGADB_LOGGING_`.
9999
| interval | **Optional.** Interval for periodic logging defined as [duration string](#duration-string). Defaults to `"20s"`. |
100100
| options | **Optional.** Map of component name to logging level in order to set a different logging level for each component instead of the default one. See [logging components](#logging-components) for details. |
101101

102+
!!! info
103+
104+
There are a few log messages that are logged regardless of the configured log level.
105+
For example, the startup message is always shown.
106+
102107
### Logging Components
103108

104109
The independent components of Icinga DB produce log entries.

doc/07-Operations.md

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# Operations
2+
3+
This section is a loose collection of various topics and external references for running Icinga DB on a day-to-day basis.
4+
It covers topics such as self-monitoring, backups, and specifics of third-party components.
5+
6+
## Monitor Icinga DB
7+
8+
It is strongly recommended to monitor the monitoring.
9+
10+
There is a built-in [`icingadb` check command](https://icinga.com/docs/icinga-2/latest/doc/10-icinga-template-library/#icingadb) in the Icinga 2 ITL.
11+
It covers several potential errors, including operations that take too long or invalid high availability scenarios.
12+
Even if the Icinga DB has crashed, checks will still run and Icinga 2 would generate notifications.
13+
14+
In addition, both the Redis® and the relational database should be monitored.
15+
There are predefined check commands in the ITL to choose from.
16+
17+
- [`redis`](https://icinga.com/docs/icinga-2/latest/doc/10-icinga-template-library/#redis)
18+
- [`mysql`](https://icinga.com/docs/icinga-2/latest/doc/10-icinga-template-library/#mysql)
19+
- [`mysql_health`](https://icinga.com/docs/icinga-2/latest/doc/10-icinga-template-library/#mysql_health)
20+
- [`postgres`](https://icinga.com/docs/icinga-2/latest/doc/10-icinga-template-library/#postgres)
21+
22+
A simpler approach would be to check if the processes are running, e.g.,
23+
with [`proc`](https://icinga.com/docs/icinga-2/latest/doc/10-icinga-template-library/#procs) or
24+
[`systemd`](https://icinga.com/docs/icinga-2/latest/doc/10-icinga-template-library/#systemd).
25+
26+
## Backups
27+
28+
There are only two things to back up in Icinga DB.
29+
30+
1. The configuration file in `/etc/icingadb` and
31+
2. the relational database, using `mysqldump`, `mariadb-dump` or `pg_dump`.
32+
33+
!!! warning
34+
35+
When creating a database dump for MySQL or MariaDB with `mysqldump` or `mariadb-dump`,
36+
use the [`--single-transaction` command line argument flag](https://dev.mysql.com/doc/refman/8.4/en/mysqldump.html#option_mysqldump_single-transaction)
37+
to not lock the whole database while the backup is running.
38+
39+
## Third-Party Configuration
40+
41+
Icinga DB relies on external components to work.
42+
The following collection is based on experience.
43+
It is a target for continuous improvement.
44+
45+
### MySQL and MariaDB
46+
47+
#### `max_allow_packets`
48+
49+
The `max_allow_packets` system variable limits the size of messages between MySQL/MariaDB servers and clients.
50+
More information is available in
51+
[MySQL's "Replication and max_allowed_packet" documentation section](https://dev.mysql.com/doc/refman/8.4/en/replication-features-max-allowed-packet.html),
52+
[MySQL's variable documentation](https://dev.mysql.com/doc/refman/8.4/en/server-system-variables.html#sysvar_max_allowed_packet) and
53+
[MariaDB's variable documentation](https://mariadb.com/kb/en/server-system-variables/#max_allowed_packet).
54+
55+
The database configuration should have `max_allow_packets` set to at least `64M`.
56+
57+
#### Amazon RDS for MySQL
58+
59+
When importing the MySQL schema into Amazon RDS for MySQL, the following may occur.
60+
61+
```
62+
Error 1419: You do not have the SUPER privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
63+
```
64+
65+
This error can be mitigated by creating and modifying a custom DB parameter group as described in the related [AWS Knowledge Center article](https://repost.aws/knowledge-center/rds-mysql-functions).
66+
67+
#### Galera Cluster
68+
69+
Starting with Icinga DB version 1.2.0, Galera support has been added to the Icinga DB daemon.
70+
Its specific database configuration is described in the [Galera configuration section](03-Configuration.md#galera-cluster).
71+
72+
As mentioned in [MariaDB's known Galera cluster limitations](https://mariadb.com/kb/en/mariadb-galera-cluster-known-limitations/),
73+
transactions are limited in both amount of rows (128K) and size (2GiB).
74+
A busy Icinga setup can cause Icinga DB to create transactions that exceed these limits with the default configuration.
75+
76+
If you get an error like `Error 1105 (HY000): Maximum writeset size exceeded`
77+
and your Galera node logs something like `WSREP: transaction size limit (2147483647) exceeded`,
78+
decrease the values of `max_placeholders_per_statement` and `max_rows_per_transaction` in Icinga DB's
79+
[Database Options](https://icinga.com/docs/icinga-db/latest/doc/03-Configuration/#database-options).
80+
81+
### Redis®
82+
83+
On Linux, enable [memory overcommitting](https://www.kernel.org/doc/Documentation/vm/overcommit-accounting).
84+
85+
```shell
86+
sysctl vm.overcommit_memory=1
87+
```
88+
89+
To persist this setting across reboots, add the following line to [`sysctl.conf(5)`](https://man7.org/linux/man-pages/man5/sysctl.conf.5.html).
90+
If your distribution uses systemd, a configuration file under `/etc/sysctl.d/` is required, as described by
91+
[`systemd-sysctl.service(8)`](https://www.freedesktop.org/software/systemd/man/latest/systemd-sysctl.service.html) and
92+
[`sysctl.d(5)`](https://man7.org/linux/man-pages/man5/sysctl.d.5.html).
93+
94+
```
95+
vm.overcommit_memory = 1
96+
```
97+
98+
In addition, the official [Redis® administration documentation](https://redis.io/docs/latest/operate/oss_and_stack/management/admin/) is quite useful.

0 commit comments

Comments
 (0)