Skip to content

Conversation

mabdinur
Copy link
Contributor

@mabdinur mabdinur commented Aug 26, 2025

Changes

  • Added _dd.p.ksr tag to all sampled spans via single span, priority, and trace sampling
  • Propagated sample rate metadata through distributed traces for backend processing

Motivation

  • Enables backend to recompute sampling rates using propagated metadata
  • Improves sampling accuracy across distributed trace boundaries
  • Internal change with no customer-facing impact so a release note is not required

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

Copy link
Contributor

github-actions bot commented Aug 26, 2025

CODEOWNERS have been resolved as:

ddtrace/internal/constants.py                                           @DataDog/apm-core-python
ddtrace/internal/sampling.py                                            @DataDog/apm-sdk-api-python
ddtrace/propagation/http.py                                             @DataDog/apm-sdk-api-python
tests/snapshots/test_sampling_with_default_sample_rate_1.json           @DataDog/apm-python
tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_0.json  @DataDog/apm-python
tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_1.json  @DataDog/apm-python
tests/snapshots/test_sampling_with_default_sample_rate_tiny.json        @DataDog/apm-python
tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_0.json  @DataDog/apm-python
tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_3_and_rule_0.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_integration_snapshots.test_sampling.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_keep.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_reject.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_match_star.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_glob_multi_rule.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_resource.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_string_sample_rate.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_name_glob.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource_glob.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_service_glob.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob_insensitive_case_match.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_partial_match.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_None.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_None_meta.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_metrics.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_tags_none.json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[false].json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true].json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_paritial_flushing[false].json  @DataDog/apm-python
tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_paritial_flushing[true].json  @DataDog/apm-python
tests/snapshots/tests.integration.test_trace_stats.test_single_span_sampling[sampling_rule1].json  @DataDog/apm-python

Copy link
Contributor

github-actions bot commented Aug 26, 2025

Bootstrap import analysis

Comparison of import times between this PR and base.

Summary

The average import time from this PR is: 267 ± 3 ms.

The average import time from base is: 269 ± 3 ms.

The import time difference between this PR and base is: -2.1 ± 0.1 ms.

Import time breakdown

The following import paths have shrunk:

ddtrace.auto 2.026 ms (0.76%)
ddtrace.bootstrap.sitecustomize 1.352 ms (0.51%)
ddtrace.bootstrap.preload 1.352 ms (0.51%)
ddtrace.internal.remoteconfig.client 0.637 ms (0.24%)
ddtrace 0.675 ms (0.25%)
ddtrace.internal._unpatched 0.029 ms (0.01%)
json 0.029 ms (0.01%)
json.decoder 0.029 ms (0.01%)
re 0.029 ms (0.01%)
enum 0.029 ms (0.01%)
types 0.029 ms (0.01%)

@mabdinur mabdinur changed the title chore(sampling): track kneuth sampling in distributed trace chore(sampling): track knuth sampling in distributed trace Aug 26, 2025
@mabdinur mabdinur marked this pull request as ready for review August 26, 2025 22:51
@mabdinur mabdinur requested review from a team as code owners August 26, 2025 22:51
@brettlangdon brettlangdon added the changelog/no-changelog A changelog entry is not required for this PR. label Aug 26, 2025
Comment on lines 148 to +149
span.set_metric(_SINGLE_SPAN_SAMPLING_RATE, self._sample_rate)
span.set_metric(KNUTH_SAMPLE_RATE_KEY, self._sample_rate)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why have two tags for the exact same value?

@pr-commenter
Copy link

pr-commenter bot commented Aug 27, 2025

Performance SLOs

Candidate: munir/track-sampling-ksr (eba4f14)

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

🔵 No baseline data available for this suite

⚠️ context_with_data_listeners

Time: ⚠️ 13.453µs (SLO: <20.000µs 📉 -32.7%)

Memory: ✅ 31.261MB (SLO: <33.500MB -6.7%)


✅ context_with_data_no_listeners

Time: ✅ 3.375µs (SLO: <10.000µs 📉 -66.3%)

Memory: ✅ 31.300MB (SLO: <33.500MB -6.6%)


⚠️ context_with_data_only_all_listeners

Time: ⚠️ 13.414µs (SLO: <20.000µs 📉 -32.9%)

Memory: ✅ 31.261MB (SLO: <33.500MB -6.7%)


✅ get_item_exists

Time: ✅ 0.534µs (SLO: <10.000µs 📉 -94.7%)

Memory: ✅ 31.300MB (SLO: <33.500MB -6.6%)


✅ get_item_missing

Time: ✅ 0.533µs (SLO: <10.000µs 📉 -94.7%)

Memory: ✅ 31.339MB (SLO: <33.500MB -6.4%)


✅ set_item

Time: ✅ 24.192µs (SLO: <30.000µs 📉 -19.4%)

Memory: ✅ 31.339MB (SLO: <33.500MB -6.4%)


🔵 djangosimple - 24/24

🔵 No baseline data available for this suite

✅ appsec

Time: ✅ 20.697ms (SLO: <22.300ms -7.2%)

Memory: ✅ 64.291MB (SLO: <66.000MB -2.6%)


✅ exception-replay-enabled

Time: ✅ 1.364ms (SLO: <1.450ms -5.9%)

Memory: ✅ 63.268MB (SLO: <66.000MB -4.1%)


✅ iast

Time: ✅ 20.661ms (SLO: <22.250ms -7.1%)

Memory: ✅ 64.271MB (SLO: <66.000MB -2.6%)


✅ profiler

Time: ✅ 15.222ms (SLO: <16.550ms -8.0%)

Memory: ✅ 52.798MB (SLO: <53.500MB 🟡 -1.3%)


✅ span-code-origin

