You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In my application, I deploy a FastAPI app to my kubernetes pod, and I have a datadog agent set up in the cluster.
When I exec into my pod and start a REPL, I can do statsd.set no problem, and find my metric on datadog metric explorer.
My app has the following structure:
main.py -- the main application code
start.py -- pre-setup before launching application, then launching application by running
When I run statsd.set("example_metric", 1) in start.py, I can see metrics successfully logged.
When I run statsd.set("example_metric", 1) in main.py, I don't see my metric showing up, and there are no errors.
Label the issue properly.
Add severity/ label.
Add documentation label if this issue is related to documentation changes.
To Reproduce
Steps to reproduce the behavior:
Go to '...'
Click on '....'
Scroll down to '....'
See error
Expected behavior
Metrics should show up on metrics explorer, or stastd should throw error when it fails.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment and Versions (please complete the following information):
A clear and precise description of your setup:
version for this project in use.
services, libraries, languages and tools list and versions.
This issue has been automatically marked as stale because it has not had activity in the last 30 days. Note that the issue will not be automatically closed, but this notification will remind us to investigate why there's been inactivity. Thank you for participating in the Datadog open source community.
If you would like this issue to remain open:
Verify that you can still reproduce the issue in the latest version of this project.
Comment that the issue is still reproducible and include updated details requested in the issue template.
Describe the bug
In my application, I deploy a FastAPI app to my kubernetes pod, and I have a datadog agent set up in the cluster.
When I exec into my pod and start a REPL, I can do
statsd.set
no problem, and find my metric on datadog metric explorer.My app has the following structure:
When I run
statsd.set("example_metric", 1)
in start.py, I can see metrics successfully logged.When I run
statsd.set("example_metric", 1)
in main.py, I don't see my metric showing up, and there are no errors.Label the issue properly.
severity/
label.documentation
label if this issue is related to documentation changes.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Metrics should show up on metrics explorer, or stastd should throw error when it fails.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment and Versions (please complete the following information):
A clear and precise description of your setup:
datadog==0.49.0
fastapi==0.111.1
uvicorn==0.30.3
gunicorn==20.1.0
Additional context
I tried comparing all my environment variables by dumping them in
start.py
and inmain.py
, and they are the same.The text was updated successfully, but these errors were encountered: