Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions base_images/Dockerfile.python-3.12
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ RUN if [ -n "$DDTRACE_INSTALL_URL" ]; then \

ENV DD_PROFILING_ENABLED=true
ENV DD_TRACE_ENABLED=false
ENV DD_CODE_ORIGIN_FOR_SPANS_ENABLED=false
ENV DD_REMOTE_CONFIGURATION_ENABLED=false
# ENV DD_TRACE_DEBUG=true
ENV DD_PROFILING_OUTPUT_PPROF="/app/data/profiles"
2 changes: 1 addition & 1 deletion scenarios/python_basic_gevent/expected_profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"pprof-regex": "",
"stack-content": [
{
"regular_expression": "^Hub\\.run;loop\\.run$",
"regular_expression": "^Hub\\.run;gevent\\.libev\\.corecext\\.loop\\.run$",
"value": 2000000000,
"error_margin": 25,
"labels": [
Expand Down
4 changes: 2 additions & 2 deletions scenarios/python_basic_idle_3.12/expected_profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"pprof-regex": "",
"stack-content": [
{
"regular_expression": "^\u003cmodule\u003e;target;sleep$",
"regular_expression": "^\u003cmodule\u003e;target;time\\.sleep$",
"value": 1000000000,
"error_margin": 15,
"labels": [
Expand All @@ -21,7 +21,7 @@
]
},
{
"regular_expression": ".*run;target;sleep$",
"regular_expression": ".*run;target;time\\.sleep$",
"value": 500000000,
"error_margin": 15,
"labels": [
Expand Down
Loading