metrics.sh/reporters/stdout.sh

11 lines
161 B
Bash
Raw Normal View History

2015-02-21 18:18:27 +01:00
#!/bin/sh
report () {
METRIC=$1
VALUE=$2
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
}