Skip to main content

A Django library that sync data from a Nagios/Icinga server.

Project description

# django-nagios-cache

## Overview
This Django package provide Models for syncing data fom a Icinga/Nagios instance.
This may useful if you want to make queries to you monitoring system without
directly connect to it for each lookup.

It is currently tested with Icinga 1.10.3.


The package consist of 2 main parts

### Django Models
This is the datastruructure. I directly correlates with the Nagios/Icinga Services,
Servicegroups, Hosts and Hostgroups.

### Management Command
The package provides a Management Command to sync the Data from the Nagios/Icinga Server.
You may also sync only parts of monitoring data e.g. only specific Hostgroups or Servicegroups
## Installation
To install simply fetch it from pypi.
```python
pip install django-nagios-cache
```
After that you have to add ```nagios_cache``` to your ```INSTALLED_APPS``` and
run
```
python manage.py migrate nagios_cache
```
This will add the 4 Models to your database.

## Configuration
django-nagios-cache reads 4 configuration variables from your settings.py:
```python
NAGIOS_CACHE_URL = "https://monitoring.example.org/cgi-bin/icinga/status.cgi"
NAGIOS_CACHE_USER' = "nagios_user",
NAGIOS_CACHE_PASSWORD' = "password_4_nagios_123",
NAGIOS_CACHE_AUTOCLEAN = False
NAGIOS_CACHE_AUTOCLEAN_DAYS = 5
```
You MUST specify ```NAGIOS_CACHE_URLNAGIOS_CACHE_URL```, while the other 2 are optional.
If there are no authentication details, ```django-nagios-cache``` will fetch the
data without authentication.
If you set ```NAGIOS_CACHE_AUTOCLEAN = True``` every query will automatically
clean up the last ```NAGIOS_CACHE_AUTOCLEAN_DAYS``` unsynced entries.

## Usage
At the first run you may want to execute
```
python manage.py nagios_sync
```

This will sync everything. Note this could take some time. On my machine 20000 checks, 1500 hosts, 200 hostgroups and 10 servicegroups this take about 4 minutes.

Later you may chose only to sync specific parts. Have a look at
```
./manage.py nagios_sync --help
...
--hostgroups [HOSTGROUPS [HOSTGROUPS ...]]
Only sync the given hostgroups
--servicegroups [SERVICEGROUPS [SERVICEGROUPS ...]]
Only sync the given servicegroups
--sync-hosts Sync hosts
--sync-services Sync services
--sync-hostgroups Sync hostgroups
--sync-servicegroups Sync servicegroups
--clean Cleanup database entries that are old than 1 day
```
You can add this script to a crontab or use the API for a celery task. Have a
look at ```nagios_cache/management/commands/nagios_sync```. There are the calls for
the commandline options above.
```python
from django.utils import timezone

t = timezone.now()

NagiosHostStatus.clean_old(t)
NagiosServiceStatus.import_all(t)
NagiosHostgroup.import_all(t)
NagiosServicegroup.import_single(t, 'dns')
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-nagios-cache-0.2.0.tar.gz (8.4 kB view details)

Uploaded Source

File details

Details for the file django-nagios-cache-0.2.0.tar.gz.

File metadata

File hashes

Hashes for django-nagios-cache-0.2.0.tar.gz
Algorithm Hash digest
SHA256 22da9a27183291332c99234ef66d3f8260fb7551f148ffea56d5fdb563e04bf5
MD5 6852bee8ad49fb8cffe0a610e0a9b1b2
BLAKE2b-256 a17ace7dbb1f2925e8ea1cdc37ed9364028b31279d74ef9ef15fc6368d4023f8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page