Added the -w0 to the Usage example

Without the `-w0` the `nc` command hangs.
This commit is contained in:
Simon Weil 2014-04-18 14:06:58 +03:00
Родитель 61c9607eee
Коммит 0e93a6b84c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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
--------