mirror of
https://github.com/pstadler/metrics.sh.git
synced 2025-02-28 13:59:12 -05:00
7 lines
126 B
Bash
7 lines
126 B
Bash
#!/bin/sh
|
|
|
|
report () {
|
|
METRIC=$1
|
|
VALUE=$2
|
|
curl -d "stat=$METRIC&ezkey=$API_KEY&value=$VALUE" http://api.stathat.com/ez
|
|
} |