#
# Env configurational file for 'runstatus' check
#

#
# This will make string indicator prefix:myapache 
#
apache_RUN="systemctl status apache2"
# process only lines which matches this regex
apache_GREP=error
# case sensitive for grep
apache_CASE=1
# return this line (line 0 by default)
apache_LINE=0
apache_CM=numerical


#
# Other, simpler examples
#

### system: used memory in megabytes
# usedmem_RUN=/bin/sh -c 'free --mega|grep Mem:|tr -s " "|cut -f 3 -d " "'
# usedmem_CM=numerical
# usedmem_CMARGS=minlim=0|maxlim=10000

### service: used memory in megabytes
# mariadb_mem_RUN=/bin/sh -c 'systemctl status mariadb | grep Memory| tr -cd "[:digit:]."'
# mariadb_mem_CM=numerical
# mariadb_mem_CMARGS=



### CPU temperature
#cputemp_RUN=cat /sys/class/thermal/thermal_zone0/temp



### COMMON SETTINGS

# PREFIX2=run:

# Policy if not default
POLICY=
