mirror of
https://github.com/pstadler/metrics.sh.git
synced 2025-02-28 13:59:12 -05:00
11 lines
173 B
Bash
11 lines
173 B
Bash
#!/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)"
|
|
} |