metrics.sh/reporters/stdout.sh

11 lines
173 B
Bash
Raw Normal View History

2015-02-21 18:18:27 +01:00
#!/bin/sh
report () {
2015-03-14 13:32:26 +01:00
local METRIC=$1
local VALUE=$2
2015-02-21 18:18:27 +01:00
echo $METRIC: $VALUE
}
docs () {
echo "Print to standard output (e.g. the TTY you're running the script in)"
2015-02-21 18:18:27 +01:00
}