From 0e93a6b84c0857ad4e9feac906379715f189f3c7 Mon Sep 17 00:00:00 2001 From: Simon Weil Date: Fri, 18 Apr 2014 14:06:58 +0300 Subject: [PATCH] Added the -w0 to the Usage example Without the `-w0` the `nc` command hangs. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5eec4b..9f14b96 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ The basic line protocol expects metrics to be sent via UDP in the format: So the simplest way to send in metrics from your command line if you have StatsD running on localhost would be: - echo "foo:1|c" | nc -u 127.0.0.1 8125 + echo "foo:1|c" | nc -u -w0 127.0.0.1 8125 More Specific Topics --------