Time: ✅ 26.253ms (SLO: <28.200ms -6.9%)

Memory: ✅ 66.270MB (SLO: <68.500MB -3.3%)


✅ tracer

Time: ✅ 20.648ms (SLO: <21.750ms -5.1%)

Memory: ✅ 64.369MB (SLO: <66.000MB -2.5%)


✅ tracer-and-profiler

Time: ✅ 22.272ms (SLO: <23.500ms -5.2%)

Memory: ✅ 65.299MB (SLO: <67.000MB -2.5%)


✅ tracer-dont-create-db-spans

Time: ✅ 19.454ms (SLO: <21.500ms -9.5%)

Memory: ✅ 64.366MB (SLO: <66.000MB -2.5%)


✅ tracer-no-caches

Time: ✅ 18.561ms (SLO: <19.650ms -5.5%)

Memory: ✅ 63.956MB (SLO: <66.000MB -3.1%)


✅ tracer-no-databases

Time: ✅ 18.963ms (SLO: <20.100ms -5.7%)

Memory: ✅ 63.956MB (SLO: <66.000MB -3.1%)


✅ tracer-no-middleware

Time: ✅ 20.398ms (SLO: <21.500ms -5.1%)

Memory: ✅ 64.309MB (SLO: <66.000MB -2.6%)


✅ tracer-no-templates

Time: ✅ 20.455ms (SLO: <22.000ms -7.0%)

Memory: ✅ 64.329MB (SLO: <66.000MB -2.5%)


🔵 errortrackingdjangosimple - 6/6

🔵 No baseline data available for this suite

✅ errortracking-enabled-all

Time: ✅ 18.136ms (SLO: <19.850ms -8.6%)

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


✅ errortracking-enabled-user

Time: ✅ 18.215ms (SLO: <19.400ms -6.1%)

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


✅ tracer-enabled

Time: ✅ 18.189ms (SLO: <19.450ms -6.5%)

Memory: ✅ 64.250MB (SLO: <65.500MB 🟡 -1.9%)


🔵 errortrackingflasksqli - 6/6

🔵 No baseline data available for this suite

✅ errortracking-enabled-all

Time: ✅ 2.123ms (SLO: <2.300ms -7.7%)

Memory: ✅ 51.007MB (SLO: <53.500MB -4.7%)


✅ errortracking-enabled-user

Time: ✅ 2.099ms (SLO: <2.250ms -6.7%)

Memory: ✅ 51.046MB (SLO: <53.500MB -4.6%)


✅ tracer-enabled

Time: ✅ 2.104ms (SLO: <2.300ms -8.5%)

Memory: ✅ 51.026MB (SLO: <53.500MB -4.6%)


🔵 flasksimple - 15/15

🔵 No baseline data available for this suite

✅ appsec-get

Time: ✅ 4.595ms (SLO: <4.750ms -3.3%)

Memory: ✅ 61.735MB (SLO: <64.500MB -4.3%)


✅ appsec-post

Time: ✅ 6.635ms (SLO: <6.750ms 🟡 -1.7%)

Memory: ✅ 62.089MB (SLO: <64.500MB -3.7%)


✅ appsec-telemetry

Time: ✅ 4.600ms (SLO: <4.750ms -3.2%)

Memory: ✅ 61.755MB (SLO: <64.500MB -4.3%)


✅ debugger

Time: ✅ 1.865ms (SLO: <2.000ms -6.8%)

Memory: ✅ 44.591MB (SLO: <45.000MB 🟡 -0.9%)


✅ iast-get

Time: ✅ 1.883ms (SLO: <2.000ms -5.9%)

Memory: ✅ 41.583MB (SLO: <49.000MB 📉 -15.1%)


✅ profiler

Time: ✅ 1.919ms (SLO: <2.100ms -8.6%)

Memory: ✅ 44.178MB (SLO: <46.500MB -5.0%)


✅ tracer

Time: ✅ 3.380ms (SLO: <3.650ms -7.4%)

Memory: ✅ 51.197MB (SLO: <53.500MB -4.3%)


🔵 flasksqli - 6/6

🔵 No baseline data available for this suite

✅ appsec-enabled

Time: ✅ 3.963ms (SLO: <4.200ms -5.6%)

Memory: ✅ 62.038MB (SLO: <66.000MB -6.0%)


✅ iast-enabled

Time: ✅ 2.530ms (SLO: <2.800ms -9.6%)

Memory: ✅ 57.558MB (SLO: <59.000MB -2.4%)


✅ tracer-enabled

Time: ✅ 2.093ms (SLO: <2.250ms -7.0%)

Memory: ✅ 51.087MB (SLO: <53.500MB -4.5%)


🔵 httppropagationextract - 60/60

🔵 No baseline data available for this suite

✅ all_styles_all_headers

Time: ✅ 82.889µs (SLO: <100.000µs 📉 -17.1%)

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


✅ b3_headers

Time: ✅ 14.290µs (SLO: <20.000µs 📉 -28.6%)

Memory: ✅ 31.438MB (SLO: <33.500MB -6.2%)


✅ b3_single_headers

Time: ✅ 13.446µs (SLO: <20.000µs 📉 -32.8%)

Memory: ✅ 31.438MB (SLO: <33.500MB -6.2%)


✅ datadog_tracecontext_tracestate_not_propagated_on_trace_id_no_match

Time: ✅ 64.866µs (SLO: <80.000µs 📉 -18.9%)

Memory: ✅ 31.438MB (SLO: <33.500MB -6.2%)


✅ datadog_tracecontext_tracestate_propagated_on_trace_id_match

Time: ✅ 67.167µs (SLO: <80.000µs 📉 -16.0%)

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


✅ empty_headers

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

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


✅ full_t_id_datadog_headers

