diff --git a/munin/env b/munin/env new file mode 100755 index 00000000..98391681 --- /dev/null +++ b/munin/env @@ -0,0 +1,17 @@ +#!/bin/bash + +if [[ $1 == "config" ]]; then + cat << 'EOC' +graph_title Dummy env plugin +graph_args --base 1000 -l 0 +graph_vlabel dummy / ${graph_period} +graph_info This graph is buggy... It returns the environment variables it has been launched with. +dummy.label dummy +dummy.type DERIVE +dummy.min 0 +dummy.max 100000 +dummy.info The number of dummy per second. +EOC +else + exec env +fi