increase alerts limits on check_testcloud

This commit is contained in:
Kevin Fenzi 2017-02-05 22:01:00 +00:00
parent df636e007f
commit b97c20e39c
3 changed files with 6 additions and 6 deletions

View file

@ -1,8 +1,8 @@
#!/bin/bash
RUNNING_VMS=`testcloud instance list | grep -i 'running' | wc -l`
CRITICAL=20
WARNING=15
CRITICAL=30
WARNING=25
if [ $RUNNING_VMS -gt $CRITICAL ]