db: refs #8414 - Add jenkins Url and nrpe threshold

This commit is contained in:
Xavi Lleó 2025-03-12 14:22:50 +01:00
parent 82b25c6a88
commit 7d7d855384
2 changed files with 3 additions and 2 deletions

View File

@ -2,3 +2,4 @@ command[check_disk_mysqldata]=/usr/lib/nagios/plugins/check_disk -w 10% -c 5% -p
command[check_disk_mysqlbin]=/usr/lib/nagios/plugins/check_disk -w 10% -c 5% -p /mnt/mysqlbin
command[check_disk_backup]=/usr/lib/nagios/plugins/check_disk -w 10% -c 5% -p /mnt/local-backup
command[check_mysql_scheduler]=/etc/nagios/plugins/check_mysql_scheduler
command[check_total_procs]=/usr/lib/nagios/plugins/check_procs -w 600 -c 700

View File

@ -15,7 +15,7 @@ dbClusterSiblings=()
# Jenkins authentication string
jenkinsAuth=jenkins:{{ lookup(passbolt, 'jenkinsAuth', folder_parent_id=passbolt_folder).password }}
{% if db.jenkinsUrl is defined %}
{% if db.jenkinsJob is defined %}
# Jenkins job URL
jenkinsUrl={{ db.jenkinsUrl }}
jenkinsUrl={{ jenkinsUrl }}{{ db.jenkinsJob }}
{% endif %}