Time: ✅ 23.771µs (SLO: <30.000µs 📉 -20.8%)

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ invalid_priority_header

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

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


✅ invalid_span_id_header

Time: ✅ 6.561µs (SLO: <10.000µs 📉 -34.4%)

Memory: ✅ 31.359MB (SLO: <33.500MB -6.4%)


✅ invalid_tags_header

Time: ✅ 6.561µs (SLO: <10.000µs 📉 -34.4%)

Memory: ✅ 31.379MB (SLO: <33.500MB -6.3%)


✅ invalid_trace_id_header

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

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ large_header_no_matches

Time: ✅ 27.646µs (SLO: <30.000µs -7.8%)

Memory: ✅ 31.359MB (SLO: <33.500MB -6.4%)


✅ large_valid_headers_all

Time: ✅ 28.744µs (SLO: <40.000µs 📉 -28.1%)

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ medium_header_no_matches

Time: ✅ 9.807µs (SLO: <20.000µs 📉 -51.0%)

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ medium_valid_headers_all

Time: ✅ 11.281µs (SLO: <20.000µs 📉 -43.6%)

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


✅ none_propagation_style

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

Memory: ✅ 31.438MB (SLO: <33.500MB -6.2%)


✅ tracecontext_headers

Time: ✅ 35.717µs (SLO: <40.000µs 📉 -10.7%)

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ valid_headers_all

Time: ✅ 6.602µs (SLO: <10.000µs 📉 -34.0%)

Memory: ✅ 31.359MB (SLO: <33.500MB -6.4%)


✅ valid_headers_basic

Time: ✅ 6.157µs (SLO: <10.000µs 📉 -38.4%)

Memory: ✅ 31.339MB (SLO: <33.500MB -6.4%)


✅ wsgi_empty_headers

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

Memory: ✅ 31.438MB (SLO: <33.500MB -6.2%)


✅ wsgi_invalid_priority_header

Time: ✅ 6.641µs (SLO: <10.000µs 📉 -33.6%)

Memory: ✅ 31.438MB (SLO: <33.500MB -6.2%)


✅ wsgi_invalid_span_id_header

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

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ wsgi_invalid_tags_header

Time: ✅ 6.601µs (SLO: <10.000µs 📉 -34.0%)

Memory: ✅ 31.457MB (SLO: <33.500MB -6.1%)


✅ wsgi_invalid_trace_id_header

Time: ✅ 6.603µs (SLO: <10.000µs 📉 -34.0%)

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


✅ wsgi_large_header_no_matches

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

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ wsgi_large_valid_headers_all

Time: ✅ 29.878µs (SLO: <40.000µs 📉 -25.3%)

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ wsgi_medium_header_no_matches

Time: ✅ 10.123µs (SLO: <20.000µs 📉 -49.4%)

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ wsgi_medium_valid_headers_all

Time: ✅ 11.522µs (SLO: <20.000µs 📉 -42.4%)

Memory: ✅ 31.339MB (SLO: <33.500MB -6.4%)


✅ wsgi_valid_headers_all

Time: ✅ 6.608µs (SLO: <10.000µs 📉 -33.9%)

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


✅ wsgi_valid_headers_basic

Time: ✅ 6.146µs (SLO: <10.000µs 📉 -38.5%)

Memory: ✅ 31.379MB (SLO: <33.500MB -6.3%)


🔵 httppropagationinject - 16/16

🔵 No baseline data available for this suite

✅ ids_only

Time: ✅ 22.236µs (SLO: <30.000µs 📉 -25.9%)

Memory: ✅ 31.438MB (SLO: <33.500MB -6.2%)


✅ with_all

Time: ✅ 35.103µs (SLO: <40.000µs 📉 -12.2%)

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ with_dd_origin

Time: ✅ 28.504µs (SLO: <30.000µs -5.0%)

Memory: ✅ 31.418MB (SLO: <33.500MB -6.2%)


✅ with_priority_and_origin

Time: ✅ 28.791µs (SLO: <40.000µs 📉 -28.0%)

Memory: ✅ 31.379MB (SLO: <33.500MB -6.3%)


✅ with_sampling_priority

Time: ✅ 21.892µs (SLO: <30.000µs 📉 -27.0%)

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


✅ with_tags

Time: ✅ 30.830µs (SLO: <40.000µs 📉 -22.9%)

Memory: ✅ 31.438MB (SLO: <33.500MB -6.2%)


✅ with_tags_invalid

Time: ✅ 33.768µs (SLO: <40.000µs 📉 -15.6%)

Memory: ✅ 31.379MB (SLO: <33.500MB -6.3%)


✅ with_tags_max_size

Time: ✅ 30.794µs (SLO: <40.000µs 📉 -23.0%)

Memory: ✅ 31.398MB (SLO: <33.500MB -6.3%)


🔵 iast_aspects - 40/40

🔵 No baseline data available for this suite

✅ re_expand_aspect

Time: ✅ 33.256µs (SLO: <40.000µs 📉 -16.9%)

Memory: ✅ 36.923MB (SLO: <39.000MB -5.3%)


✅ re_expand_noaspect

Time: ✅ 30.109µs (SLO: <40.000µs 📉 -24.7%)

Memory: ✅ 36.844MB (SLO: <39.000MB -5.5%)


✅ re_findall_aspect

Time: ✅ 3.661µs (SLO: <10.000µs 📉 -63.4%)

Memory: ✅ 36.844MB (SLO: <39.000MB -5.5%)


✅ re_findall_noaspect

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

Memory: ✅ 36.844MB (SLO: <39.000MB -5.5%)


✅ re_finditer_aspect

Time: ✅ 5.055µs (SLO: <10.000µs 📉 -49.4%)

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


✅ re_finditer_noaspect

Time: ✅ 1.401µs (SLO: <10.000µs 📉 -86.0%)

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


✅ re_fullmatch_aspect

Time: ✅ 3.334µs (SLO: <10.000µs 📉 -66.7%)

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


✅ re_fullmatch_noaspect

Time: ✅ 1.302µs (SLO: <10.000µs 📉 -87.0%)

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


✅ re_group_aspect

Time: ✅ 3.390µs (SLO: <10.000µs 📉 -66.1%)

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


✅ re_group_noaspect

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

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


✅ re_groups_aspect

Time: ✅ 3.563µs (SLO: <10.000µs 📉 -64.4%)

Memory: ✅ 36.943MB (SLO: <39.000MB -5.3%)


✅ re_groups_noaspect

Time: ✅ 1.681µs (SLO: <10.000µs 📉 -83.2%)

Memory: ✅ 36.844MB (SLO: <39.000MB -5.5%)


✅ re_match_aspect

Time: ✅ 3.392µs (SLO: <10.000µs 📉 -66.1%)

Memory: ✅ 36.844MB (SLO: <39.000MB -5.5%)


✅ re_match_noaspect

Time: ✅ 1.301µs (SLO: <10.000µs 📉 -87.0%)

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


✅ re_search_aspect

Time: ✅ 3.254µs (SLO: <10.000µs 📉 -67.5%)

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


✅ re_search_noaspect

Time: ✅ 1.203µs (SLO: <10.000µs 📉 -88.0%)

Memory: ✅ 36.884MB (SLO: <39.000MB -5.4%)


✅ re_sub_aspect

Time: ✅ 4.599µs (SLO: <10.000µs 📉 -54.0%)

Memory: ✅ 36.844MB (SLO: <39.000MB -5.5%)


✅ re_sub_noaspect

Time: ✅ 1.532µs (SLO: <10.000µs 📉 -84.7%)

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


✅ re_subn_aspect

Time: ✅ 4.846µs (SLO: <10.000µs 📉 -51.5%)

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


✅ re_subn_noaspect

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

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


🔵 iastaspects - 118/118

🔵 No baseline data available for this suite

✅ add_aspect

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

Memory: ✅ 37.179MB (SLO: <39.000MB -4.7%)


✅ add_inplace_aspect

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

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ add_inplace_noaspect

Time: ✅ 0.320µs (SLO: <10.000µs 📉 -96.8%)

Memory: ✅ 37.139MB (SLO: <39.000MB -4.8%)


✅ add_noaspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ bytearray_aspect

Time: ✅ 1.822µs (SLO: <10.000µs 📉 -81.8%)

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ bytearray_extend_aspect

Time: ✅ 1.371µs (SLO: <10.000µs 📉 -86.3%)

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ bytearray_extend_noaspect

Time: ✅ 0.613µs (SLO: <10.000µs 📉 -93.9%)

Memory: ✅ 37.159MB (SLO: <39.000MB -4.7%)


✅ bytearray_noaspect

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

Memory: ✅ 37.198MB (SLO: <39.000MB -4.6%)


✅ bytes_aspect

Time: ✅ 1.844µs (SLO: <10.000µs 📉 -81.6%)

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ bytes_noaspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ bytesio_aspect

Time: ✅ 1.880µs (SLO: <10.000µs 📉 -81.2%)

Memory: ✅ 37.198MB (SLO: <39.000MB -4.6%)


✅ bytesio_noaspect

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

Memory: ✅ 37.100MB (SLO: <39.000MB -4.9%)


✅ capitalize_aspect

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

Memory: ✅ 37.297MB (SLO: <39.000MB -4.4%)


✅ capitalize_noaspect

Time: ✅ 0.436µs (SLO: <10.000µs 📉 -95.6%)

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ casefold_aspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ casefold_noaspect

Time: ✅ 0.365µs (SLO: <10.000µs 📉 -96.4%)

Memory: ✅ 37.198MB (SLO: <39.000MB -4.6%)


✅ decode_aspect

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

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ decode_noaspect

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

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ encode_aspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ encode_noaspect

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

Memory: ✅ 37.198MB (SLO: <39.000MB -4.6%)


✅ format_aspect

Time: ✅ 3.413µs (SLO: <10.000µs 📉 -65.9%)

Memory: ✅ 37.179MB (SLO: <39.000MB -4.7%)


✅ format_map_aspect

Time: ✅ 3.232µs (SLO: <10.000µs 📉 -67.7%)

Memory: ✅ 37.297MB (SLO: <39.000MB -4.4%)


✅ format_map_noaspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ format_noaspect

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

Memory: ✅ 37.198MB (SLO: <39.000MB -4.6%)


✅ index_aspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ index_noaspect

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

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ join_aspect

Time: ✅ 1.227µs (SLO: <10.000µs 📉 -87.7%)

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ join_noaspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ ljust_aspect

Time: ✅ 10.225µs (SLO: <20.000µs 📉 -48.9%)

Memory: ✅ 37.356MB (SLO: <39.000MB -4.2%)


✅ ljust_noaspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ lower_aspect

Time: ✅ 2.253µs (SLO: <10.000µs 📉 -77.5%)

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ lower_noaspect

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

Memory: ✅ 37.159MB (SLO: <39.000MB -4.7%)


✅ lstrip_aspect

Time: ✅ 10.382µs (SLO: <20.000µs 📉 -48.1%)

Memory: ✅ 37.336MB (SLO: <39.000MB -4.3%)


✅ lstrip_noaspect

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

Memory: ✅ 37.159MB (SLO: <39.000MB -4.7%)


✅ modulo_aspect

Time: ✅ 0.928µs (SLO: <10.000µs 📉 -90.7%)

Memory: ✅ 37.159MB (SLO: <39.000MB -4.7%)


✅ modulo_aspect_for_bytearray_bytearray

Time: ✅ 1.443µs (SLO: <10.000µs 📉 -85.6%)

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ modulo_aspect_for_bytes

Time: ✅ 0.917µs (SLO: <10.000µs 📉 -90.8%)

Memory: ✅ 37.198MB (SLO: <39.000MB -4.6%)


✅ modulo_aspect_for_bytes_bytearray

Time: ✅ 1.132µs (SLO: <10.000µs 📉 -88.7%)

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ modulo_noaspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ replace_aspect

Time: ✅ 4.611µs (SLO: <10.000µs 📉 -53.9%)

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ replace_noaspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ repr_aspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ repr_noaspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ rstrip_aspect

Time: ✅ 10.141µs (SLO: <20.000µs 📉 -49.3%)

Memory: ✅ 37.336MB (SLO: <39.000MB -4.3%)


✅ rstrip_noaspect

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

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ slice_aspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ slice_noaspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ stringio_aspect

Time: ✅ 2.176µs (SLO: <10.000µs 📉 -78.2%)

Memory: ✅ 37.179MB (SLO: <39.000MB -4.7%)


✅ stringio_noaspect

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

Memory: ✅ 37.297MB (SLO: <39.000MB -4.4%)


✅ strip_aspect

Time: ✅ 10.247µs (SLO: <20.000µs 📉 -48.8%)

Memory: ✅ 37.316MB (SLO: <39.000MB -4.3%)


✅ strip_noaspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ swapcase_aspect

Time: ✅ 2.449µs (SLO: <10.000µs 📉 -75.5%)

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ swapcase_noaspect

Time: ✅ 0.532µs (SLO: <10.000µs 📉 -94.7%)

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ title_aspect

Time: ✅ 2.403µs (SLO: <10.000µs 📉 -76.0%)

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ title_noaspect

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

Memory: ✅ 37.198MB (SLO: <39.000MB -4.6%)


✅ translate_aspect

Time: ✅ 3.291µs (SLO: <10.000µs 📉 -67.1%)

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ translate_noaspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ upper_aspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


✅ upper_noaspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


🔵 iastaspectsospath - 24/24

🔵 No baseline data available for this suite

✅ ospathbasename_aspect

Time: ✅ 4.958µs (SLO: <10.000µs 📉 -50.4%)

Memory: ✅ 36.844MB (SLO: <39.000MB -5.5%)


✅ ospathbasename_noaspect

Time: ✅ 1.062µs (SLO: <10.000µs 📉 -89.4%)

Memory: ✅ 36.884MB (SLO: <39.000MB -5.4%)


✅ ospathjoin_aspect

Time: ✅ 6.824µs (SLO: <10.000µs 📉 -31.8%)

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


✅ ospathjoin_noaspect

Time: ✅ 2.318µs (SLO: <10.000µs 📉 -76.8%)

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


✅ ospathnormcase_aspect

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

Memory: ✅ 36.844MB (SLO: <39.000MB -5.5%)


✅ ospathnormcase_noaspect

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

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


✅ ospathsplit_aspect

Time: ✅ 4.668µs (SLO: <10.000µs 📉 -53.3%)

Memory: ✅ 36.903MB (SLO: <39.000MB -5.4%)


✅ ospathsplit_noaspect

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

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


✅ ospathsplitdrive_aspect

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

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


✅ ospathsplitdrive_noaspect

Time: ✅ 0.700µs (SLO: <10.000µs 📉 -93.0%)

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


✅ ospathsplitext_aspect

Time: ✅ 4.825µs (SLO: <10.000µs 📉 -51.8%)

Memory: ✅ 36.943MB (SLO: <39.000MB -5.3%)


✅ ospathsplitext_noaspect

Time: ✅ 1.370µs (SLO: <10.000µs 📉 -86.3%)

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


🔵 iastaspectssplit - 12/12

🔵 No baseline data available for this suite

✅ rsplit_aspect

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

Memory: ✅ 37.238MB (SLO: <39.000MB -4.5%)


✅ rsplit_noaspect

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

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ split_aspect

Time: ✅ 1.438µs (SLO: <10.000µs 📉 -85.6%)

Memory: ✅ 37.257MB (SLO: <39.000MB -4.5%)


✅ split_noaspect

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

Memory: ✅ 37.297MB (SLO: <39.000MB -4.4%)


✅ splitlines_aspect

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

Memory: ✅ 37.198MB (SLO: <39.000MB -4.6%)


✅ splitlines_noaspect

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

Memory: ✅ 37.218MB (SLO: <39.000MB -4.6%)


🔵 iastpropagation - 8/8

🔵 No baseline data available for this suite

✅ no-propagation

Time: ✅ 48.849µs (SLO: <60.000µs 📉 -18.6%)

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


✅ propagation_enabled

Time: ✅ 144.190µs (SLO: <160.000µs -9.9%)

Memory: ✅ 36.903MB (SLO: <39.000MB -5.4%)


✅ propagation_enabled_100

Time: ✅ 1.572ms (SLO: <1.800ms 📉 -12.7%)

Memory: ✅ 36.903MB (SLO: <39.000MB -5.4%)


✅ propagation_enabled_1000

Time: ✅ 29.201ms (SLO: <30.550ms -4.4%)

Memory: ✅ 36.864MB (SLO: <39.000MB -5.5%)


🔵 otelsdkspan - 24/24

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 40.944ms (SLO: <42.000ms -2.5%)

Memory: ✅ 34.170MB (SLO: <39.000MB 📉 -12.4%)


✅ add-link

Time: ✅ 36.156ms (SLO: <38.550ms -6.2%)

Memory: ✅ 34.151MB (SLO: <39.000MB 📉 -12.4%)


✅ add-metrics

Time: ✅ 219.010ms (SLO: <232.000ms -5.6%)

Memory: ✅ 34.131MB (SLO: <39.000MB 📉 -12.5%)


✅ add-tags

Time: ✅ 210.955ms (SLO: <221.600ms -4.8%)

Memory: ✅ 34.111MB (SLO: <39.000MB 📉 -12.5%)


✅ get-context

Time: ✅ 29.138ms (SLO: <31.300ms -6.9%)

Memory: ✅ 34.170MB (SLO: <39.000MB 📉 -12.4%)


✅ is-recording

Time: ✅ 29.149ms (SLO: <31.000ms -6.0%)

Memory: ✅ 34.151MB (SLO: <39.000MB 📉 -12.4%)


✅ record-exception

Time: ✅ 63.072ms (SLO: <65.850ms -4.2%)

Memory: ✅ 34.190MB (SLO: <39.000MB 📉 -12.3%)


✅ set-status

Time: ✅ 31.815ms (SLO: <34.150ms -6.8%)

Memory: ✅ 34.151MB (SLO: <39.000MB 📉 -12.4%)


✅ start

Time: ✅ 29.230ms (SLO: <30.150ms -3.1%)

Memory: ✅ 34.170MB (SLO: <39.000MB 📉 -12.4%)


✅ start-finish

Time: ✅ 34.173ms (SLO: <35.350ms -3.3%)

Memory: ✅ 34.131MB (SLO: <39.000MB 📉 -12.5%)


✅ start-finish-telemetry

Time: ✅ 33.933ms (SLO: <35.450ms -4.3%)

Memory: ✅ 34.131MB (SLO: <39.000MB 📉 -12.5%)


✅ update-name

Time: ✅ 30.956ms (SLO: <33.400ms -7.3%)

Memory: ✅ 34.190MB (SLO: <39.000MB 📉 -12.3%)


🔵 otelspan - 22/22

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 45.147ms (SLO: <47.150ms -4.2%)

Memory: ✅ 44.337MB (SLO: <46.500MB -4.7%)


✅ add-metrics

Time: ✅ 320.100ms (SLO: <344.800ms -7.2%)

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


✅ add-tags

Time: ✅ 293.179ms (SLO: <314.000ms -6.6%)

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


✅ get-context

Time: ✅ 87.285ms (SLO: <92.350ms -5.5%)

Memory: ✅ 39.539MB (SLO: <46.500MB 📉 -15.0%)


✅ is-recording

Time: ✅ 43.165ms (SLO: <44.500ms -3.0%)

Memory: ✅ 43.811MB (SLO: <46.500MB -5.8%)


✅ record-exception

Time: ✅ 61.519ms (SLO: <67.650ms -9.1%)

Memory: ✅ 39.864MB (SLO: <46.500MB 📉 -14.3%)


✅ set-status

Time: ✅ 48.798ms (SLO: <50.400ms -3.2%)

Memory: ✅ 43.840MB (SLO: <46.500MB -5.7%)


✅ start

Time: ✅ 42.260ms (SLO: <43.450ms -2.7%)

Memory: ✅ 43.843MB (SLO: <46.500MB -5.7%)


✅ start-finish

Time: ✅ 82.203ms (SLO: <88.000ms -6.6%)

Memory: ✅ 33.777MB (SLO: <46.500MB 📉 -27.4%)


✅ start-finish-telemetry

Time: ✅ 83.416ms (SLO: <89.000ms -6.3%)

Memory: ✅ 33.679MB (SLO: <46.500MB 📉 -27.6%)


✅ update-name

Time: ✅ 44.226ms (SLO: <45.150ms -2.0%)

Memory: ✅ 44.153MB (SLO: <46.500MB -5.0%)


🔵 packagespackageforrootmodulemapping - 4/4

🔵 No baseline data available for this suite

✅ cache_off

Time: ✅ 340.991ms (SLO: <354.300ms -3.8%)

Memory: ✅ 37.483MB (SLO: <40.000MB -6.3%)


✅ cache_on

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

Memory: ✅ 35.253MB (SLO: <39.000MB -9.6%)


🔵 packagesupdateimporteddependencies - 24/24

🔵 No baseline data available for this suite

✅ import_many

Time: ✅ 155.385µs (SLO: <170.000µs -8.6%)

Memory: ✅ 36.260MB (SLO: <38.500MB -5.8%)


✅ import_many_cached

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

Memory: ✅ 36.370MB (SLO: <38.500MB -5.5%)


✅ import_many_stdlib

Time: ✅ 1.614ms (SLO: <1.750ms -7.7%)

Memory: ✅ 36.200MB (SLO: <38.500MB -6.0%)


✅ import_many_stdlib_cached

Time: ✅ 0.970ms (SLO: <1.100ms 📉 -11.8%)

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


✅ import_many_unknown

Time: ✅ 830.814µs (SLO: <890.000µs -6.7%)

Memory: ✅ 36.107MB (SLO: <38.500MB -6.2%)


✅ import_many_unknown_cached

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

Memory: ✅ 36.023MB (SLO: <38.500MB -6.4%)


✅ import_one

Time: ✅ 19.747µs (SLO: <30.000µs 📉 -34.2%)

Memory: ✅ 36.227MB (SLO: <39.000MB -7.1%)


✅ import_one_cache

Time: ✅ 6.253µs (SLO: <10.000µs 📉 -37.5%)

Memory: ✅ 36.002MB (SLO: <38.500MB -6.5%)


✅ import_one_stdlib

Time: ✅ 18.597µs (SLO: <20.000µs -7.0%)

Memory: ✅ 36.004MB (SLO: <38.500MB -6.5%)


✅ import_one_stdlib_cache

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

Memory: ✅ 36.086MB (SLO: <38.500MB -6.3%)


✅ import_one_unknown

Time: ✅ 45.493µs (SLO: <50.000µs -9.0%)

Memory: ✅ 36.447MB (SLO: <38.500MB -5.3%)


✅ import_one_unknown_cache

Time: ✅ 6.288µs (SLO: <10.000µs 📉 -37.1%)

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


🔵 ratelimiter - 12/12

🔵 No baseline data available for this suite

✅ defaults

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

Memory: ✅ 30.966MB (SLO: <34.000MB -8.9%)


✅ high_rate_limit

Time: ✅ 2.430µs (SLO: <10.000µs 📉 -75.7%)

Memory: ✅ 30.926MB (SLO: <34.000MB -9.0%)


✅ long_window

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

Memory: ✅ 30.985MB (SLO: <34.000MB -8.9%)


✅ low_rate_limit

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

Memory: ✅ 30.907MB (SLO: <34.000MB -9.1%)


✅ no_rate_limit

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

Memory: ✅ 30.946MB (SLO: <34.000MB -9.0%)


✅ short_window

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

Memory: ✅ 30.946MB (SLO: <34.000MB -9.0%)


🔵 recursivecomputation - 8/8

🔵 No baseline data available for this suite

✅ deep

Time: ✅ 309.214ms (SLO: <320.950ms -3.7%)

Memory: ✅ 32.381MB (SLO: <34.500MB -6.1%)


✅ deep-profiled

Time: ✅ 325.902ms (SLO: <359.150ms -9.3%)

Memory: ✅ 35.036MB (SLO: <39.000MB 📉 -10.2%)


✅ medium

Time: ✅ 7.081ms (SLO: <7.400ms -4.3%)

Memory: ✅ 31.241MB (SLO: <34.000MB -8.1%)


✅ shallow

Time: ✅ 0.952ms (SLO: <1.050ms -9.3%)

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


🔵 samplingrules - 8/8

🔵 No baseline data available for this suite

✅ average_match

Time: ✅ 276.041µs (SLO: <290.000µs -4.8%)

Memory: ✅ 31.241MB (SLO: <34.000MB -8.1%)


✅ high_match

Time: ✅ 446.830µs (SLO: <480.000µs -6.9%)

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


✅ low_match

Time: ✅ 111.332µs (SLO: <120.000µs -7.2%)

Memory: ✅ 631.770MB (SLO: <700.000MB -9.7%)


✅ very_low_match

Time: ✅ 7.744ms (SLO: <8.500ms -8.9%)

Memory: ✅ 69.425MB (SLO: <75.000MB -7.4%)


🔵 sethttpmeta - 32/32

🔵 No baseline data available for this suite

✅ all-disabled

Time: ✅ 12.313µs (SLO: <20.000µs 📉 -38.4%)

Memory: ✅ 31.831MB (SLO: <34.000MB -6.4%)


✅ all-enabled

Time: ✅ 42.299µs (SLO: <50.000µs 📉 -15.4%)

Memory: ✅ 31.811MB (SLO: <34.000MB -6.4%)


✅ collectipvariant_exists

Time: ✅ 42.948µs (SLO: <50.000µs 📉 -14.1%)

Memory: ✅ 31.811MB (SLO: <34.000MB -6.4%)


✅ no-collectipvariant

Time: ✅ 42.072µs (SLO: <50.000µs 📉 -15.9%)

Memory: ✅ 31.752MB (SLO: <34.000MB -6.6%)


✅ no-useragentvariant

Time: ✅ 41.495µs (SLO: <50.000µs 📉 -17.0%)

Memory: ✅ 31.792MB (SLO: <34.000MB -6.5%)


✅ obfuscation-no-query

Time: ✅ 42.499µs (SLO: <50.000µs 📉 -15.0%)

Memory: ✅ 31.831MB (SLO: <34.000MB -6.4%)


✅ obfuscation-regular-case-explicit-query

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

Memory: ✅ 32.185MB (SLO: <34.000MB -5.3%)


✅ obfuscation-regular-case-implicit-query

Time: ✅ 79.390µs (SLO: <90.000µs 📉 -11.8%)

Memory: ✅ 32.086MB (SLO: <34.000MB -5.6%)


✅ obfuscation-send-querystring-disabled

Time: ✅ 157.168µs (SLO: <170.000µs -7.5%)

Memory: ✅ 32.185MB (SLO: <34.500MB -6.7%)


✅ obfuscation-worst-case-explicit-query

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

Memory: ✅ 32.204MB (SLO: <34.500MB -6.7%)


✅ obfuscation-worst-case-implicit-query

Time: ✅ 157.452µs (SLO: <170.000µs -7.4%)

Memory: ✅ 32.165MB (SLO: <34.500MB -6.8%)


✅ useragentvariant_exists_1

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

Memory: ✅ 31.792MB (SLO: <34.000MB -6.5%)


✅ useragentvariant_exists_2

Time: ✅ 43.668µs (SLO: <50.000µs 📉 -12.7%)

Memory: ✅ 31.831MB (SLO: <34.000MB -6.4%)


✅ useragentvariant_exists_3

Time: ✅ 41.938µs (SLO: <50.000µs 📉 -16.1%)

Memory: ✅ 31.792MB (SLO: <34.000MB -6.5%)


✅ useragentvariant_not_exists_1

Time: ✅ 42.184µs (SLO: <50.000µs 📉 -15.6%)

Memory: ✅ 31.811MB (SLO: <34.000MB -6.4%)


✅ useragentvariant_not_exists_2

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

Memory: ✅ 31.831MB (SLO: <34.000MB -6.4%)


🔵 span - 26/26

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 24.208ms (SLO: <26.200ms -7.6%)

Memory: ✅ 50.758MB (SLO: <53.000MB -4.2%)


✅ add-metrics

