We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've started the docker container, and I've tried various methods to send data to statsd, including the following python script:
import statsd c = statsd.StatsClient('localhost', 8125) c.incr('local.test', 100)
or the following bash script:
do echo -n "example.statsd.counter.changed:$(((RANDOM % 10) + 1))|c" | nc -w 1 -u localhost 8125 done
I get no errors, but no indication that it's actually done anything, and I definitely don't see the example or local folders in the metrics.
example
local
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
Same here. What do we do ?
Sorry, something went wrong.
Looking at issue #92, have you guys tried sending stats to 127.0.0.1 as opposed to localhost?
127.0.0.1 worked
No branches or pull requests
I've started the docker container, and I've tried various methods to send data to statsd, including the following python script:
or the following bash script:
I get no errors, but no indication that it's actually done anything, and I definitely don't see the
example
orlocal
folders in the metrics.What am I doing wrong?
The text was updated successfully, but these errors were encountered: