Skip to content

fix(appsec): report all tags on the service entry span instead of the local root span #14210

New issue

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

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

florentinl
Copy link
Contributor

@florentinl florentinl commented Aug 1, 2025

Motivation

In specific cases where we have an inferred span (belonging to an inferred service) as the parent of the framework instrumented web request (the 'web' span), Appsec is enabled on the inferred service instead of the current service.

This is because we always use set tags and metrics on the root span using the span._local_root helper.

This leads to an incorrect reporting of the appsec enablement status, and security signals showing up on spans of a different service.

Note:

  • The only type of inferred span in my understanding are API Gateways. They can be created either through the AWS Lambda python layer and are of type 'http' or are inferred by dd-trace-py and are of type 'web'.
  • Appsec through the tracer in lambda is not generally available yet, and the extension correctly handles this case. So no problems for now. But is necessary for in tracer enablement of appsec.

Changes

  • Add a helper on spans to retrieve the top level span of a given service

  • Modify the appsec logic to always report on the service entry span and add a failsafe to query the entry span of the current span or current root span to get a handle on a span in any situation.

  • Modify the tests to look for the entry span instead of the root span

Notes:

  • for IAST, we still need to check the root span in some cases because of the _DD_IAST_USE_ROOT_SPAN flag. This setting also needs additional manual handling in report_stack as reporting to root span is not the default anymore.
  • The contrib_appsec tests contain shell injections (that we ensure are detected by appsec). I included that path to the codeql bypass file.

Checklist

  • PR author has checked that all the criteria below are met
  • The PR description includes an overview of the change
  • The PR description articulates the motivation for the change
  • The change includes tests OR the PR description describes a testing strategy
  • The PR description notes risks associated with the change, if any
  • Newly-added code is easy to change
  • The change follows the library release note guidelines
  • The change includes or references documentation updates if necessary
  • Backport labels are set (if applicable)

Reviewer Checklist

  • Reviewer has checked that all the criteria below are met
  • Title is accurate
  • All changes are related to the pull request's stated goal
  • Avoids breaking API changes
  • Testing strategy adequately addresses listed risks
  • Newly-added code is easy to change
  • Release note makes sense to a user of the library
  • If necessary, author has acknowledged and discussed the performance implications of this PR as reported in the benchmarks PR comment
  • Backport labels are set in a manner that is consistent with the release branch maintenance policy

@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch from cf74a41 to 4453c1f Compare August 1, 2025 12:25
Copy link
Contributor

github-actions bot commented Aug 1, 2025

CODEOWNERS have been resolved as:

releasenotes/notes/appsec-report-tags-on-entry-span-7b43ae9779d05d17.yaml  @DataDog/apm-python
releasenotes/notes/asgi-exception-group-catching-5d5132b367b01f4b.yaml  @DataDog/apm-python
tests/appsec/contrib_appsec/django_app/app/middlewares.py               @DataDog/asm-python
.github/codeql-config.yml                                               @DataDog/python-guild @DataDog/apm-core-python
ddtrace/_trace/span.py                                                  @DataDog/apm-sdk-api-python
ddtrace/_trace/tracer.py                                                @DataDog/apm-sdk-api-python
ddtrace/appsec/_api_security/api_manager.py                             @DataDog/asm-python
ddtrace/appsec/_asm_request_context.py                                  @DataDog/asm-python
ddtrace/appsec/_exploit_prevention/stack_traces.py                      @DataDog/asm-python
ddtrace/appsec/_iast/__init__.py                                        @DataDog/asm-python
ddtrace/appsec/_iast/_iast_request_context.py                           @DataDog/asm-python
ddtrace/appsec/_iast/_iast_request_context_base.py                      @DataDog/asm-python
ddtrace/appsec/_processor.py                                            @DataDog/asm-python
ddtrace/appsec/_trace_utils.py                                          @DataDog/asm-python
ddtrace/appsec/track_user_sdk.py                                        @DataDog/asm-python
ddtrace/contrib/internal/asgi/middleware.py                             @DataDog/apm-core-python @DataDog/apm-idm-python
ddtrace/internal/_exceptions.py                                         @DataDog/asm-python
ddtrace/settings/asm.py                                                 @DataDog/asm-python
tests/appsec/appsec/api_security/test_api_security_manager.py           @DataDog/asm-python
tests/appsec/appsec/test_appsec_trace_utils.py                          @DataDog/asm-python
tests/appsec/appsec/test_processor.py                                   @DataDog/asm-python
tests/appsec/contrib_appsec/conftest.py                                 @DataDog/asm-python
tests/appsec/contrib_appsec/django_app/settings.py                      @DataDog/asm-python
tests/appsec/contrib_appsec/django_app/urls.py                          @DataDog/asm-python
tests/appsec/contrib_appsec/fastapi_app/app.py                          @DataDog/asm-python
tests/appsec/contrib_appsec/flask_app/app.py                            @DataDog/asm-python
tests/appsec/contrib_appsec/utils.py                                    @DataDog/asm-python
tests/appsec/iast/aspects/test_add_aspect.py                            @DataDog/asm-python
tests/appsec/iast/conftest.py                                           @DataDog/asm-python
tests/appsec/iast/taint_tracking/test_native_taint_range.py             @DataDog/asm-python
tests/appsec/iast/taint_tracking/test_taint_tracking.py                 @DataDog/asm-python
tests/appsec/integrations/fastapi_tests/test_fastapi_appsec_iast.py     @DataDog/asm-python
tests/telemetry/test_writer.py                                          @DataDog/apm-python

Copy link
Contributor

github-actions bot commented Aug 1, 2025

Bootstrap import analysis

Comparison of import times between this PR and base.

Summary

The average import time from this PR is: 273 ± 7 ms.

The average import time from base is: 273 ± 6 ms.

The import time difference between this PR and base is: 0.5 ± 0.3 ms.

The difference is not statistically significant (z = 1.61).

Import time breakdown

The following import paths have shrunk:

ddtrace.auto 1.827 ms (0.67%)
ddtrace.bootstrap.sitecustomize 1.154 ms (0.42%)
ddtrace.bootstrap.preload 1.154 ms (0.42%)
ddtrace.internal.remoteconfig.client 0.614 ms (0.22%)
ddtrace 0.673 ms (0.25%)
ddtrace.internal._unpatched 0.027 ms (0.01%)
json 0.027 ms (0.01%)
json.decoder 0.027 ms (0.01%)
re 0.027 ms (0.01%)
enum 0.027 ms (0.01%)
types 0.027 ms (0.01%)

@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch from 4453c1f to 95a54a8 Compare August 1, 2025 12:48
@pr-commenter
Copy link

pr-commenter bot commented Aug 1, 2025

Performance SLOs

Candidate: florentinl/APPSEC-58532/report-tags-on-service-entry-span (709bc4c)

🔵 No Baseline Data (24 suites)
🔵 coreapiscenario - 12/12 (2 unstable)

🔵 No baseline data available for this suite

⚠️ context_with_data_listeners

Time: ⚠️ 13.839µs (SLO: <20.000µs 📉 -30.8%)

Memory: ✅ 31.103MB (SLO: <33.000MB -5.7%)


✅ context_with_data_no_listeners

Time: ✅ 3.806µs (SLO: <10.000µs 📉 -61.9%)

Memory: ✅ 31.182MB (SLO: <33.000MB -5.5%)


⚠️ context_with_data_only_all_listeners

Time: ⚠️ 13.907µs (SLO: <20.000µs 📉 -30.5%)

Memory: ✅ 31.064MB (SLO: <33.000MB -5.9%)


✅ get_item_exists

Time: ✅ 0.636µs (SLO: <10.000µs 📉 -93.6%)

Memory: ✅ 31.162MB (SLO: <33.000MB -5.6%)


✅ get_item_missing

Time: ✅ 0.685µs (SLO: <10.000µs 📉 -93.2%)

Memory: ✅ 31.143MB (SLO: <33.000MB -5.6%)


✅ set_item

Time: ✅ 24.583µs (SLO: <30.000µs 📉 -18.1%)

Memory: ✅ 31.182MB (SLO: <33.000MB -5.5%)


🔵 djangosimple - 22/22

🔵 No baseline data available for this suite

✅ appsec

Time: ✅ 21.228ms (SLO: <22.300ms -4.8%)

Memory: ✅ 63.891MB (SLO: <65.500MB -2.5%)


✅ exception-replay-enabled

Time: ✅ 1.371ms (SLO: <1.450ms -5.5%)

Memory: ✅ 63.585MB (SLO: <65.500MB -2.9%)


✅ iast

Time: ✅ 21.209ms (SLO: <22.250ms -4.7%)

Memory: ✅ 63.905MB (SLO: <65.500MB -2.4%)


✅ profiler

Time: ✅ 15.343ms (SLO: <16.550ms -7.3%)

Memory: ✅ 51.159MB (SLO: <53.000MB -3.5%)


✅ span-code-origin

Time: ✅ 26.956ms (SLO: <28.200ms -4.4%)

Memory: ✅ 66.335MB (SLO: <68.000MB -2.4%)


✅ tracer

Time: ✅ 21.296ms (SLO: <22.700ms -6.2%)

Memory: ✅ 63.836MB (SLO: <65.500MB -2.5%)


✅ tracer-and-profiler

Time: ✅ 23.196ms (SLO: <24.900ms -6.8%)

Memory: ✅ 65.236MB (SLO: <67.000MB -2.6%)


✅ tracer-no-caches

Time: ✅ 18.929ms (SLO: <19.650ms -3.7%)

Memory: ✅ 63.971MB (SLO: <65.500MB -2.3%)


✅ tracer-no-databases

Time: ✅ 19.105ms (SLO: <20.100ms -4.9%)

Memory: ✅ 63.936MB (SLO: <65.500MB -2.4%)


✅ tracer-no-middleware

Time: ✅ 21.089ms (SLO: <22.500ms -6.3%)

Memory: ✅ 63.971MB (SLO: <65.500MB -2.3%)


✅ tracer-no-templates

Time: ✅ 21.055ms (SLO: <22.250ms -5.4%)

Memory: ✅ 63.858MB (SLO: <65.500MB -2.5%)


🔵 errortrackingdjangosimple - 6/6

🔵 No baseline data available for this suite

✅ errortracking-enabled-all

Time: ✅ 18.541ms (SLO: <19.850ms -6.6%)

Memory: ✅ 63.862MB (SLO: <65.500MB -2.5%)


✅ errortracking-enabled-user

Time: ✅ 18.561ms (SLO: <19.400ms -4.3%)

Memory: ✅ 63.826MB (SLO: <65.500MB -2.6%)


✅ tracer-enabled

Time: ✅ 18.804ms (SLO: <19.450ms -3.3%)

Memory: ✅ 63.845MB (SLO: <65.500MB -2.5%)


🔵 errortrackingflasksqli - 6/6

🔵 No baseline data available for this suite

✅ errortracking-enabled-all

Time: ✅ 2.136ms (SLO: <2.300ms -7.1%)

Memory: ✅ 51.886MB (SLO: <53.000MB -2.1%)


✅ errortracking-enabled-user

Time: ✅ 2.136ms (SLO: <2.250ms -5.0%)

Memory: ✅ 51.812MB (SLO: <53.000MB -2.2%)


✅ tracer-enabled

Time: ✅ 2.145ms (SLO: <2.300ms -6.7%)

Memory: ✅ 51.569MB (SLO: <53.000MB -2.7%)


🔵 flasksimple - 14/14

🔵 No baseline data available for this suite

✅ appsec-get

Time: ✅ 4.626ms (SLO: <4.750ms -2.6%)

Memory: ✅ 62.639MB (SLO: <64.000MB -2.1%)


✅ appsec-post

Time: ✅ 6.651ms (SLO: <6.750ms 🟡 -1.5%)

Memory: ✅ 62.561MB (SLO: <64.000MB -2.2%)


✅ appsec-telemetry

Time: ✅ 4.621ms (SLO: <4.750ms -2.7%)

Memory: ✅ 62.580MB (SLO: <64.000MB -2.2%)


✅ debugger

Time: ✅ 1.857ms (SLO: <2.000ms -7.1%)

Memory: ✅ 44.355MB (SLO: <45.000MB 🟡 -1.4%)


✅ iast-get

Time: ✅ 1.854ms (SLO: <2.000ms -7.3%)

Memory: ✅ 46.498MB (SLO: <49.000MB -5.1%)


✅ profiler

Time: ✅ 1.916ms (SLO: <2.100ms -8.7%)

Memory: ✅ 43.896MB (SLO: <44.000MB 🟡 -0.2%)


✅ tracer

Time: ✅ 3.402ms (SLO: <3.650ms -6.8%)

Memory: ✅ 51.688MB (SLO: <53.000MB -2.5%)


🔵 flasksqli - 6/6

🔵 No baseline data available for this suite

✅ appsec-enabled

Time: ✅ 3.994ms (SLO: <4.200ms -4.9%)

Memory: ✅ 62.818MB (SLO: <66.000MB -4.8%)


✅ iast-enabled

Time: ✅ 2.564ms (SLO: <2.800ms -8.4%)

Memory: ✅ 57.181MB (SLO: <58.000MB 🟡 -1.4%)


✅ tracer-enabled

Time: ✅ 2.116ms (SLO: <2.250ms -6.0%)

Memory: ✅ 51.711MB (SLO: <53.000MB -2.4%)


🔵 httppropagationextract - 60/60

🔵 No baseline data available for this suite

✅ all_styles_all_headers

Time: ✅ 82.554µs (SLO: <100.000µs 📉 -17.4%)

Memory: ✅ 31.182MB (SLO: <33.000MB -5.5%)


✅ b3_headers

Time: ✅ 14.932µs (SLO: <20.000µs 📉 -25.3%)

Memory: ✅ 30.828MB (SLO: <33.000MB -6.6%)


✅ b3_single_headers

Time: ✅ 13.662µs (SLO: <20.000µs 📉 -31.7%)

Memory: ✅ 30.867MB (SLO: <33.000MB -6.5%)


✅ datadog_tracecontext_tracestate_not_propagated_on_trace_id_no_match

Time: ✅ 66.024µs (SLO: <80.000µs 📉 -17.5%)

Memory: ✅ 31.143MB (SLO: <33.000MB -5.6%)


