diff options
-rwxr-xr-x | util/bin/statsc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/bin/statsc b/util/bin/statsc new file mode 100755 index 00000000..ce2c70b6 --- /dev/null +++ b/util/bin/statsc @@ -0,0 +1,4 @@ +#!/bin/sh +# see https://github.com/etsy/statsd for syntax +[[ $# -eq 0 ]] && echo "usage: $0 MESSAGE" +echo "$1" | nc localhost 8126 |