Compare commits
4 commits
4ec608adf2
...
62bb2da068
Author | SHA1 | Date | |
---|---|---|---|
Micke Nordin | 62bb2da068 | ||
Micke Nordin | f5297850d9 | ||
Magnus Andersson | 652f2fbdf7 | ||
Magnus Andersson | 66a81768c8 |
|
@ -21,6 +21,6 @@ services:
|
||||||
- MYSQL_ROOT_PASSWORD=<%= @mysql_root_password %>
|
- MYSQL_ROOT_PASSWORD=<%= @mysql_root_password %>
|
||||||
- BOOTSTRAP=<%= @bootstrap %>
|
- BOOTSTRAP=<%= @bootstrap %>
|
||||||
- FORCE_BOOTSTRAP=0
|
- FORCE_BOOTSTRAP=0
|
||||||
command: "--wsrep_cluster_address=gcomm://<%= @db_ip[0] %>,<%= @db_ip[1] %>,<%= @db_ip[2] %>"
|
command: "--wsrep_cluster_address=gcomm://<%= @db_ip.join(',') %>"
|
||||||
tty: true
|
tty: true
|
||||||
|
|
||||||
|
|
31
templates/scriptreceiver/check_max_uptime
Executable file
31
templates/scriptreceiver/check_max_uptime
Executable file
|
@ -0,0 +1,31 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
import argparse
|
||||||
|
import sys
|
||||||
|
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument('-w', '--warning',
|
||||||
|
help='Warning threashold',
|
||||||
|
required=True)
|
||||||
|
parser.add_argument('-c', '--critical',
|
||||||
|
help='Critical threashold',
|
||||||
|
required=True)
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
warning = int(args.warning)
|
||||||
|
critical = int(args.critical)
|
||||||
|
|
||||||
|
with open('/proc/uptime', 'r') as f:
|
||||||
|
uptime_seconds = float(f.readline().split()[0])
|
||||||
|
days = int(uptime_seconds / 86400)
|
||||||
|
|
||||||
|
status = "OK"
|
||||||
|
exit = 0
|
||||||
|
if days > warning:
|
||||||
|
status = "WARNING"
|
||||||
|
exit = 1
|
||||||
|
if days > critical:
|
||||||
|
status = "CRITICAL"
|
||||||
|
exit = 2
|
||||||
|
|
||||||
|
print(f"{status}: uptime {days} days | uptime={days};{warning};{critical};")
|
||||||
|
sys.exit(exit)
|
Loading…
Reference in a new issue