✅ datadog_tracecontext_tracestate_propagated_on_trace_id_match

Time: ✅ 68.108µs (SLO: <80.000µs 📉 -14.9%)

Memory: ✅ 31.221MB (SLO: <33.000MB -5.4%)


✅ empty_headers

Time: ✅ 1.620µs (SLO: <10.000µs 📉 -83.8%)

Memory: ✅ 30.769MB (SLO: <33.000MB -6.8%)


✅ full_t_id_datadog_headers

Time: ✅ 23.849µs (SLO: <30.000µs 📉 -20.5%)

Memory: ✅ 31.162MB (SLO: <33.000MB -5.6%)


✅ invalid_priority_header

Time: ✅ 6.539µs (SLO: <10.000µs 📉 -34.6%)

Memory: ✅ 30.946MB (SLO: <33.000MB -6.2%)


✅ invalid_span_id_header

Time: ✅ 6.550µs (SLO: <10.000µs 📉 -34.5%)

Memory: ✅ 30.966MB (SLO: <33.000MB -6.2%)


✅ invalid_tags_header

Time: ✅ 6.529µs (SLO: <10.000µs 📉 -34.7%)

Memory: ✅ 30.808MB (SLO: <33.000MB -6.6%)


✅ invalid_trace_id_header

Time: ✅ 6.543µs (SLO: <10.000µs 📉 -34.6%)

Memory: ✅ 30.749MB (SLO: <33.000MB -6.8%)


✅ large_header_no_matches

Time: ✅ 27.579µs (SLO: <30.000µs -8.1%)

Memory: ✅ 30.828MB (SLO: <33.000MB -6.6%)


✅ large_valid_headers_all

Time: ✅ 28.620µs (SLO: <40.000µs 📉 -28.4%)

Memory: ✅ 30.907MB (SLO: <33.000MB -6.3%)


✅ medium_header_no_matches

Time: ✅ 9.896µs (SLO: <20.000µs 📉 -50.5%)

Memory: ✅ 30.730MB (SLO: <33.000MB -6.9%)


✅ medium_valid_headers_all

Time: ✅ 11.343µs (SLO: <20.000µs 📉 -43.3%)

Memory: ✅ 30.907MB (SLO: <33.000MB -6.3%)


✅ none_propagation_style

Time: ✅ 1.690µs (SLO: <10.000µs 📉 -83.1%)

Memory: ✅ 30.808MB (SLO: <33.000MB -6.6%)


✅ tracecontext_headers

Time: ✅ 34.972µs (SLO: <40.000µs 📉 -12.6%)

Memory: ✅ 31.143MB (SLO: <33.000MB -5.6%)


✅ valid_headers_all

Time: ✅ 6.493µs (SLO: <10.000µs 📉 -35.1%)

Memory: ✅ 30.828MB (SLO: <33.000MB -6.6%)


✅ valid_headers_basic

Time: ✅ 6.069µs (SLO: <10.000µs 📉 -39.3%)

Memory: ✅ 30.907MB (SLO: <33.000MB -6.3%)


✅ wsgi_empty_headers

Time: ✅ 1.589µs (SLO: <10.000µs 📉 -84.1%)

Memory: ✅ 30.789MB (SLO: <33.000MB -6.7%)


✅ wsgi_invalid_priority_header

Time: ✅ 6.576µs (SLO: <10.000µs 📉 -34.2%)

Memory: ✅ 30.769MB (SLO: <33.000MB -6.8%)


✅ wsgi_invalid_span_id_header

Time: ✅ 1.591µs (SLO: <10.000µs 📉 -84.1%)

Memory: ✅ 30.749MB (SLO: <33.000MB -6.8%)


✅ wsgi_invalid_tags_header

Time: ✅ 6.550µs (SLO: <10.000µs 📉 -34.5%)

Memory: ✅ 30.907MB (SLO: <33.000MB -6.3%)


✅ wsgi_invalid_trace_id_header

Time: ✅ 6.551µs (SLO: <10.000µs 📉 -34.5%)

Memory: ✅ 30.769MB (SLO: <33.000MB -6.8%)


✅ wsgi_large_header_no_matches

Time: ✅ 28.630µs (SLO: <40.000µs 📉 -28.4%)

Memory: ✅ 31.202MB (SLO: <33.000MB -5.4%)


✅ wsgi_large_valid_headers_all

Time: ✅ 29.853µs (SLO: <40.000µs 📉 -25.4%)

Memory: ✅ 31.143MB (SLO: <33.000MB -5.6%)


✅ wsgi_medium_header_no_matches

Time: ✅ 10.088µs (SLO: <20.000µs 📉 -49.6%)

Memory: ✅ 30.926MB (SLO: <33.000MB -6.3%)


✅ wsgi_medium_valid_headers_all

Time: ✅ 11.537µs (SLO: <20.000µs 📉 -42.3%)

Memory: ✅ 31.123MB (SLO: <33.000MB -5.7%)


✅ wsgi_valid_headers_all

Time: ✅ 6.572µs (SLO: <10.000µs 📉 -34.3%)

Memory: ✅ 30.946MB (SLO: <33.000MB -6.2%)


✅ wsgi_valid_headers_basic

Time: ✅ 6.106µs (SLO: <10.000µs 📉 -38.9%)

Memory: ✅ 30.887MB (SLO: <33.000MB -6.4%)


🔵 httppropagationinject - 16/16

🔵 No baseline data available for this suite

✅ ids_only

Time: ✅ 22.302µs (SLO: <30.000µs 📉 -25.7%)

Memory: ✅ 30.769MB (SLO: <33.000MB -6.8%)


✅ with_all

Time: ✅ 35.061µs (SLO: <40.000µs 📉 -12.3%)

Memory: ✅ 31.241MB (SLO: <33.000MB -5.3%)


✅ with_dd_origin

Time: ✅ 29.270µs (SLO: <30.000µs -2.4%)

Memory: ✅ 31.044MB (SLO: <33.000MB -5.9%)


✅ with_priority_and_origin

Time: ✅ 27.557µs (SLO: <40.000µs 📉 -31.1%)

Memory: ✅ 30.926MB (SLO: <33.000MB -6.3%)


✅ with_sampling_priority

Time: ✅ 21.726µs (SLO: <30.000µs 📉 -27.6%)

Memory: ✅ 30.749MB (SLO: <33.000MB -6.8%)


✅ with_tags

Time: ✅ 30.262µs (SLO: <40.000µs 📉 -24.3%)

Memory: ✅ 31.162MB (SLO: <33.000MB -5.6%)


✅ with_tags_invalid

Time: ✅ 33.423µs (SLO: <40.000µs 📉 -16.4%)

Memory: ✅ 30.789MB (SLO: <33.000MB -6.7%)


✅ with_tags_max_size

Time: ✅ 30.867µs (SLO: <40.000µs 📉 -22.8%)

Memory: ✅ 31.202MB (SLO: <33.000MB -5.4%)


🔵 iast_aspects - 40/40

🔵 No baseline data available for this suite

✅ re_expand_aspect

Time: ✅ 33.431µs (SLO: <40.000µs 📉 -16.4%)

Memory: ✅ 36.766MB (SLO: <38.500MB -4.5%)


✅ re_expand_noaspect

Time: ✅ 28.517µs (SLO: <40.000µs 📉 -28.7%)

Memory: ✅ 36.726MB (SLO: <38.500MB -4.6%)


✅ re_findall_aspect

Time: ✅ 3.725µs (SLO: <10.000µs 📉 -62.7%)

Memory: ✅ 36.687MB (SLO: <38.500MB -4.7%)


✅ re_findall_noaspect

Time: ✅ 1.410µs (SLO: <10.000µs 📉 -85.9%)

Memory: ✅ 36.687MB (SLO: <38.500MB -4.7%)


✅ re_finditer_aspect

Time: ✅ 5.156µs (SLO: <10.000µs 📉 -48.4%)

Memory: ✅ 36.648MB (SLO: <38.500MB -4.8%)


✅ re_finditer_noaspect

Time: ✅ 1.424µs (SLO: <10.000µs 📉 -85.8%)

Memory: ✅ 36.628MB (SLO: <38.500MB -4.9%)


✅ re_fullmatch_aspect

Time: ✅ 3.404µs (SLO: <10.000µs 📉 -66.0%)

Memory: ✅ 36.687MB (SLO: <38.500MB -4.7%)


✅ re_fullmatch_noaspect

Time: ✅ 1.292µs (SLO: <10.000µs 📉 -87.1%)

Memory: ✅ 36.667MB (SLO: <38.500MB -4.8%)


✅ re_group_aspect

Time: ✅ 3.466µs (SLO: <10.000µs 📉 -65.3%)

Memory: ✅ 36.648MB (SLO: <38.500MB -4.8%)


✅ re_group_noaspect

Time: ✅ 1.601µs (SLO: <10.000µs 📉 -84.0%)

Memory: ✅ 36.667MB (SLO: <38.500MB -4.8%)


✅ re_groups_aspect

Time: ✅ 3.676µs (SLO: <10.000µs 📉 -63.2%)

Memory: ✅ 36.707MB (SLO: <38.500MB -4.7%)


✅ re_groups_noaspect

Time: ✅ 1.704µs (SLO: <10.000µs 📉 -83.0%)

Memory: ✅ 36.687MB (SLO: <38.500MB -4.7%)


✅ re_match_aspect

Time: ✅ 3.423µs (SLO: <10.000µs 📉 -65.8%)

Memory: ✅ 36.667MB (SLO: <38.500MB -4.8%)


✅ re_match_noaspect

Time: ✅ 1.295µs (SLO: <10.000µs 📉 -87.1%)

Memory: ✅ 36.608MB (SLO: <38.500MB -4.9%)


✅ re_search_aspect

Time: ✅ 3.364µs (SLO: <10.000µs 📉 -66.4%)

Memory: ✅ 36.707MB (SLO: <38.500MB -4.7%)


✅ re_search_noaspect

Time: ✅ 1.193µs (SLO: <10.000µs 📉 -88.1%)

Memory: ✅ 36.667MB (SLO: <38.500MB -4.8%)


✅ re_sub_aspect

Time: ✅ 4.731µs (SLO: <10.000µs 📉 -52.7%)

Memory: ✅ 36.726MB (SLO: <38.500MB -4.6%)


✅ re_sub_noaspect

Time: ✅ 1.521µs (SLO: <10.000µs 📉 -84.8%)

Memory: ✅ 36.726MB (SLO: <38.500MB -4.6%)


✅ re_subn_aspect

Time: ✅ 4.894µs (SLO: <10.000µs 📉 -51.1%)

Memory: ✅ 36.648MB (SLO: <38.500MB -4.8%)


✅ re_subn_noaspect

Time: ✅ 1.611µs (SLO: <10.000µs 📉 -83.9%)

Memory: ✅ 36.746MB (SLO: <38.500MB -4.6%)


🔵 iastaspects - 118/118

🔵 No baseline data available for this suite

✅ add_aspect

Time: ✅ 0.330µs (SLO: <10.000µs 📉 -96.7%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ add_inplace_aspect

Time: ✅ 0.337µs (SLO: <10.000µs 📉 -96.6%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ add_inplace_noaspect

Time: ✅ 0.314µs (SLO: <10.000µs 📉 -96.9%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ add_noaspect

Time: ✅ 0.280µs (SLO: <10.000µs 📉 -97.2%)

Memory: ✅ 36.608MB (SLO: <39.000MB -6.1%)


✅ bytearray_aspect

Time: ✅ 1.872µs (SLO: <10.000µs 📉 -81.3%)

Memory: ✅ 36.785MB (SLO: <39.000MB -5.7%)


✅ bytearray_extend_aspect

Time: ✅ 1.384µs (SLO: <10.000µs 📉 -86.2%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ bytearray_extend_noaspect

Time: ✅ 0.618µs (SLO: <10.000µs 📉 -93.8%)

Memory: ✅ 36.746MB (SLO: <39.000MB -5.8%)


✅ bytearray_noaspect

Time: ✅ 0.485µs (SLO: <10.000µs 📉 -95.2%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ bytes_aspect

Time: ✅ 1.890µs (SLO: <10.000µs 📉 -81.1%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ bytes_noaspect

Time: ✅ 0.495µs (SLO: <10.000µs 📉 -95.1%)

Memory: ✅ 36.746MB (SLO: <39.000MB -5.8%)


✅ bytesio_aspect

Time: ✅ 1.906µs (SLO: <10.000µs 📉 -80.9%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ bytesio_noaspect

Time: ✅ 0.497µs (SLO: <10.000µs 📉 -95.0%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ capitalize_aspect

Time: ✅ 0.742µs (SLO: <10.000µs 📉 -92.6%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ capitalize_noaspect

Time: ✅ 0.431µs (SLO: <10.000µs 📉 -95.7%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ casefold_aspect

Time: ✅ 0.739µs (SLO: <10.000µs 📉 -92.6%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ casefold_noaspect

Time: ✅ 0.370µs (SLO: <10.000µs 📉 -96.3%)

Memory: ✅ 36.589MB (SLO: <39.000MB -6.2%)


✅ decode_aspect

Time: ✅ 0.724µs (SLO: <10.000µs 📉 -92.8%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ decode_noaspect

Time: ✅ 0.417µs (SLO: <10.000µs 📉 -95.8%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ encode_aspect

Time: ✅ 0.713µs (SLO: <10.000µs 📉 -92.9%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ encode_noaspect

Time: ✅ 0.406µs (SLO: <10.000µs 📉 -95.9%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ format_aspect

Time: ✅ 3.481µs (SLO: <10.000µs 📉 -65.2%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ format_map_aspect

Time: ✅ 3.237µs (SLO: <10.000µs 📉 -67.6%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ format_map_noaspect

Time: ✅ 0.776µs (SLO: <10.000µs 📉 -92.2%)

Memory: ✅ 36.628MB (SLO: <39.000MB -6.1%)


✅ format_noaspect

Time: ✅ 0.596µs (SLO: <10.000µs 📉 -94.0%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ index_aspect

Time: ✅ 0.341µs (SLO: <10.000µs 📉 -96.6%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ index_noaspect

Time: ✅ 0.280µs (SLO: <10.000µs 📉 -97.2%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ join_aspect

Time: ✅ 1.223µs (SLO: <10.000µs 📉 -87.8%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ join_noaspect

Time: ✅ 0.491µs (SLO: <10.000µs 📉 -95.1%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ ljust_aspect

Time: ✅ 10.772µs (SLO: <20.000µs 📉 -46.1%)

Memory: ✅ 36.805MB (SLO: <39.000MB -5.6%)


✅ ljust_noaspect

Time: ✅ 0.400µs (SLO: <10.000µs 📉 -96.0%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ lower_aspect

Time: ✅ 2.260µs (SLO: <10.000µs 📉 -77.4%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ lower_noaspect

Time: ✅ 0.367µs (SLO: <10.000µs 📉 -96.3%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ lstrip_aspect

Time: ✅ 11.115µs (SLO: <20.000µs 📉 -44.4%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ lstrip_noaspect

Time: ✅ 0.385µs (SLO: <10.000µs 📉 -96.1%)

Memory: ✅ 36.805MB (SLO: <39.000MB -5.6%)


✅ modulo_aspect

Time: ✅ 0.581µs (SLO: <10.000µs 📉 -94.2%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ modulo_aspect_for_bytearray_bytearray

Time: ✅ 1.256µs (SLO: <10.000µs 📉 -87.4%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ modulo_aspect_for_bytes

Time: ✅ 0.757µs (SLO: <10.000µs 📉 -92.4%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ modulo_aspect_for_bytes_bytearray

Time: ✅ 1.011µs (SLO: <10.000µs 📉 -89.9%)

Memory: ✅ 36.785MB (SLO: <39.000MB -5.7%)


✅ modulo_noaspect

Time: ✅ 0.628µs (SLO: <10.000µs 📉 -93.7%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ replace_aspect

Time: ✅ 4.654µs (SLO: <10.000µs 📉 -53.5%)

Memory: ✅ 36.766MB (SLO: <39.000MB -5.7%)


✅ replace_noaspect

Time: ✅ 0.457µs (SLO: <10.000µs 📉 -95.4%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ repr_aspect

Time: ✅ 0.909µs (SLO: <10.000µs 📉 -90.9%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ repr_noaspect

Time: ✅ 0.416µs (SLO: <10.000µs 📉 -95.8%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ rstrip_aspect

Time: ✅ 10.491µs (SLO: <20.000µs 📉 -47.5%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ rstrip_noaspect

Time: ✅ 0.381µs (SLO: <10.000µs 📉 -96.2%)

Memory: ✅ 36.628MB (SLO: <39.000MB -6.1%)


✅ slice_aspect

Time: ✅ 0.479µs (SLO: <10.000µs 📉 -95.2%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ slice_noaspect

Time: ✅ 0.447µs (SLO: <10.000µs 📉 -95.5%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ stringio_aspect

Time: ✅ 2.208µs (SLO: <10.000µs 📉 -77.9%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ stringio_noaspect

Time: ✅ 0.728µs (SLO: <10.000µs 📉 -92.7%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ strip_aspect

Time: ✅ 10.478µs (SLO: <20.000µs 📉 -47.6%)

Memory: ✅ 36.766MB (SLO: <39.000MB -5.7%)


✅ strip_noaspect

Time: ✅ 0.385µs (SLO: <10.000µs 📉 -96.2%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ swapcase_aspect

Time: ✅ 2.502µs (SLO: <10.000µs 📉 -75.0%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ swapcase_noaspect

Time: ✅ 0.538µs (SLO: <10.000µs 📉 -94.6%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ title_aspect

Time: ✅ 2.334µs (SLO: <10.000µs 📉 -76.7%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ title_noaspect

Time: ✅ 0.505µs (SLO: <10.000µs 📉 -95.0%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ translate_aspect

Time: ✅ 3.464µs (SLO: <10.000µs 📉 -65.4%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ translate_noaspect

Time: ✅ 1.042µs (SLO: <10.000µs 📉 -89.6%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ upper_aspect

Time: ✅ 2.312µs (SLO: <10.000µs 📉 -76.9%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ upper_noaspect

Time: ✅ 0.367µs (SLO: <10.000µs 📉 -96.3%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


🔵 iastaspectsospath - 24/24

🔵 No baseline data available for this suite

✅ ospathbasename_aspect

Time: ✅ 4.105µs (SLO: <10.000µs 📉 -58.9%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ ospathbasename_noaspect

Time: ✅ 1.073µs (SLO: <10.000µs 📉 -89.3%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ ospathjoin_aspect

Time: ✅ 6.105µs (SLO: <10.000µs 📉 -39.0%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ ospathjoin_noaspect

Time: ✅ 2.298µs (SLO: <10.000µs 📉 -77.0%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ ospathnormcase_aspect

Time: ✅ 3.338µs (SLO: <10.000µs 📉 -66.6%)

Memory: ✅ 36.746MB (SLO: <39.000MB -5.8%)


✅ ospathnormcase_noaspect

Time: ✅ 0.565µs (SLO: <10.000µs 📉 -94.4%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ ospathsplit_aspect

Time: ✅ 5.592µs (SLO: <10.000µs 📉 -44.1%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ ospathsplit_noaspect

Time: ✅ 1.585µs (SLO: <10.000µs 📉 -84.2%)

Memory: ✅ 36.707MB (SLO: <39.000MB -5.9%)


✅ ospathsplitdrive_aspect

Time: ✅ 3.543µs (SLO: <10.000µs 📉 -64.6%)

Memory: ✅ 36.746MB (SLO: <39.000MB -5.8%)


✅ ospathsplitdrive_noaspect

Time: ✅ 0.690µs (SLO: <10.000µs 📉 -93.1%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ ospathsplitext_aspect

Time: ✅ 4.519µs (SLO: <10.000µs 📉 -54.8%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


✅ ospathsplitext_noaspect

Time: ✅ 1.377µs (SLO: <10.000µs 📉 -86.2%)

Memory: ✅ 36.628MB (SLO: <39.000MB -6.1%)


🔵 iastaspectssplit - 12/12

🔵 No baseline data available for this suite

✅ rsplit_aspect

Time: ✅ 1.559µs (SLO: <10.000µs 📉 -84.4%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ rsplit_noaspect

Time: ✅ 0.578µs (SLO: <10.000µs 📉 -94.2%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ split_aspect

Time: ✅ 1.498µs (SLO: <10.000µs 📉 -85.0%)

Memory: ✅ 36.687MB (SLO: <39.000MB -5.9%)


✅ split_noaspect

Time: ✅ 0.570µs (SLO: <10.000µs 📉 -94.3%)

Memory: ✅ 36.628MB (SLO: <39.000MB -6.1%)


✅ splitlines_aspect

Time: ✅ 1.493µs (SLO: <10.000µs 📉 -85.1%)

Memory: ✅ 36.628MB (SLO: <39.000MB -6.1%)


✅ splitlines_noaspect

Time: ✅ 0.583µs (SLO: <10.000µs 📉 -94.2%)

Memory: ✅ 36.628MB (SLO: <39.000MB -6.1%)


🔵 iastpropagation - 8/8

🔵 No baseline data available for this suite

✅ no-propagation

Time: ✅ 49.150µs (SLO: <60.000µs 📉 -18.1%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ propagation_enabled

Time: ✅ 146.458µs (SLO: <160.000µs -8.5%)

Memory: ✅ 36.648MB (SLO: <39.000MB -6.0%)


✅ propagation_enabled_100

Time: ✅ 1.565ms (SLO: <1.800ms 📉 -13.1%)

Memory: ✅ 36.726MB (SLO: <39.000MB -5.8%)


✅ propagation_enabled_1000

Time: ✅ 29.005ms (SLO: <30.550ms -5.1%)

Memory: ✅ 36.667MB (SLO: <39.000MB -6.0%)


🔵 otelsdkspan - 24/24

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 40.223ms (SLO: <42.000ms -4.2%)

Memory: ✅ 33.522MB (SLO: <39.000MB 📉 -14.0%)


✅ add-link

Time: ✅ 36.063ms (SLO: <38.550ms -6.5%)

Memory: ✅ 33.482MB (SLO: <39.000MB 📉 -14.1%)


✅ add-metrics

Time: ✅ 220.907ms (SLO: <232.000ms -4.8%)

Memory: ✅ 33.561MB (SLO: <39.000MB 📉 -13.9%)


✅ add-tags

Time: ✅ 212.444ms (SLO: <221.600ms -4.1%)

Memory: ✅ 33.581MB (SLO: <39.000MB 📉 -13.9%)


✅ get-context

Time: ✅ 29.332ms (SLO: <31.300ms -6.3%)

Memory: ✅ 33.541MB (SLO: <39.000MB 📉 -14.0%)


✅ is-recording

Time: ✅ 28.828ms (SLO: <31.000ms -7.0%)

Memory: ✅ 33.541MB (SLO: <39.000MB 📉 -14.0%)


✅ record-exception

Time: ✅ 62.813ms (SLO: <65.850ms -4.6%)

Memory: ✅ 33.522MB (SLO: <39.000MB 📉 -14.0%)


✅ set-status

Time: ✅ 32.252ms (SLO: <34.150ms -5.6%)

Memory: ✅ 33.541MB (SLO: <39.000MB 📉 -14.0%)


✅ start

Time: ✅ 28.967ms (SLO: <30.150ms -3.9%)

Memory: ✅ 33.463MB (SLO: <39.000MB 📉 -14.2%)


✅ start-finish

Time: ✅ 33.666ms (SLO: <35.350ms -4.8%)

Memory: ✅ 33.561MB (SLO: <39.000MB 📉 -13.9%)


✅ start-finish-telemetry

Time: ✅ 33.829ms (SLO: <35.450ms -4.6%)

Memory: ✅ 33.522MB (SLO: <39.000MB 📉 -14.0%)


✅ update-name

Time: ✅ 30.943ms (SLO: <33.400ms -7.4%)

Memory: ✅ 33.502MB (SLO: <39.000MB 📉 -14.1%)


🔵 otelspan - 22/22

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 45.369ms (SLO: <47.150ms -3.8%)

Memory: ✅ 44.275MB (SLO: <46.500MB -4.8%)


✅ add-metrics

Time: ✅ 322.709ms (SLO: <344.800ms -6.4%)

Memory: ✅ 553.525MB (SLO: <562.000MB 🟡 -1.5%)


✅ add-tags

Time: ✅ 291.902ms (SLO: <314.000ms -7.0%)

Memory: ✅ 554.014MB (SLO: <563.500MB 🟡 -1.7%)


✅ get-context

Time: ✅ 87.125ms (SLO: <92.350ms -5.7%)

Memory: ✅ 39.277MB (SLO: <46.500MB 📉 -15.5%)


✅ is-recording

Time: ✅ 43.102ms (SLO: <44.500ms -3.1%)

Memory: ✅ 43.584MB (SLO: <46.500MB -6.3%)


✅ record-exception

Time: ✅ 61.780ms (SLO: <67.650ms -8.7%)

Memory: ✅ 39.603MB (SLO: <46.500MB 📉 -14.8%)


✅ set-status

Time: ✅ 48.813ms (SLO: <50.400ms -3.1%)

Memory: ✅ 43.589MB (SLO: <46.500MB -6.3%)


✅ start

Time: ✅ 42.156ms (SLO: <43.450ms -3.0%)

Memory: ✅ 43.573MB (SLO: <46.500MB -6.3%)


✅ start-finish

Time: ✅ 85.026ms (SLO: <88.000ms -3.4%)

Memory: ✅ 33.266MB (SLO: <46.500MB 📉 -28.5%)


✅ start-finish-telemetry

Time: ✅ 86.541ms (SLO: <89.000ms -2.8%)

Memory: ✅ 33.246MB (SLO: <46.500MB 📉 -28.5%)


✅ update-name

Time: ✅ 45.127ms (SLO: <45.150ms 🟡 ~same)

Memory: ✅ 43.888MB (SLO: <46.500MB -5.6%)


🔵 packagespackageforrootmodulemapping - 4/4

🔵 No baseline data available for this suite

✅ cache_off

Time: ✅ 343.373ms (SLO: <354.300ms -3.1%)

Memory: ✅ 37.551MB (SLO: <38.000MB 🟡 -1.2%)


✅ cache_on

Time: ✅ 0.384µs (SLO: <10.000µs 📉 -96.2%)

Memory: ✅ 35.763MB (SLO: <38.000MB -5.9%)


🔵 packagesupdateimporteddependencies - 24/24

🔵 No baseline data available for this suite

✅ import_many

Time: ✅ 156.194µs (SLO: <170.000µs -8.1%)

Memory: ✅ 35.641MB (SLO: <38.500MB -7.4%)


✅ import_many_cached

Time: ✅ 121.415µs (SLO: <130.000µs -6.6%)

Memory: ✅ 35.745MB (SLO: <38.500MB -7.2%)


✅ import_many_stdlib

Time: ✅ 1.610ms (SLO: <1.750ms -8.0%)

Memory: ✅ 35.893MB (SLO: <38.500MB -6.8%)


✅ import_many_stdlib_cached

Time: ✅ 0.963ms (SLO: <1.100ms 📉 -12.4%)

Memory: ✅ 35.672MB (SLO: <38.500MB -7.3%)


✅ import_many_unknown

Time: ✅ 831.645µs (SLO: <890.000µs -6.6%)

Memory: ✅ 35.866MB (SLO: <38.500MB -6.8%)


✅ import_many_unknown_cached

Time: ✅ 789.553µs (SLO: <870.000µs -9.2%)

Memory: ✅ 35.968MB (SLO: <38.500MB -6.6%)


✅ import_one

Time: ✅ 19.785µs (SLO: <30.000µs 📉 -34.1%)

Memory: ✅ 35.740MB (SLO: <38.500MB -7.2%)


✅ import_one_cache

Time: ✅ 6.260µs (SLO: <10.000µs 📉 -37.4%)

Memory: ✅ 35.661MB (SLO: <38.500MB -7.4%)


✅ import_one_stdlib

Time: ✅ 18.814µs (SLO: <20.000µs -5.9%)

Memory: ✅ 35.692MB (SLO: <38.500MB -7.3%)


✅ import_one_stdlib_cache

Time: ✅ 6.265µs (SLO: <10.000µs 📉 -37.4%)

Memory: ✅ 35.744MB (SLO: <38.500MB -7.2%)


✅ import_one_unknown

Time: ✅ 45.816µs (SLO: <50.000µs -8.4%)

Memory: ✅ 35.660MB (SLO: <38.500MB -7.4%)


✅ import_one_unknown_cache

Time: ✅ 6.282µs (SLO: <10.000µs 📉 -37.2%)

Memory: ✅ 35.647MB (SLO: <38.500MB -7.4%)


🔵 ratelimiter - 12/12

🔵 No baseline data available for this suite

✅ defaults

Time: ✅ 2.346µs (SLO: <10.000µs 📉 -76.5%)

Memory: ✅ 30.789MB (SLO: <34.000MB -9.4%)


✅ high_rate_limit

Time: ✅ 2.415µs (SLO: <10.000µs 📉 -75.8%)

Memory: ✅ 30.710MB (SLO: <34.000MB -9.7%)


✅ long_window

Time: ✅ 2.364µs (SLO: <10.000µs 📉 -76.4%)

Memory: ✅ 30.808MB (SLO: <34.000MB -9.4%)


✅ low_rate_limit

Time: ✅ 2.379µs (SLO: <10.000µs 📉 -76.2%)

Memory: ✅ 30.769MB (SLO: <34.000MB -9.5%)


✅ no_rate_limit

Time: ✅ 0.830µs (SLO: <10.000µs 📉 -91.7%)

Memory: ✅ 30.749MB (SLO: <34.000MB -9.6%)


✅ short_window

Time: ✅ 2.492µs (SLO: <10.000µs 📉 -75.1%)

Memory: ✅ 30.710MB (SLO: <34.000MB -9.7%)


🔵 recursivecomputation - 8/8

🔵 No baseline data available for this suite

✅ deep

Time: ✅ 309.446ms (SLO: <320.950ms -3.6%)

Memory: ✅ 31.929MB (SLO: <34.000MB -6.1%)


✅ deep-profiled

Time: ✅ 327.711ms (SLO: <359.150ms -8.8%)

Memory: ✅ 34.682MB (SLO: <39.000MB 📉 -11.1%)


✅ medium

Time: ✅ 7.099ms (SLO: <7.400ms -4.1%)

Memory: ✅ 31.162MB (SLO: <34.000MB -8.3%)


✅ shallow

Time: ✅ 0.962ms (SLO: <1.050ms -8.4%)

Memory: ✅ 31.064MB (SLO: <34.000MB -8.6%)


🔵 samplingrules - 8/8

🔵 No baseline data available for this suite

✅ average_match

Time: ✅ 274.914µs (SLO: <290.000µs -5.2%)

Memory: ✅ 30.749MB (SLO: <34.000MB -9.6%)


✅ high_match

Time: ✅ 446.212µs (SLO: <480.000µs -7.0%)

Memory: ✅ 30.730MB (SLO: <34.000MB -9.6%)


✅ low_match

Time: ✅ 110.918µs (SLO: <120.000µs -7.6%)

Memory: ✅ 444.439MB (SLO: <450.000MB 🟡 -1.2%)


✅ very_low_match

Time: ✅ 7.629ms (SLO: <8.500ms 📉 -10.2%)

Memory: ✅ 57.471MB (SLO: <60.000MB -4.2%)


🔵 sethttpmeta - 32/32

🔵 No baseline data available for this suite

✅ all-disabled

Time: ✅ 12.440µs (SLO: <20.000µs 📉 -37.8%)

Memory: ✅ 31.674MB (SLO: <34.000MB -6.8%)


✅ all-enabled

Time: ✅ 42.267µs (SLO: <50.000µs 📉 -15.5%)

Memory: ✅ 31.615MB (SLO: <34.000MB -7.0%)


✅ collectipvariant_exists

Time: ✅ 42.995µs (SLO: <50.000µs 📉 -14.0%)

Memory: ✅ 31.595MB (SLO: <34.000MB -7.1%)


✅ no-collectipvariant

Time: ✅ 42.112µs (SLO: <50.000µs 📉 -15.8%)

Memory: ✅ 31.634MB (SLO: <34.000MB -7.0%)


✅ no-useragentvariant

Time: ✅ 41.042µs (SLO: <50.000µs 📉 -17.9%)

Memory: ✅ 31.615MB (SLO: <34.000MB -7.0%)


✅ obfuscation-no-query

Time: ✅ 42.779µs (SLO: <50.000µs 📉 -14.4%)

Memory: ✅ 31.674MB (SLO: <34.000MB -6.8%)


✅ obfuscation-regular-case-explicit-query

Time: ✅ 79.100µs (SLO: <90.000µs 📉 -12.1%)

Memory: ✅ 31.634MB (SLO: <34.000MB -7.0%)


✅ obfuscation-regular-case-implicit-query

Time: ✅ 79.581µs (SLO: <90.000µs 📉 -11.6%)

Memory: ✅ 31.615MB (SLO: <34.000MB -7.0%)


✅ obfuscation-send-querystring-disabled

Time: ✅ 157.052µs (SLO: <170.000µs -7.6%)

Memory: ✅ 31.536MB (SLO: <34.000MB -7.2%)


✅ obfuscation-worst-case-explicit-query

Time: ✅ 151.415µs (SLO: <160.000µs -5.4%)

Memory: ✅ 31.674MB (SLO: <34.000MB -6.8%)


✅ obfuscation-worst-case-implicit-query

Time: ✅ 157.798µs (SLO: <170.000µs -7.2%)

Memory: ✅ 31.674MB (SLO: <34.000MB -6.8%)


✅ useragentvariant_exists_1

Time: ✅ 41.673µs (SLO: <50.000µs 📉 -16.7%)

Memory: ✅ 31.556MB (SLO: <34.000MB -7.2%)


✅ useragentvariant_exists_2

Time: ✅ 42.854µs (SLO: <50.000µs 📉 -14.3%)

Memory: ✅ 31.654MB (SLO: <34.000MB -6.9%)


✅ useragentvariant_exists_3

Time: ✅ 42.272µs (SLO: <50.000µs 📉 -15.5%)

Memory: ✅ 31.634MB (SLO: <34.000MB -7.0%)


✅ useragentvariant_not_exists_1

Time: ✅ 41.716µs (SLO: <50.000µs 📉 -16.6%)

Memory: ✅ 31.615MB (SLO: <34.000MB -7.0%)


✅ useragentvariant_not_exists_2

Time: ✅ 41.589µs (SLO: <50.000µs 📉 -16.8%)

Memory: ✅ 31.595MB (SLO: <34.000MB -7.1%)


🔵 span - 26/26

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 24.071ms (SLO: <26.200ms -8.1%)

Memory: ✅ 50.509MB (SLO: <53.000MB -4.7%)


✅ add-metrics

Time: ✅ 93.784ms (SLO: <98.350ms -4.6%)

Memory: ✅ 606.722MB (SLO: <961.000MB 📉 -36.9%)


✅ add-tags

Time: ✅ 149.637ms (SLO: <168.550ms 📉 -11.2%)

Memory: ✅ 606.798MB (SLO: <962.500MB 📉 -37.0%)


✅ get-context

Time: ✅ 22.663ms (SLO: <23.700ms -4.4%)

Memory: ✅ 49.385MB (SLO: <53.000MB -6.8%)


✅ is-recording

Time: ✅ 22.562ms (SLO: <23.900ms -5.6%)

Memory: ✅ 49.434MB (SLO: <53.000MB -6.7%)


✅ record-exception

Time: ✅ 42.533ms (SLO: <44.500ms -4.4%)

Memory: ✅ 42.270MB (SLO: <53.000MB 📉 -20.2%)


✅ set-status

Time: ✅ 24.304ms (SLO: <26.000ms -6.5%)

Memory: ✅ 49.425MB (SLO: <53.000MB -6.7%)


✅ start

Time: ✅ 22.336ms (SLO: <23.500ms -5.0%)

Memory: ✅ 49.346MB (SLO: <53.000MB -6.9%)


✅ start-finish

Time: ✅ 53.806ms (SLO: <55.500ms -3.1%)

Memory: ✅ 31.182MB (SLO: <34.000MB -8.3%)


✅ start-finish-telemetry

Time: ✅ 55.451ms (SLO: <58.300ms -4.9%)

Memory: ✅ 31.103MB (SLO: <34.000MB -8.5%)


✅ start-finish-traceid128

Time: ✅ 58.393ms (SLO: <60.050ms -2.8%)

Memory: ✅ 31.143MB (SLO: <34.000MB -8.4%)


✅ start-traceid128

Time: ✅ 22.680ms (SLO: <24.600ms -7.8%)

Memory: ✅ 49.417MB (SLO: <53.000MB -6.8%)


✅ update-name

Time: ✅ 23.188ms (SLO: <24.100ms -3.8%)

Memory: ✅ 50.041MB (SLO: <53.000MB -5.6%)


🔵 telemetryaddmetric - 30/30

🔵 No baseline data available for this suite

✅ 1-count-metric-1-times

Time: ✅ 3.207µs (SLO: <10.000µs 📉 -67.9%)

Memory: ✅ 31.202MB (SLO: <34.000MB -8.2%)


✅ 1-count-metrics-100-times

Time: ✅ 217.046µs (SLO: <240.000µs -9.6%)

Memory: ✅ 31.103MB (SLO: <34.000MB -8.5%)


✅ 1-distribution-metric-1-times

Time: ✅ 2.982µs (SLO: <10.000µs 📉 -70.2%)

Memory: ✅ 31.143MB (SLO: <34.000MB -8.4%)


✅ 1-distribution-metrics-100-times

Time: ✅ 203.610µs (SLO: <210.000µs -3.0%)

Memory: ✅ 31.103MB (SLO: <34.000MB -8.5%)


✅ 1-gauge-metric-1-times

Time: ✅ 2.335µs (SLO: <10.000µs 📉 -76.7%)

Memory: ✅ 31.182MB (SLO: <34.000MB -8.3%)


✅ 1-gauge-metrics-100-times

Time: ✅ 123.130µs (SLO: <140.000µs 📉 -12.0%)

Memory: ✅ 31.143MB (SLO: <34.000MB -8.4%)


✅ 1-rate-metric-1-times

Time: ✅ 3.473µs (SLO: <10.000µs 📉 -65.3%)

Memory: ✅ 31.123MB (SLO: <34.000MB -8.5%)


✅ 1-rate-metrics-100-times

Time: ✅ 221.456µs (SLO: <230.000µs -3.7%)

Memory: ✅ 31.103MB (SLO: <34.000MB -8.5%)


✅ 100-count-metrics-100-times

Time: ✅ 21.751ms (SLO: <22.500ms -3.3%)

Memory: ✅ 31.143MB (SLO: <34.000MB -8.4%)


✅ 100-distribution-metrics-100-times

Time: ✅ 2.042ms (SLO: <2.100ms -2.8%)

Memory: ✅ 31.182MB (SLO: <34.000MB -8.3%)


✅ 100-gauge-metrics-100-times

Time: ✅ 1.270ms (SLO: <1.400ms -9.3%)

Memory: ✅ 31.143MB (SLO: <34.000MB -8.4%)


✅ 100-rate-metrics-100-times

Time: ✅ 2.213ms (SLO: <2.400ms -7.8%)

Memory: ✅ 31.162MB (SLO: <34.000MB -8.3%)


✅ flush-1-metric

Time: ✅ 4.654µs (SLO: <10.000µs 📉 -53.5%)

Memory: ✅ 31.202MB (SLO: <34.000MB -8.2%)


✅ flush-100-metrics

Time: ✅ 181.442µs (SLO: <200.000µs -9.3%)

Memory: ✅ 31.143MB (SLO: <34.000MB -8.4%)


✅ flush-1000-metrics

Time: ✅ 2.203ms (SLO: <2.350ms -6.2%)

Memory: ✅ 32.283MB (SLO: <34.000MB -5.0%)


🔵 tracer - 6/6

🔵 No baseline data available for this suite

✅ large

Time: ✅ 30.714ms (SLO: <32.950ms -6.8%)

Memory: ✅ 32.342MB (SLO: <34.000MB -4.9%)


✅ medium

Time: ✅ 3.023ms (SLO: <3.200ms -5.5%)

Memory: ✅ 30.691MB (SLO: <34.000MB -9.7%)


✅ small

Time: ✅ 345.601µs (SLO: <370.000µs -6.6%)

Memory: ✅ 30.691MB (SLO: <34.000MB -9.7%)

@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch 22 times, most recently from bd9d326 to e7f2dde Compare August 6, 2025 08:36
@florentinl florentinl changed the title fix(appsec): report all tags on the service entry span instead of the local root span chore(appsec): report all tags on the service entry span instead of the local root span Aug 6, 2025
@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch from e7f2dde to 050c4b5 Compare August 6, 2025 09:14
@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch 2 times, most recently from 915b5b7 to 0a7ecc8 Compare August 6, 2025 14:30
@florentinl florentinl marked this pull request as ready for review August 6, 2025 15:07
@florentinl florentinl requested review from a team as code owners August 6, 2025 15:07
@florentinl florentinl requested review from mabdinur and juanjux August 6, 2025 15:07
@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch 3 times, most recently from d08fce8 to 337c94d Compare August 7, 2025 10:33
@florentinl florentinl marked this pull request as draft August 7, 2025 11:02
@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch 6 times, most recently from d548fb5 to c14225e Compare August 7, 2025 15:01
@florentinl florentinl changed the title chore(appsec): report all tags on the service entry span instead of the local root span fix(appsec): report all tags on the service entry span instead of the local root span Aug 8, 2025
@florentinl florentinl removed the changelog/no-changelog A changelog entry is not required for this PR. label Aug 8, 2025
@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch from c14225e to e6c2e00 Compare August 8, 2025 07:56
@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch from 715e541 to 073481a Compare August 8, 2025 09:20
@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch from 073481a to 74c7d62 Compare August 8, 2025 09:37
@florentinl florentinl force-pushed the florentinl/APPSEC-58532/report-tags-on-service-entry-span branch from 74c7d62 to 709bc4c Compare August 8, 2025 11:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ASM Application Security Monitoring
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants