From d00be7a015f6ff6c066abaad5228f699f75ad0e7 Mon Sep 17 00:00:00 2001 From: Alexander Fortin Date: Tue, 26 Jun 2012 14:33:21 +0200 Subject: [PATCH] Remove gauge reference --- examples/statsd-client.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/statsd-client.sh b/examples/statsd-client.sh index f1859366..9c40ba5c 100644 --- a/examples/statsd-client.sh +++ b/examples/statsd-client.sh @@ -1,7 +1,7 @@ #!/bin/bash # -# Very simple bash client to send gauge metrics to a statsd client -# Example: ./statsd-client.sh 'my_metric:100' +# Very simple bash client to send metrics to a statsd server +# Example with gauge: ./statsd-client.sh 'my_metric:100|g' # # Alexander Fortin # @@ -18,7 +18,7 @@ fi exec 3<> /dev/udp/${STATSD}/${PORT} # Send data -echo "$1|g" >&3 +echo "$1" >&3 # Close UDP socket exec 3<&-