Merge pull request 'db: refs #8414 - Add jenkins Url and nrpe threshold' (!75) from 8414_jenkins_Url into main

Reviewed-on: #75
Reviewed-by: Juan Ferrer <juan@verdnatura.es>
This commit is contained in:
Xavi Lleó 2025-03-12 13:40:29 +00:00
commit 92ba2b9238
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 %}