mirror of
https://github.com/pstadler/metrics.sh.git
synced 2025-02-28 13:59:12 -05:00
12 lines
224 B
Bash
12 lines
224 B
Bash
#!/bin/sh
|
|
|
|
report () {
|
|
METRIC=$1
|
|
VALUE=$2
|
|
curl -d "stat=$METRIC&ezkey=$API_KEY&value=$VALUE" http://api.stathat.com/ez
|
|
}
|
|
|
|
docs () {
|
|
echo "Send data to StatHat (https://www.stathat.com)."
|
|
echo "\$API_KEY=<ez_key>"
|
|
} |