mirror of
https://github.com/pstadler/metrics.sh.git
synced 2025-02-28 22:09:11 -05:00
7 lines
70 B
Bash
7 lines
70 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
report () {
|
||
|
METRIC=$1
|
||
|
VALUE=$2
|
||
|
echo $METRIC: $VALUE
|
||
|
}
|