From ef8ba0e003e021a6b888f85c7379cce3b1993b4e Mon Sep 17 00:00:00 2001 From: Gregory Eremin Date: Sat, 9 Jul 2016 00:23:10 +0200 Subject: [PATCH] Use test.ping as a testing key --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 963a848..33e063f 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ $ make run * Open Grafana dashboard at `http://[docker-host]:3000/`, sign in as `admin`/`admin` * Create new data source of type `Graphite` that points to `http://graphite-api:8000` -* Create a new chart with a test metric (`foo.bar` in this example) +* Create a new chart with a test metric (`test.ping` in this example) * Start sending metrics to `StatsD`-compatible endpoint * Metrics should show up on Grafana dashboard @@ -65,8 +65,8 @@ You can send metrics right from terminal: ```bash # 1000 times -# Send "foo.bar:1|C" +# Send "test.ping:1|C" # Verbose, Using UDP, Timeout 1s # To StatsD port on Docker -$ for i in {1..1000}; do echo "foo.bar:1|C" | nc -v -u -w1 `docker-machine ip` 8126; done +$ for i in {1..1000}; do echo "test.ping:1|C" | nc -v -u -w1 `docker-machine ip` 8126; done ```