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 am trying to run this plugin on Kubernetes. Having followed the dogstatsd setup instructions here, I've then added this to my uwsgi_config.ini:
uwsgi_config.ini
enable-metrics = true plugin = dogstatsd stats-push=dogstatsd:$(DD_AGENT_HOST):8125,uwsgi print = Pushing uwsgi stats to dogstatsd on $(DD_AGENT_HOST):8125 stats-pusher-default-freq=10 dogstatsd-extra-tags = env:$(AWS_ENVIRONMENT),service:uwsgi
where DD_AGENT_HOST is defined in my deployment.yaml as:
DD_AGENT_HOST
- name: DD_AGENT_HOST valueFrom: fieldRef: fieldPath: status.hostIP
This runs successfully, in the sense that this appears in the logs:
Pushing uwsgi stats to dogstatsd on 172.19.30.101:8125 ... initialized 54 metrics
But nothing appears in datadog. I also don't see any errors. Is there anything obvious I've missed here? Or anything I can do to debug the config?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to run this plugin on Kubernetes. Having followed the dogstatsd setup instructions here, I've then added this to my
uwsgi_config.ini
:where
DD_AGENT_HOST
is defined in my deployment.yaml as:This runs successfully, in the sense that this appears in the logs:
But nothing appears in datadog. I also don't see any errors. Is there anything obvious I've missed here? Or anything I can do to debug the config?
The text was updated successfully, but these errors were encountered: