metrics.sh/reporters/stdout.sh

12 lines
174 B
Bash
Raw Normal View History

2015-02-21 12:18:27 -05:00
#!/bin/sh
report () {
local metric=$1
local value=$2
echo $metric: $value
}
docs () {
echo "Print to standard output, e.g. the TTY you're running the script in."
2015-02-21 12:18:27 -05:00
}