Time: ✅ 91.959ms (SLO: <98.350ms -6.5%)

Memory: ✅ 607.055MB (SLO: <961.000MB 📉 -36.8%)


✅ add-tags

Time: ✅ 150.040ms (SLO: <168.550ms 📉 -11.0%)

Memory: ✅ 607.392MB (SLO: <962.500MB 📉 -36.9%)


✅ get-context

Time: ✅ 22.328ms (SLO: <23.700ms -5.8%)

Memory: ✅ 49.699MB (SLO: <53.000MB -6.2%)


✅ is-recording

Time: ✅ 22.827ms (SLO: <23.900ms -4.5%)

Memory: ✅ 49.638MB (SLO: <53.000MB -6.3%)


✅ record-exception

Time: ✅ 42.719ms (SLO: <44.500ms -4.0%)

Memory: ✅ 42.525MB (SLO: <53.000MB 📉 -19.8%)


✅ set-status

Time: ✅ 24.495ms (SLO: <26.000ms -5.8%)

Memory: ✅ 49.580MB (SLO: <53.000MB -6.5%)


✅ start

Time: ✅ 22.242ms (SLO: <23.500ms -5.4%)

Memory: ✅ 49.641MB (SLO: <53.000MB -6.3%)


✅ start-finish

Time: ✅ 51.378ms (SLO: <55.500ms -7.4%)

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


✅ start-finish-telemetry

Time: ✅ 52.582ms (SLO: <58.300ms -9.8%)

Memory: ✅ 31.261MB (SLO: <34.000MB -8.1%)


✅ start-finish-traceid128

Time: ✅ 54.716ms (SLO: <60.050ms -8.9%)

Memory: ✅ 31.241MB (SLO: <34.000MB -8.1%)


✅ start-traceid128

Time: ✅ 22.883ms (SLO: <24.600ms -7.0%)

Memory: ✅ 49.700MB (SLO: <53.000MB -6.2%)


✅ update-name

Time: ✅ 23.277ms (SLO: <24.100ms -3.4%)

Memory: ✅ 50.292MB (SLO: <53.000MB -5.1%)


🔵 telemetryaddmetric - 30/30

🔵 No baseline data available for this suite

✅ 1-count-metric-1-times

Time: ✅ 3.220µs (SLO: <20.000µs 📉 -83.9%)

Memory: ✅ 31.261MB (SLO: <34.000MB -8.1%)


✅ 1-count-metrics-100-times

Time: ✅ 218.341µs (SLO: <250.000µs 📉 -12.7%)

Memory: ✅ 31.339MB (SLO: <34.000MB -7.8%)


✅ 1-distribution-metric-1-times

Time: ✅ 3.001µs (SLO: <20.000µs 📉 -85.0%)

Memory: ✅ 31.261MB (SLO: <34.000MB -8.1%)


✅ 1-distribution-metrics-100-times

Time: ✅ 206.480µs (SLO: <220.000µs -6.1%)

Memory: ✅ 31.300MB (SLO: <34.000MB -7.9%)


✅ 1-gauge-metric-1-times

Time: ✅ 2.150µs (SLO: <20.000µs 📉 -89.3%)

Memory: ✅ 31.300MB (SLO: <34.000MB -7.9%)


✅ 1-gauge-metrics-100-times

Time: ✅ 124.524µs (SLO: <150.000µs 📉 -17.0%)

Memory: ✅ 31.320MB (SLO: <34.000MB -7.9%)


✅ 1-rate-metric-1-times

Time: ✅ 3.130µs (SLO: <20.000µs 📉 -84.4%)

Memory: ✅ 31.300MB (SLO: <34.000MB -7.9%)


✅ 1-rate-metrics-100-times

Time: ✅ 221.355µs (SLO: <250.000µs 📉 -11.5%)

Memory: ✅ 31.261MB (SLO: <34.000MB -8.1%)


✅ 100-count-metrics-100-times

Time: ✅ 22.605ms (SLO: <23.500ms -3.8%)

Memory: ✅ 31.379MB (SLO: <34.000MB -7.7%)


✅ 100-distribution-metrics-100-times

Time: ✅ 2.058ms (SLO: <2.250ms -8.5%)

Memory: ✅ 31.398MB (SLO: <34.000MB -7.7%)


✅ 100-gauge-metrics-100-times

Time: ✅ 1.277ms (SLO: <1.550ms 📉 -17.6%)

Memory: ✅ 31.320MB (SLO: <34.000MB -7.9%)


✅ 100-rate-metrics-100-times

Time: ✅ 2.251ms (SLO: <2.550ms 📉 -11.7%)

Memory: ✅ 31.280MB (SLO: <34.000MB -8.0%)


✅ flush-1-metric

Time: ✅ 4.253µs (SLO: <20.000µs 📉 -78.7%)

Memory: ✅ 31.241MB (SLO: <34.000MB -8.1%)


✅ flush-100-metrics

Time: ✅ 185.452µs (SLO: <250.000µs 📉 -25.8%)

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


✅ flush-1000-metrics

Time: ✅ 2.225ms (SLO: <2.500ms 📉 -11.0%)

Memory: ✅ 32.421MB (SLO: <34.500MB -6.0%)


🔵 tracer - 6/6

🔵 No baseline data available for this suite

✅ large

Time: ✅ 30.767ms (SLO: <32.950ms -6.6%)

Memory: ✅ 32.853MB (SLO: <34.500MB -4.8%)


✅ medium

Time: ✅ 2.997ms (SLO: <3.200ms -6.3%)

Memory: ✅ 31.300MB (SLO: <34.000MB -7.9%)


✅ small

Time: ✅ 340.282µs (SLO: <370.000µs -8.0%)

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog/no-changelog A changelog entry is not required for this PR.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants