# APP: NAME: app name; METRIC_NAME: app metric name; 
# METRIC_RELATION:the relation between the alarm and the resume value; 
# ALARM: alarm value; RESUME: alarm resume value; PATH: app metric file path

NAME="mysql"

#METRIC_NAME should be the same as the value in METRIC_PATH
METRIC_NAME="IOPS"

#METRIC_RELATION indicates the relation between the alarm and the resume value.
#The value is greater or less: 
#greater indicates that the alarm value is greater than resume. When metric value >= metric_alarm, alarm it
#less indicates that the alarm value is smaller than resume. When metric value <= metric_alarm, alarm it
METRIC_RELATION="less"

ALARM="1000"
RESUME="1500"
METRIC_PATH="/opt/mysql/metric"
PERIOD="10"

#TIME_DIFF indicates that when the application monitors an exception, to get system exception information whose time difference is less than TIME_DIFF
TIME_DIFF="60"