Skip to main content

Transform Bacula / Bareos job results into an Icinga2 API passive check result. This is designed to be used with a RunScript after the job has completed on the agent.

Project description

passify-bareos

A script for transforming Bacula / Bareos job results into an Icinga2 API passive check result. This is designed to be used with a RunScript after the job has completed on the agent.

Installation

  1. Clone this repository to your server.
  2. Create a configuration file or run the script interactively for the first time to provide the required information:
    • Icinga Master API URL (submissions are only possible through the currently active master).
    • Verify the fingerprint:
      openssl x509 -in /var/lib/icinga2/certs/<hostname>.crt -noout -fingerprint -sha256
      
    • Username and password for API submission (only basic-auth is currently supported).

Alternatively, deploy a configuration file (config.ini by default) alongside the script:

[DEFAULT]
url = https://localhost:5665/v1/actions/process-check-result
check_source = example.com
user = <api_user>
password = <api_password>

[TLS]
fingerprint = d163f22c2021a498926ff8c30da0288ac20d1b9edaa80d1dbb14c0aebf85245b

Creating an API User for Passive Result Submission

Add the following configuration to /etc/icinga2/features-available/api.conf on the master:

object ApiUser "<api_user>" {
  permissions = [ "actions/process-check-result" ]
  password = "<api_password>"
}

Ensure that the API feature in Icinga2 is activated.

Deployment

Usage

usage: passify-bareos.py [-h] [--config CONFIG] [--timeout TIMEOUT] [--ttl TTL] -s SERVICE_NAME [--prefix-time]
                         {Backup} {Full,Differential,Incremental,VirtualFull} {OK,Error,Fatal Error,Canceled,Differences,Unknown term code} JOB_UID size

Positional Arguments:

  • {Backup}: Bareos job type (currently only Backup is supported).
  • {Full,Differential,Incremental,VirtualFull}: Backup job level.
  • {OK,Error,Fatal Error,Canceled,Differences,Unknown term code}: Backup job result value.
  • JOB_UID: Unique job name (e.g., jobname.date.time...).
  • size: Number of processed bytes for the backup job.

Options:

  • -h, --help: Show help message and exit.
  • --config CONFIG: Path to configuration file (default: config.ini).
  • --timeout TIMEOUT: Optional execution timeout in seconds.
  • --ttl TTL: Time-to-live argument for Icinga API.
  • -s SERVICE_NAME: Specify the service name.
  • --prefix-time: Prefix the service name with the scheduled time.

Integration into Bacula / Bareos

To integrate, create a RunScript directive inside your job definition and add a passive check to your Icinga instance.

Job Definition

Add the following RunScript directive inside your job configuration:

RunScript {
    RunsWhen = After
    RunsOnSuccess = Yes
    RunsOnFailure = Yes
    RunsOnClient = Yes
    FailJobOnError = No
    Command = "/bin/bash -c '/usr/local/bin/passify-bareos/src/passify-bareos/passify-bareos.py --prefix-time -s \"backup check\" \"%t\" \"%l\" \"%e\" \"%j\" \"%b\"'"
}

Modify the Command as needed, but note that the interface is designed to take these parameters in this sequence.

Icinga Passive Check

Add a passive check for the host where the agent/filedaemon runs and should be backed up.

Example Icinga Director configuration:

object Service "23:00:00 backup check" {
    host_name = "example.com"
    check_command = "passive-crit"
    max_check_attempts = "1"
    check_interval = 1d
    retry_interval = 15s
    enable_active_checks = true
    enable_passive_checks = true
    enable_perfdata = true
    volatile = false
    command_endpoint = host_name
    vars.dummy_state = 2
}

Setting dummy_state = 2 marks a missing passive check as critical, as it likely indicates that a backup was not completed at all. Modify the check interval to the shortest expected backup completion window.

Monitoring Multiple Backup Jobs per Host in 24h

To monitor multiple backup jobs per day:

  • Create one check per backup time window.
  • Prefix the service name with the scheduled backup time (e.g., 23:00:00).
  • Use the --prefix-time option to dynamically match the expected backup time.

This improved documentation enhances readability, formatting, and clarity while ensuring completeness and correctness.

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

icinga_passify_bareos-0.1.2.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

icinga_passify_bareos-0.1.2-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file icinga_passify_bareos-0.1.2.tar.gz.

File metadata

  • Download URL: icinga_passify_bareos-0.1.2.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for icinga_passify_bareos-0.1.2.tar.gz
Algorithm Hash digest
SHA256 76f8cb9e498b1be85f93f9fd65b92f9515fcb36a2d2fa1843ebf3ae38bb55ae3
MD5 5a91b6f545e6b076fb0bd8d1f0bb4ad4
BLAKE2b-256 cdd4881ed93b3901bd0ab2ae46fd51d9b5e9ee946b55e285eca23191358766fa

See more details on using hashes here.

File details

Details for the file icinga_passify_bareos-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for icinga_passify_bareos-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 adb2648b9da3afa4a5edc47220e28f33eaa4260dc670bab5b5147c773e942616
MD5 239d869475ec7dd3c7af37b1fc31a040
BLAKE2b-256 7176be7af541f332986556981cacde06b9926ed8c5de74355b240726f373df52

See more details on using hashes here.

Supported by

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