2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00
contrib-munin/plugins/other/pid
Lars Kruse 17f784270a Whitespace cleanup
* remove trailing whitespace
* remove empty lines at the end of files
2018-08-02 02:33:25 +02:00

31 lines
319 B
Bash
Executable File

#!/bin/bash
#%# family=manual
#%# capabilities=autoconf
STYLE=LINE2
GRAPH="pid"
SECTION="system"
run_autoconf() {
echo yes
}
run_config() {
cat << EOF
graph_title ${GRAPH}
graph_category ${SECTION}
graph_vlabel pid
pid.label pid
pid.draw LINE2
pid.min 0
pid.info pid
EOF
}
run_() {
echo "pid.value $$"
}
run_$1