Icinga DB Housekeeping

by | Nov 4, 2021

Introduction

We all know that the history data is important in monitoring. But this history data becomes obsolete over time and those records become garbage which would only fill up space. So it is important to remove obsolete history records to free up space. We call this process housekeeping. This needs to be performed periodically to cleanup the history records whenever they exceed their maximum age and become obsolete. We are introducing such housekeeping to Icinga DB to remove the history records from the database exceeding their maximum age.

Housekeeping in Icinga DB

We need to cleanup the history records in such a way that it does not affect the performance of the Icinga DB daemon. To do that we make use of go routines to run the delete statements independently without blocking other functionality of the daemon. We will also control the flow of go routines using Contexts in go programming language. In some cases, the number of records exceeding the maximum age might be huge. In these cases the time taken to delete would be significant. This in turn would degrade the performance of the Icinga DB daemon by slowing it down. To avoid this, we divide the number of records to be deleted into chunks and these chunks are deleted in multiple runs.

We need to also check the time taken to execute a single delete statement. Occasionally the time taken to delete becomes significant. In which case we will halve the size of the chunk for the next delete execution. We program the housekeeping to run periodically, to check and cleanup the old obsolete history records automatically. The period, limit and the retention period can also be configured in config.yml file. Hence the user could configure them based on previous observations. Retention period allows the user to decide the maximum age of the history records.

Note: Retention period is the number of days, the history records could be kept in the database starting from the time it was created.

You May Also Like…

Releasing Icinga Cube 1.3.3

Releasing Icinga Cube 1.3.3

We present you the tiniest but very important Icinga DB Web related bugfix release (v1.3.3)! If you had an issue with...

Subscribe to our Newsletter

A monthly digest of the latest Icinga news, releases, articles and community topics.