Skip to content

Conversation

avara1986
Copy link
Member

@avara1986 avara1986 commented Jul 18, 2025

Gevent Worker Timeouts with Gunicorn and IAST

We identified an issue where applications using Gunicorn with the Gevent worker class may experience random worker timeouts, particularly during shutdown sequences. A typical command setup might look like:

gunicorn -w 1 --threads 1 -b 0.0.0.0:7777 -k gevent app:app

After extensive testing, we found the issue occurs sporadically in a specific scenario: when endpoint A in the application sends an internal HTTP request to endpoint B using urllib3, as shown below:

http_poolmanager = urllib3.PoolManager(num_pools=1)
response = http_poolmanager.request("GET", "http://localhost:8050/returnheaders")

And later, when calling a /shutdown endpoint to force the tracer to flush spans before exit:

@app.route("/shutdown", methods=["GET"])
def shutdown_view():
    tracer.shutdown()
    return "OK"

Occasionally, this results in a worker timeout, and the trace spans are never sent:

[2025-07-17 13:24:16 +0200] [218095] [DEBUG] GET /shutdown
Shutting down tracer with 4 unfinished spans. Unfinished spans will not be sent to Datadog:
trace_id=1 parent_id=1 span_id=15892328500422422139 name=flask.request resource=GET /shutdown ...
[2025-07-17 13:24:47 +0200] [218086] [CRITICAL] WORKER TIMEOUT (pid:218095)

Root Cause: Gevent monkey patching and IAST modules

IAST was relying on modules like inspect, importlib, and subprocess, which were not correctly released from memory. This led to conflicts between the in-memory versions of these modules and Gevent’s monkey patching mechanism.

✅ Solution 1: Early Initialization via product.post_preload

All IAST initialization logic (including AST-based propagation hooks and monkey patching of sink points) has been moved to the post_preload function to ensure it runs before:

import ddtrace.bootstrap.preload as preload

cleanup_loaded_modules()

Additionally, we’ve removed modules like importlib.metadata from sys.modules to avoid potential conflicts with gevent.

✅ Solution 2: Avoid Late Imports from C Extensions

We also updated a line in the native C code that previously triggered a delayed import:

PyImport_ImportModule("importlib.metadata");

This usage caused importlib.metadata.packages_distributions to be lazily loaded in a way that could not be released or patched properly by Gevent, leading to sporadic blocking and timeouts.

To address this, we refactored the C module to expose a function set_packages_distributions_func, which is now explicitly set from Python space. This gives us better control over when and how importlib.metadata is imported, ensuring compatibility with Gevent’s concurrency model.

✅ Solution 3: Simplifying Taint Sink Initialization in IAST

Finally, these changes also prompted a review of how IAST taint sinks were being loaded. Previously, we relied on a legacy pattern where all taint sink patches were triggered only when hashlib was imported, using the following logic:

when_imported("hashlib")(_on_import_factory(module, "ddtrace.appsec._iast.taint_sinks.%s", raise_errors=False))

However, this mechanism is no longer necessary. Each taint sink module already defines its own lazy instrumentation logic using ModuleWatchdog, like so:

@ModuleWatchdog.after_module_imported(module_name)
def _(module):
    try:
        wrap_object(module, name, FunctionWrapper, (wrapper,))
    except (ImportError, AttributeError):
        log.debug("Module %s.%s does not exist", module_name, name)

Since this approach watches for individual modules (e.g. os, subprocess, etc.) and applies patches independently as they are imported, there's no longer a need to defer sink initialization via a central import like hashlib.

Therefore, we’ve removed the old when_imported("hashlib")(...) setup and now invoke each taint sink’s patch function directly at startup, ensuring:

  • All sinks are registered proactively
  • Lazy wrapping still occurs safely as modules are imported
  • There’s no longer an indirect dependency on unrelated module imports

This results in a more robust and predictable IAST behavior across all use cases.

Summary

  • Gevent requires monkey patching to avoid blocking operations on the main thread.

  • IAST’s dynamic code instrumentation was interfering with this when not initialized early enough.

  • We fixed the issue by:

    • Moving IAST initialization to sitecustomize preload hooks.
    • Cleaning up loaded modules post-instrumentation.
    • Refactoring native code to avoid late, uncontrolled imports.

This change improves stability and prevents data loss caused by worker timeouts during shutdown.

⚠️ Warning

Since this issue stems from modules used by ddtrace that weren't being properly released, adding an incorrect from A import B could bring back that flaky error.

To help debug the problem in case it resurfaces, we’ve introduced two private environment variables that proved very useful during investigation:

_DD_IAST_SINK_POINTS_ENABLED
_DD_IAST_PROPAGATION_ENABLED

you’ll notice there are several TODOs documenting broken interactions — and, in many cases, the tests hang indefinitely, just like what happens in APPSEC-58276.

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

@avara1986 avara1986 added changelog/no-changelog A changelog entry is not required for this PR. ASM Application Security Monitoring labels Jul 18, 2025
Copy link
Contributor

github-actions bot commented Jul 18, 2025

CODEOWNERS have been resolved as:

releasenotes/notes/iast-fix-gevent-0cdc996892bb59c2.yaml                @DataDog/apm-python
tests/appsec/iast/taint_tracking/test_native_taint_range_fork.py        @DataDog/asm-python
tests/appsec/iast/taint_tracking/test_native_taint_range_gevent_fork.py  @DataDog/asm-python
.github/workflows/system-tests.yml                                      @DataDog/python-guild @DataDog/apm-core-python
.riot/requirements/109d1ad.txt                                          @DataDog/apm-python
.riot/requirements/1421f4d.txt                                          @DataDog/apm-python
.riot/requirements/19a745b.txt                                          @DataDog/apm-python
.riot/requirements/1c51432.txt                                          @DataDog/apm-python
.riot/requirements/1d81907.txt                                          @DataDog/apm-python
.riot/requirements/551fe5d.txt                                          @DataDog/apm-python
ddtrace/_monkey.py                                                      @DataDog/apm-core-python
ddtrace/appsec/_constants.py                                            @DataDog/asm-python
ddtrace/appsec/_iast/__init__.py                                        @DataDog/asm-python
ddtrace/appsec/_iast/_ast/ast_patching.py                               @DataDog/asm-python
ddtrace/appsec/_iast/_ast/iastpatch.c                                   @DataDog/asm-python
ddtrace/appsec/_iast/_ast/iastpatch.pyi                                 @DataDog/asm-python
ddtrace/appsec/_iast/_logs.py                                           @DataDog/asm-python
ddtrace/appsec/_iast/_patches/json_tainting.py                          @DataDog/asm-python
ddtrace/appsec/_iast/main.py                                            @DataDog/asm-python
ddtrace/appsec/_iast/taint_sinks/code_injection.py                      @DataDog/asm-python
ddtrace/appsec/_iast/taint_sinks/command_injection.py                   @DataDog/asm-python
ddtrace/appsec/_iast/taint_sinks/header_injection.py                    @DataDog/asm-python
ddtrace/appsec/_iast/taint_sinks/insecure_cookie.py                     @DataDog/asm-python
ddtrace/appsec/_iast/taint_sinks/unvalidated_redirect.py                @DataDog/asm-python
ddtrace/appsec/_iast/taint_sinks/weak_cipher.py                         @DataDog/asm-python
ddtrace/appsec/_iast/taint_sinks/weak_hash.py                           @DataDog/asm-python
ddtrace/appsec/_iast/taint_sinks/xss.py                                 @DataDog/asm-python
ddtrace/internal/iast/product.py                                        @DataDog/asm-python
ddtrace/settings/asm.py                                                 @DataDog/asm-python
riotfile.py                                                             @DataDog/apm-python
tests/appsec/app.py                                                     @DataDog/asm-python
tests/appsec/appsec_utils.py                                            @DataDog/asm-python
tests/appsec/iast/fixtures/entrypoint/views.py                          @DataDog/asm-python
tests/appsec/iast/iast_utils.py                                         @DataDog/asm-python
tests/appsec/iast/test_loader.py                                        @DataDog/asm-python
tests/appsec/integrations/fastapi_tests/test_fastapi_appsec_iast.py     @DataDog/asm-python
tests/appsec/integrations/flask_tests/test_flask_remoteconfig.py        @DataDog/asm-python
tests/appsec/integrations/flask_tests/test_iast_flask_entrypoint_iast_patches.py  @DataDog/asm-python
tests/appsec/integrations/flask_tests/test_iast_flask_testagent.py      @DataDog/asm-python
.riot/requirements/10cc08e.txt                                          @DataDog/apm-python
.riot/requirements/116d4eb.txt                                          @DataDog/apm-python
.riot/requirements/1390092.txt                                          @DataDog/apm-python
.riot/requirements/17140b3.txt                                          @DataDog/apm-python
.riot/requirements/172eb93.txt                                          @DataDog/apm-python
.riot/requirements/1a5499d.txt                                          @DataDog/apm-python
.riot/requirements/1b60b14.txt                                          @DataDog/apm-python
.riot/requirements/1c1038e.txt                                          @DataDog/apm-python
.riot/requirements/1d3e1f4.txt                                          @DataDog/apm-python
.riot/requirements/1f31585.txt                                          @DataDog/apm-python
.riot/requirements/31c8ec9.txt                                          @DataDog/apm-python
.riot/requirements/43ff7ef.txt                                          @DataDog/apm-python
.riot/requirements/5b9ebd4.txt                                          @DataDog/apm-python
.riot/requirements/825ba8f.txt                                          @DataDog/apm-python
.riot/requirements/c1266ce.txt                                          @DataDog/apm-python
.riot/requirements/c34a6a8.txt                                          @DataDog/apm-python
.riot/requirements/e9ec450.txt                                          @DataDog/apm-python
tests/appsec/iast/fixtures/entrypoint/app_create_app_patch_auto.py      @DataDog/asm-python

Copy link
Contributor

github-actions bot commented Jul 18, 2025

Bootstrap import analysis

Comparison of import times between this PR and base.

Summary

The average import time from this PR is: 279 ± 4 ms.

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

The import time difference between this PR and base is: -5.9 ± 0.2 ms.

Import time breakdown

The following import paths have appeared:

ddtrace.auto 4.791 ms (1.72%)
ddtrace 4.791 ms (1.72%)
ddtrace.trace 4.791 ms (1.72%)
ddtrace._trace.filters 4.791 ms (1.72%)
ddtrace._trace.processor 4.791 ms (1.72%)
ddtrace.internal.writer 4.791 ms (1.72%)
ddtrace.internal.writer.writer 4.791 ms (1.72%)
ddtrace.settings.asm 4.791 ms (1.72%)
ddtrace.appsec._constants 2.328 ms (0.83%)
ddtrace.internal.endpoints 1.598 ms (0.57%)

The following import paths have disappeared:

ddtrace.auto 4.801 ms (1.72%)
ddtrace 4.801 ms (1.72%)
ddtrace._monkey 4.801 ms (1.72%)
ddtrace.settings.asm 4.801 ms (1.72%)
ddtrace.appsec._constants 2.305 ms (0.83%)
ddtrace.internal.endpoints 1.628 ms (0.58%)

The following import paths have grown:

ddtrace.auto 1.275 ms (0.46%)
ddtrace.bootstrap.sitecustomize 1.030 ms (0.37%)
ddtrace.bootstrap.preload 0.230 ms (0.08%)
ddtrace.settings.live_debugging 0.091 ms (0.03%)
ddtrace.internal.flare.flare 0.086 ms (0.03%)
logging.handlers 0.086 ms (0.03%)
ddtrace.appsec._remoteconfiguration 0.054 ms (0.02%)
ddtrace._trace.trace_handlers 0.126 ms (0.05%)
ddtrace.contrib.trace_utils 0.064 ms (0.02%)
ddtrace.contrib.internal.trace_utils 0.064 ms (0.02%)
ddtrace.contrib.internal.trace_utils_base 0.064 ms (0.02%)
ddtrace.ext.user 0.064 ms (0.02%)
ddtrace._trace._inferred_proxy 0.062 ms (0.02%)
ddtrace.propagation.http 0.062 ms (0.02%)
ddtrace.propagation._utils 0.062 ms (0.02%)
ddtrace.bootstrap 0.113 ms (0.04%)
ddtrace 0.245 ms (0.09%)
ddtrace.trace 0.245 ms (0.09%)
ddtrace._trace.filters 0.245 ms (0.09%)
ddtrace._trace.processor 0.245 ms (0.09%)
ddtrace._trace.sampler 0.155 ms (0.06%)
ddtrace._trace.span 0.079 ms (0.03%)
ddtrace.internal.rate_limiter 0.076 ms (0.03%)
ddtrace.internal.writer 0.090 ms (0.03%)
ddtrace.internal.writer.writer 0.090 ms (0.03%)
ddtrace.internal.dogstatsd 0.090 ms (0.03%)
ddtrace.vendor.dogstatsd 0.090 ms (0.03%)
ddtrace.vendor.dogstatsd.base 0.090 ms (0.03%)
queue 0.090 ms (0.03%)
heapq 0.090 ms (0.03%)
_heapq 0.090 ms (0.03%)

The following import paths have shrunk:

ddtrace.auto 4.170 ms (1.49%)
ddtrace.bootstrap.sitecustomize 2.903 ms (1.04%)
ddtrace.bootstrap.preload 1.872 ms (0.67%)
ddtrace.internal.remoteconfig.client 0.706 ms (0.25%)
ddtrace.internal.flare.flare 0.121 ms (0.04%)
shlex 0.846 ms (0.30%)
ddtrace._trace.trace_handlers 0.184 ms (0.07%)
ddtrace._trace._inferred_proxy 0.099 ms (0.04%)
ddtrace.propagation.http 0.099 ms (0.04%)
ddtrace.ext.azure_servicebus 0.086 ms (0.03%)
ddtrace 1.267 ms (0.45%)
ddtrace.trace 0.482 ms (0.17%)
ddtrace._trace.filters 0.329 ms (0.12%)
ddtrace._trace.processor 0.329 ms (0.12%)
ddtrace.internal.writer 0.190 ms (0.07%)
ddtrace.internal.writer.writer 0.190 ms (0.07%)
ddtrace.internal.dogstatsd 0.072 ms (0.03%)
ddtrace.vendor.dogstatsd 0.072 ms (0.03%)
ddtrace.vendor.dogstatsd.base 0.072 ms (0.03%)
queue 0.072 ms (0.03%)
ddtrace._trace.sampler 0.138 ms (0.05%)
ddtrace._trace.span 0.138 ms (0.05%)
ddtrace.ext.http 0.138 ms (0.05%)
ddtrace.internal._unpatched 0.100 ms (0.04%)
subprocess 0.069 ms (0.02%)
contextlib 0.069 ms (0.02%)
json 0.031 ms (0.01%)
json.decoder 0.031 ms (0.01%)
re 0.031 ms (0.01%)
enum 0.031 ms (0.01%)
types 0.031 ms (0.01%)
ddtrace._monkey 0.029 ms (0.01%)

@pr-commenter
Copy link

pr-commenter bot commented Jul 18, 2025

Performance SLOs

Candidate: avara1986/APPSEC-58276_iast_standalone (2f56e75)

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

🔵 No baseline data available for this suite

⚠️ context_with_data_listeners

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

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


✅ context_with_data_no_listeners

Time: ✅ 3.841µs (SLO: <10.000µs 📉 -61.6%)

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


⚠️ context_with_data_only_all_listeners

Time: ⚠️ 13.825µs (SLO: <20.000µs 📉 -30.9%)

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


✅ get_item_exists

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

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


✅ get_item_missing

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

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


✅ set_item

Time: ✅ 24.742µs (SLO: <30.000µs 📉 -17.5%)

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


🔵 djangosimple - 22/22

🔵 No baseline data available for this suite

✅ appsec

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

Memory: ✅ 63.701MB (SLO: <65.500MB -2.7%)


✅ exception-replay-enabled

Time: ✅ 1.363ms (SLO: <1.450ms -6.0%)

Memory: ✅ 63.111MB (SLO: <65.500MB -3.6%)


✅ iast

Time: ✅ 21.254ms (SLO: <22.250ms -4.5%)

Memory: ✅ 63.740MB (SLO: <65.500MB -2.7%)


✅ profiler

Time: ✅ 15.924ms (SLO: <16.550ms -3.8%)

Memory: ✅ 51.043MB (SLO: <53.000MB -3.7%)


✅ span-code-origin

Time: ✅ 26.893ms (SLO: <28.200ms -4.6%)

Memory: ✅ 65.979MB (SLO: <68.000MB -3.0%)


✅ tracer

Time: ✅ 21.223ms (SLO: <22.700ms -6.5%)

Memory: ✅ 63.701MB (SLO: <65.500MB -2.7%)


✅ tracer-and-profiler

Time: ✅ 23.674ms (SLO: <24.900ms -4.9%)

Memory: ✅ 64.841MB (SLO: <67.000MB -3.2%)


✅ tracer-no-caches

Time: ✅ 18.845ms (SLO: <19.650ms -4.1%)

Memory: ✅ 63.701MB (SLO: <65.500MB -2.7%)


✅ tracer-no-databases

Time: ✅ 19.206ms (SLO: <20.100ms -4.4%)

Memory: ✅ 63.701MB (SLO: <65.500MB -2.7%)


✅ tracer-no-middleware

Time: ✅ 21.006ms (SLO: <22.500ms -6.6%)

Memory: ✅ 63.701MB (SLO: <65.500MB -2.7%)


✅ tracer-no-templates

Time: ✅ 21.033ms (SLO: <22.250ms -5.5%)

Memory: ✅ 63.740MB (SLO: <65.500MB -2.7%)


🔵 errortrackingdjangosimple - 6/6

🔵 No baseline data available for this suite

✅ errortracking-enabled-all

Time: ✅ 18.461ms (SLO: <19.850ms -7.0%)

Memory: ✅ 63.740MB (SLO: <65.500MB -2.7%)


✅ errortracking-enabled-user

Time: ✅ 18.498ms (SLO: <19.400ms -4.7%)

Memory: ✅ 63.701MB (SLO: <65.500MB -2.7%)


✅ tracer-enabled

Time: ✅ 18.545ms (SLO: <19.450ms -4.7%)

Memory: ✅ 63.701MB (SLO: <65.500MB -2.7%)


🔵 errortrackingflasksqli - 6/6

🔵 No baseline data available for this suite

✅ errortracking-enabled-all

Time: ✅ 2.124ms (SLO: <2.300ms -7.6%)

Memory: ✅ 51.648MB (SLO: <53.000MB -2.6%)


✅ errortracking-enabled-user

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

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


✅ tracer-enabled

Time: ✅ 2.113ms (SLO: <2.300ms -8.1%)

Memory: ✅ 51.275MB (SLO: <53.000MB -3.3%)


🔵 flasksimple - 14/14

🔵 No baseline data available for this suite

✅ appsec-get

Time: ✅ 4.602ms (SLO: <4.750ms -3.1%)

Memory: ✅ 63.111MB (SLO: <64.000MB 🟡 -1.4%)


✅ appsec-post

Time: ✅ 6.631ms (SLO: <6.750ms 🟡 -1.8%)

Memory: ✅ 63.170MB (SLO: <64.000MB 🟡 -1.3%)


✅ appsec-telemetry

Time: ✅ 4.604ms (SLO: <4.750ms -3.1%)

Memory: ✅ 63.111MB (SLO: <64.000MB 🟡 -1.4%)


✅ debugger

Time: ✅ 1.851ms (SLO: <2.000ms -7.4%)

Memory: ✅ 42.120MB (SLO: <44.000MB -4.3%)


✅ iast-get

Time: ✅ 1.852ms (SLO: <2.000ms -7.4%)

Memory: ✅ 44.548MB (SLO: <45.000MB 🟡 -1.0%)


✅ profiler

Time: ✅ 1.980ms (SLO: <2.100ms -5.7%)

Memory: ✅ 43.490MB (SLO: <44.000MB 🟡 -1.2%)


✅ tracer

Time: ✅ 3.382ms (SLO: <3.650ms -7.3%)

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


🔵 flasksqli - 6/6

🔵 No baseline data available for this suite

✅ appsec-enabled

Time: ✅ 3.967ms (SLO: <4.200ms -5.5%)

Memory: ✅ 63.367MB (SLO: <66.000MB -4.0%)


✅ iast-enabled

Time: ✅ 2.558ms (SLO: <2.800ms -8.6%)

Memory: ✅ 56.957MB (SLO: <58.000MB 🟡 -1.8%)


✅ tracer-enabled

Time: ✅ 2.103ms (SLO: <2.250ms -6.5%)

Memory: ✅ 51.492MB (SLO: <53.000MB -2.8%)


🔵 httppropagationextract - 60/60

🔵 No baseline data available for this suite

✅ all_styles_all_headers

Time: ✅ 82.175µs (SLO: <100.000µs 📉 -17.8%)

Memory: ✅ 29.157MB (SLO: <31.000MB -5.9%)


✅ b3_headers

Time: ✅ 14.469µs (SLO: <20.000µs 📉 -27.7%)

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ b3_single_headers

Time: ✅ 13.500µs (SLO: <20.000µs 📉 -32.5%)

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ datadog_tracecontext_tracestate_not_propagated_on_trace_id_no_match

Time: ✅ 65.342µs (SLO: <80.000µs 📉 -18.3%)

Memory: ✅ 29.255MB (SLO: <31.000MB -5.6%)


✅ datadog_tracecontext_tracestate_propagated_on_trace_id_match

Time: ✅ 69.207µs (SLO: <80.000µs 📉 -13.5%)

Memory: ✅ 29.196MB (SLO: <31.000MB -5.8%)


✅ empty_headers

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

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ full_t_id_datadog_headers

Time: ✅ 24.086µs (SLO: <30.000µs 📉 -19.7%)

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ invalid_priority_header

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

Memory: ✅ 29.157MB (SLO: <31.000MB -5.9%)


✅ invalid_span_id_header

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

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ invalid_tags_header

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

Memory: ✅ 29.118MB (SLO: <31.000MB -6.1%)


✅ invalid_trace_id_header

Time: ✅ 6.626µs (SLO: <10.000µs 📉 -33.7%)

Memory: ✅ 29.216MB (SLO: <31.000MB -5.8%)


✅ large_header_no_matches

Time: ✅ 27.615µs (SLO: <30.000µs -7.9%)

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ large_valid_headers_all

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

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ medium_header_no_matches

Time: ✅ 9.878µs (SLO: <20.000µs 📉 -50.6%)

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ medium_valid_headers_all

Time: ✅ 11.317µs (SLO: <20.000µs 📉 -43.4%)

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ none_propagation_style

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

Memory: ✅ 29.216MB (SLO: <31.000MB -5.8%)


✅ tracecontext_headers

Time: ✅ 34.291µs (SLO: <40.000µs 📉 -14.3%)

Memory: ✅ 29.157MB (SLO: <31.000MB -5.9%)


✅ valid_headers_all

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

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ valid_headers_basic

Time: ✅ 6.317µs (SLO: <10.000µs 📉 -36.8%)

Memory: ✅ 29.196MB (SLO: <31.000MB -5.8%)


✅ wsgi_empty_headers

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

Memory: ✅ 29.137MB (SLO: <31.000MB -6.0%)


✅ wsgi_invalid_priority_header

Time: ✅ 6.658µs (SLO: <10.000µs 📉 -33.4%)

Memory: ✅ 29.157MB (SLO: <31.000MB -5.9%)


✅ wsgi_invalid_span_id_header

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

Memory: ✅ 29.196MB (SLO: <31.000MB -5.8%)


✅ wsgi_invalid_tags_header

Time: ✅ 6.620µs (SLO: <10.000µs 📉 -33.8%)

Memory: ✅ 29.255MB (SLO: <31.000MB -5.6%)


✅ wsgi_invalid_trace_id_header

Time: ✅ 6.695µs (SLO: <10.000µs 📉 -33.0%)

Memory: ✅ 29.196MB (SLO: <31.000MB -5.8%)


✅ wsgi_large_header_no_matches

Time: ✅ 28.885µs (SLO: <40.000µs 📉 -27.8%)

Memory: ✅ 29.236MB (SLO: <31.000MB -5.7%)


✅ wsgi_large_valid_headers_all

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

Memory: ✅ 29.216MB (SLO: <31.000MB -5.8%)


✅ wsgi_medium_header_no_matches

Time: ✅ 10.173µs (SLO: <20.000µs 📉 -49.1%)

Memory: ✅ 29.137MB (SLO: <31.000MB -6.0%)


✅ wsgi_medium_valid_headers_all

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

Memory: ✅ 29.157MB (SLO: <31.000MB -5.9%)


✅ wsgi_valid_headers_all

Time: ✅ 6.619µs (SLO: <10.000µs 📉 -33.8%)

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ wsgi_valid_headers_basic

Time: ✅ 6.235µs (SLO: <10.000µs 📉 -37.6%)

Memory: ✅ 29.137MB (SLO: <31.000MB -6.0%)


🔵 httppropagationinject - 16/16

🔵 No baseline data available for this suite

✅ ids_only

Time: ✅ 20.212µs (SLO: <30.000µs 📉 -32.6%)

Memory: ✅ 29.236MB (SLO: <31.000MB -5.7%)


✅ with_all

Time: ✅ 36.099µs (SLO: <40.000µs -9.8%)

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


✅ with_dd_origin

Time: ✅ 26.315µs (SLO: <30.000µs 📉 -12.3%)

Memory: ✅ 29.275MB (SLO: <31.000MB -5.6%)


✅ with_priority_and_origin

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

Memory: ✅ 29.216MB (SLO: <31.000MB -5.8%)


✅ with_sampling_priority

Time: ✅ 22.467µs (SLO: <30.000µs 📉 -25.1%)

Memory: ✅ 29.157MB (SLO: <31.000MB -5.9%)


✅ with_tags

Time: ✅ 28.252µs (SLO: <40.000µs 📉 -29.4%)

Memory: ✅ 29.196MB (SLO: <31.000MB -5.8%)


✅ with_tags_invalid

Time: ✅ 31.212µs (SLO: <40.000µs 📉 -22.0%)

Memory: ✅ 29.236MB (SLO: <31.000MB -5.7%)


✅ with_tags_max_size

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

Memory: ✅ 29.177MB (SLO: <31.000MB -5.9%)


🔵 iast_aspects - 40/40

🔵 No baseline data available for this suite

✅ re_expand_aspect

Time: ✅ 33.033µs (SLO: <40.000µs 📉 -17.4%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_expand_noaspect

Time: ✅ 28.438µs (SLO: <40.000µs 📉 -28.9%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_findall_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_findall_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_finditer_aspect

Time: ✅ 5.143µs (SLO: <10.000µs 📉 -48.6%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_finditer_noaspect

Time: ✅ 1.395µs (SLO: <10.000µs 📉 -86.1%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_fullmatch_aspect

Time: ✅ 3.384µs (SLO: <10.000µs 📉 -66.2%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_fullmatch_noaspect

Time: ✅ 1.284µs (SLO: <10.000µs 📉 -87.2%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_group_aspect

Time: ✅ 3.442µs (SLO: <10.000µs 📉 -65.6%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_group_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_groups_aspect

Time: ✅ 3.600µs (SLO: <10.000µs 📉 -64.0%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_groups_noaspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_match_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_match_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_search_aspect

Time: ✅ 3.281µs (SLO: <10.000µs 📉 -67.2%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_search_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_sub_aspect

Time: ✅ 4.679µs (SLO: <10.000µs 📉 -53.2%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_sub_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ re_subn_aspect

Time: ✅ 4.885µs (SLO: <10.000µs 📉 -51.2%)

Memory: ✅ 34.603MB (SLO: <35.500MB -2.5%)


✅ re_subn_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


🔵 iastaspects - 118/118

🔵 No baseline data available for this suite

✅ add_aspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ add_inplace_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ add_inplace_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ add_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ bytearray_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ bytearray_extend_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ bytearray_extend_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ bytearray_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ bytes_aspect

Time: ✅ 1.854µs (SLO: <10.000µs 📉 -81.5%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ bytes_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ bytesio_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ bytesio_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ capitalize_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ capitalize_noaspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ casefold_aspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ casefold_noaspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ decode_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ decode_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ encode_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ encode_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ format_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ format_map_aspect

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

Memory: ✅ 34.642MB (SLO: <35.000MB 🟡 -1.0%)


✅ format_map_noaspect

Time: ✅ 0.772µs (SLO: <10.000µs 📉 -92.3%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ format_noaspect

Time: ✅ 0.595µs (SLO: <10.000µs 📉 -94.1%)

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ index_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ index_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ join_aspect

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

Memory: ✅ 34.682MB (SLO: <35.000MB 🟡 -0.9%)


✅ join_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ljust_aspect

Time: ✅ 10.301µs (SLO: <20.000µs 📉 -48.5%)

Memory: ✅ 34.780MB (SLO: <35.500MB -2.0%)


✅ ljust_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.500MB -2.5%)


✅ lower_aspect

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

Memory: ✅ 34.623MB (SLO: <35.500MB -2.5%)


✅ lower_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ lstrip_aspect

Time: ✅ 10.362µs (SLO: <20.000µs 📉 -48.2%)

Memory: ✅ 34.662MB (SLO: <35.500MB -2.4%)


✅ lstrip_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ modulo_aspect

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

Memory: ✅ 34.662MB (SLO: <35.000MB 🟡 -1.0%)


✅ modulo_aspect_for_bytearray_bytearray

Time: ✅ 1.267µs (SLO: <10.000µs 📉 -87.3%)

Memory: ✅ 34.642MB (SLO: <35.000MB 🟡 -1.0%)


✅ modulo_aspect_for_bytes

Time: ✅ 0.751µs (SLO: <10.000µs 📉 -92.5%)

Memory: ✅ 34.642MB (SLO: <35.000MB 🟡 -1.0%)


✅ modulo_aspect_for_bytes_bytearray

Time: ✅ 0.984µs (SLO: <10.000µs 📉 -90.2%)

Memory: ✅ 34.642MB (SLO: <35.000MB 🟡 -1.0%)


✅ modulo_noaspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ replace_aspect

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

Memory: ✅ 34.662MB (SLO: <35.000MB 🟡 -1.0%)


✅ replace_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.500MB -2.5%)


✅ repr_aspect

Time: ✅ 0.900µs (SLO: <10.000µs 📉 -91.0%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ repr_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ rstrip_aspect

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

Memory: ✅ 34.800MB (SLO: <35.500MB 🟡 -2.0%)


✅ rstrip_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ slice_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ slice_noaspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ stringio_aspect

Time: ✅ 2.187µs (SLO: <10.000µs 📉 -78.1%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ stringio_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ strip_aspect

Time: ✅ 10.963µs (SLO: <20.000µs 📉 -45.2%)

Memory: ✅ 34.701MB (SLO: <35.500MB -2.2%)


✅ strip_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ swapcase_aspect

Time: ✅ 2.458µs (SLO: <10.000µs 📉 -75.4%)

Memory: ✅ 34.682MB (SLO: <35.000MB 🟡 -0.9%)


✅ swapcase_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ title_aspect

Time: ✅ 2.410µs (SLO: <10.000µs 📉 -75.9%)

Memory: ✅ 34.642MB (SLO: <35.000MB 🟡 -1.0%)


✅ title_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ translate_aspect

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

Memory: ✅ 34.642MB (SLO: <35.000MB 🟡 -1.0%)


✅ translate_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ upper_aspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ upper_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


🔵 iastaspectsospath - 24/24

🔵 No baseline data available for this suite

✅ ospathbasename_aspect

Time: ✅ 4.153µs (SLO: <10.000µs 📉 -58.5%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathbasename_noaspect

Time: ✅ 1.077µs (SLO: <10.000µs 📉 -89.2%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathjoin_aspect

Time: ✅ 6.914µs (SLO: <10.000µs 📉 -30.9%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathjoin_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathnormcase_aspect

Time: ✅ 3.488µs (SLO: <10.000µs 📉 -65.1%)

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathnormcase_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathsplit_aspect

Time: ✅ 4.755µs (SLO: <10.000µs 📉 -52.5%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathsplit_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathsplitdrive_aspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathsplitdrive_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathsplitext_aspect

Time: ✅ 4.587µs (SLO: <10.000µs 📉 -54.1%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ ospathsplitext_noaspect

Time: ✅ 1.386µs (SLO: <10.000µs 📉 -86.1%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


🔵 iastaspectssplit - 12/12

🔵 No baseline data available for this suite

✅ rsplit_aspect

Time: ✅ 1.514µs (SLO: <10.000µs 📉 -84.9%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ rsplit_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ split_aspect

Time: ✅ 1.468µs (SLO: <10.000µs 📉 -85.3%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ split_noaspect

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

Memory: ✅ 34.623MB (SLO: <35.000MB 🟡 -1.1%)


✅ splitlines_aspect

Time: ✅ 1.433µs (SLO: <10.000µs 📉 -85.7%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ splitlines_noaspect

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

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


🔵 iastpropagation - 8/8

🔵 No baseline data available for this suite

✅ no-propagation

Time: ✅ 49.014µs (SLO: <60.000µs 📉 -18.3%)

Memory: ✅ 34.623MB (SLO: <35.500MB -2.5%)


✅ propagation_enabled

Time: ✅ 145.821µs (SLO: <160.000µs -8.9%)

Memory: ✅ 34.642MB (SLO: <35.500MB -2.4%)


✅ propagation_enabled_100

Time: ✅ 1.560ms (SLO: <1.800ms 📉 -13.4%)

Memory: ✅ 34.603MB (SLO: <35.000MB 🟡 -1.1%)


✅ propagation_enabled_1000

Time: ✅ 29.143ms (SLO: <30.550ms -4.6%)

Memory: ✅ 34.642MB (SLO: <35.500MB -2.4%)


🔵 otelsdkspan - 24/24

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 40.624ms (SLO: <42.000ms -3.3%)

Memory: ✅ 31.497MB (SLO: <35.000MB 📉 -10.0%)


✅ add-link

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

Memory: ✅ 31.497MB (SLO: <35.000MB 📉 -10.0%)


✅ add-metrics

Time: ✅ 220.361ms (SLO: <232.000ms -5.0%)

Memory: ✅ 31.477MB (SLO: <35.000MB 📉 -10.1%)


✅ add-tags

Time: ✅ 210.320ms (SLO: <221.600ms -5.1%)

Memory: ✅ 31.497MB (SLO: <35.000MB 📉 -10.0%)


✅ get-context

Time: ✅ 28.845ms (SLO: <31.300ms -7.8%)

Memory: ✅ 31.536MB (SLO: <35.000MB -9.9%)


✅ is-recording

Time: ✅ 29.068ms (SLO: <31.000ms -6.2%)

Memory: ✅ 31.516MB (SLO: <35.000MB -10.0%)


✅ record-exception

Time: ✅ 62.693ms (SLO: <65.850ms -4.8%)

Memory: ✅ 31.536MB (SLO: <35.000MB -9.9%)


✅ set-status

Time: ✅ 31.904ms (SLO: <34.150ms -6.6%)

Memory: ✅ 31.497MB (SLO: <35.000MB 📉 -10.0%)


✅ start

Time: ✅ 28.710ms (SLO: <30.150ms -4.8%)

Memory: ✅ 31.477MB (SLO: <35.000MB 📉 -10.1%)


✅ start-finish

Time: ✅ 33.678ms (SLO: <35.350ms -4.7%)

Memory: ✅ 31.516MB (SLO: <35.000MB -10.0%)


✅ start-finish-telemetry

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

Memory: ✅ 31.477MB (SLO: <35.000MB 📉 -10.1%)


✅ update-name

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

Memory: ✅ 31.477MB (SLO: <35.000MB 📉 -10.1%)


🔵 otelspan - 22/22

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 43.697ms (SLO: <47.150ms -7.3%)

Memory: ✅ 41.985MB (SLO: <42.500MB 🟡 -1.2%)


✅ add-metrics

Time: ✅ 317.902ms (SLO: <344.800ms -7.8%)

Memory: ✅ 559.120MB (SLO: <562.000MB 🟡 -0.5%)


✅ add-tags

Time: ✅ 287.776ms (SLO: <314.000ms -8.4%)

Memory: ✅ 560.411MB (SLO: <563.500MB 🟡 -0.5%)


✅ get-context

Time: ✅ 84.663ms (SLO: <92.350ms -8.3%)

Memory: ✅ 37.136MB (SLO: <38.000MB -2.3%)


✅ is-recording

Time: ✅ 41.605ms (SLO: <44.500ms -6.5%)

Memory: ✅ 41.455MB (SLO: <42.000MB 🟡 -1.3%)


✅ record-exception

Time: ✅ 60.237ms (SLO: <67.650ms 📉 -11.0%)

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


✅ set-status

Time: ✅ 47.311ms (SLO: <50.400ms -6.1%)

Memory: ✅ 41.527MB (SLO: <42.000MB 🟡 -1.1%)


✅ start

Time: ✅ 40.863ms (SLO: <43.450ms -6.0%)

Memory: ✅ 41.585MB (SLO: <42.000MB 🟡 -1.0%)


✅ start-finish

Time: ✅ 81.619ms (SLO: <86.000ms -5.1%)

Memory: ✅ 31.575MB (SLO: <32.000MB 🟡 -1.3%)


✅ start-finish-telemetry

Time: ✅ 83.101ms (SLO: <86.000ms -3.4%)

Memory: ✅ 31.536MB (SLO: <32.000MB 🟡 -1.5%)


✅ update-name

Time: ✅ 42.834ms (SLO: <45.150ms -5.1%)

Memory: ✅ 41.697MB (SLO: <42.500MB 🟡 -1.9%)


🔵 packagespackageforrootmodulemapping - 4/4

🔵 No baseline data available for this suite

✅ cache_off

Time: ✅ 341.495ms (SLO: <354.300ms -3.6%)

Memory: ✅ 35.335MB (SLO: <38.000MB -7.0%)


✅ cache_on

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

Memory: ✅ 34.294MB (SLO: <38.000MB -9.8%)


🔵 packagesupdateimporteddependencies - 24/24

🔵 No baseline data available for this suite

✅ import_many

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

Memory: ✅ 34.575MB (SLO: <35.500MB -2.6%)


✅ import_many_cached

Time: ✅ 120.869µs (SLO: <130.000µs -7.0%)

Memory: ✅ 34.552MB (SLO: <35.500MB -2.7%)


✅ import_many_stdlib

Time: ✅ 1.612ms (SLO: <1.750ms -7.9%)

Memory: ✅ 34.169MB (SLO: <35.500MB -3.7%)


✅ import_many_stdlib_cached

Time: ✅ 0.960ms (SLO: <1.100ms 📉 -12.7%)

Memory: ✅ 34.198MB (SLO: <35.500MB -3.7%)


✅ import_many_unknown

Time: ✅ 828.772µs (SLO: <890.000µs -6.9%)

Memory: ✅ 34.229MB (SLO: <35.500MB -3.6%)


✅ import_many_unknown_cached

Time: ✅ 797.772µs (SLO: <870.000µs -8.3%)

Memory: ✅ 34.603MB (SLO: <35.500MB -2.5%)


✅ import_one

Time: ✅ 19.820µs (SLO: <30.000µs 📉 -33.9%)

Memory: ✅ 34.149MB (SLO: <35.500MB -3.8%)


✅ import_one_cache

Time: ✅ 6.220µs (SLO: <10.000µs 📉 -37.8%)

Memory: ✅ 34.141MB (SLO: <35.500MB -3.8%)


✅ import_one_stdlib

Time: ✅ 18.741µs (SLO: <20.000µs -6.3%)

Memory: ✅ 34.135MB (SLO: <35.500MB -3.8%)


✅ import_one_stdlib_cache

Time: ✅ 6.268µs (SLO: <10.000µs 📉 -37.3%)

Memory: ✅ 34.543MB (SLO: <35.500MB -2.7%)


✅ import_one_unknown

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

Memory: ✅ 34.586MB (SLO: <35.500MB -2.6%)


✅ import_one_unknown_cache

Time: ✅ 6.306µs (SLO: <10.000µs 📉 -36.9%)

Memory: ✅ 34.563MB (SLO: <35.500MB -2.6%)


🔵 ratelimiter - 12/12

🔵 No baseline data available for this suite

✅ defaults

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

Memory: ✅ 28.724MB (SLO: <31.000MB -7.3%)


✅ high_rate_limit

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

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


✅ long_window

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

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


✅ low_rate_limit

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

Memory: ✅ 28.744MB (SLO: <31.000MB -7.3%)


✅ no_rate_limit

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

Memory: ✅ 28.685MB (SLO: <31.000MB -7.5%)


✅ short_window

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

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


🔵 recursivecomputation - 8/8

🔵 No baseline data available for this suite

✅ deep

Time: ✅ 309.747ms (SLO: <320.950ms -3.5%)

Memory: ✅ 29.904MB (SLO: <31.000MB -3.5%)


✅ deep-profiled

Time: ✅ 344.167ms (SLO: <359.150ms -4.2%)

Memory: ✅ 34.190MB (SLO: <35.500MB -3.7%)


✅ medium

Time: ✅ 7.018ms (SLO: <7.400ms -5.2%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ shallow

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

Memory: ✅ 29.137MB (SLO: <31.000MB -6.0%)


🔵 samplingrules - 8/8

🔵 No baseline data available for this suite

✅ average_match

Time: ✅ 274.144µs (SLO: <350.000µs 📉 -21.7%)

Memory: ✅ 28.744MB (SLO: <31.000MB -7.3%)


✅ high_match

Time: ✅ 447.844µs (SLO: <550.000µs 📉 -18.6%)

Memory: ✅ 28.724MB (SLO: <31.000MB -7.3%)


✅ low_match

Time: ✅ 108.964µs (SLO: <190.000µs 📉 -42.7%)

Memory: ✅ 431.378MB (SLO: <432.500MB 🟡 -0.3%)


✅ very_low_match

Time: ✅ 7.663ms (SLO: <9.150ms 📉 -16.3%)

Memory: ✅ 54.759MB (SLO: <55.000MB 🟡 -0.4%)


🔵 sethttpmeta - 32/32

🔵 No baseline data available for this suite

✅ all-disabled

Time: ✅ 12.331µs (SLO: <20.000µs 📉 -38.3%)

Memory: ✅ 29.511MB (SLO: <31.000MB -4.8%)


✅ all-enabled

Time: ✅ 42.444µs (SLO: <50.000µs 📉 -15.1%)

Memory: ✅ 29.531MB (SLO: <31.000MB -4.7%)


✅ collectipvariant_exists

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

Memory: ✅ 29.570MB (SLO: <31.000MB -4.6%)


✅ no-collectipvariant

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

Memory: ✅ 29.511MB (SLO: <31.000MB -4.8%)


✅ no-useragentvariant

Time: ✅ 41.144µs (SLO: <50.000µs 📉 -17.7%)

Memory: ✅ 29.550MB (SLO: <31.000MB -4.7%)


✅ obfuscation-no-query

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

Memory: ✅ 29.590MB (SLO: <31.000MB -4.5%)


✅ obfuscation-regular-case-explicit-query

Time: ✅ 79.312µs (SLO: <90.000µs 📉 -11.9%)

Memory: ✅ 29.550MB (SLO: <31.000MB -4.7%)


✅ obfuscation-regular-case-implicit-query

Time: ✅ 80.406µs (SLO: <90.000µs 📉 -10.7%)

Memory: ✅ 29.590MB (SLO: <31.000MB -4.5%)


✅ obfuscation-send-querystring-disabled

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

Memory: ✅ 29.511MB (SLO: <31.000MB -4.8%)


✅ obfuscation-worst-case-explicit-query

Time: ✅ 151.225µs (SLO: <160.000µs -5.5%)

Memory: ✅ 29.511MB (SLO: <31.000MB -4.8%)


✅ obfuscation-worst-case-implicit-query

Time: ✅ 158.068µs (SLO: <170.000µs -7.0%)

Memory: ✅ 29.590MB (SLO: <31.000MB -4.5%)


✅ useragentvariant_exists_1

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

Memory: ✅ 29.511MB (SLO: <31.000MB -4.8%)


✅ useragentvariant_exists_2

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

Memory: ✅ 29.511MB (SLO: <31.000MB -4.8%)


✅ useragentvariant_exists_3

Time: ✅ 42.341µs (SLO: <50.000µs 📉 -15.3%)

Memory: ✅ 29.550MB (SLO: <31.000MB -4.7%)


✅ useragentvariant_not_exists_1

Time: ✅ 41.736µs (SLO: <50.000µs 📉 -16.5%)

Memory: ✅ 29.511MB (SLO: <31.000MB -4.8%)


✅ useragentvariant_not_exists_2

Time: ✅ 41.814µs (SLO: <50.000µs 📉 -16.4%)

Memory: ✅ 29.629MB (SLO: <31.000MB -4.4%)


🔵 span - 26/26

🔵 No baseline data available for this suite

✅ add-event

Time: ✅ 22.948ms (SLO: <26.200ms 📉 -12.4%)

Memory: ✅ 48.389MB (SLO: <49.000MB 🟡 -1.2%)


✅ add-metrics

Time: ✅ 91.746ms (SLO: <98.350ms -6.7%)

Memory: ✅ 614.463MB (SLO: <961.000MB 📉 -36.1%)


✅ add-tags

Time: ✅ 149.106ms (SLO: <168.550ms 📉 -11.5%)

Memory: ✅ 614.804MB (SLO: <962.500MB 📉 -36.1%)


✅ get-context

Time: ✅ 21.409ms (SLO: <23.700ms -9.7%)

Memory: ✅ 47.280MB (SLO: <47.500MB 🟡 -0.5%)


✅ is-recording

Time: ✅ 21.470ms (SLO: <23.900ms 📉 -10.2%)

Memory: ✅ 47.267MB (SLO: <47.500MB 🟡 -0.5%)


✅ record-exception

Time: ✅ 40.916ms (SLO: <44.500ms -8.1%)

Memory: ✅ 40.291MB (SLO: <40.500MB 🟡 -0.5%)


✅ set-status

Time: ✅ 23.071ms (SLO: <26.000ms 📉 -11.3%)

Memory: ✅ 47.248MB (SLO: <47.500MB 🟡 -0.5%)


✅ start

Time: ✅ 21.261ms (SLO: <23.500ms -9.5%)

Memory: ✅ 47.267MB (SLO: <47.500MB 🟡 -0.5%)


✅ start-finish

Time: ✅ 51.269ms (SLO: <52.500ms -2.3%)

Memory: ✅ 29.118MB (SLO: <31.000MB -6.1%)


✅ start-finish-telemetry

Time: ✅ 51.938ms (SLO: <55.300ms -6.1%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ start-finish-traceid128

Time: ✅ 54.274ms (SLO: <56.050ms -3.2%)

Memory: ✅ 29.157MB (SLO: <31.000MB -5.9%)


✅ start-traceid128

Time: ✅ 21.767ms (SLO: <24.600ms 📉 -11.5%)

Memory: ✅ 47.274MB (SLO: <47.500MB 🟡 -0.5%)


✅ update-name

Time: ✅ 21.905ms (SLO: <24.100ms -9.1%)

Memory: ✅ 47.995MB (SLO: <48.000MB 🟡 ~same)


🔵 telemetryaddmetric - 30/30

🔵 No baseline data available for this suite

✅ 1-count-metric-1-times

Time: ✅ 3.190µs (SLO: <10.000µs 📉 -68.1%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 1-count-metrics-100-times

Time: ✅ 212.061µs (SLO: <240.000µs 📉 -11.6%)

Memory: ✅ 29.078MB (SLO: <31.000MB -6.2%)


✅ 1-distribution-metric-1-times

Time: ✅ 3.052µs (SLO: <10.000µs 📉 -69.5%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 1-distribution-metrics-100-times

Time: ✅ 190.319µs (SLO: <210.000µs -9.4%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 1-gauge-metric-1-times

Time: ✅ 2.067µs (SLO: <10.000µs 📉 -79.3%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 1-gauge-metrics-100-times

Time: ✅ 124.945µs (SLO: <140.000µs 📉 -10.8%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 1-rate-metric-1-times

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

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 1-rate-metrics-100-times

Time: ✅ 212.105µs (SLO: <230.000µs -7.8%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 100-count-metrics-100-times

Time: ✅ 21.198ms (SLO: <22.500ms -5.8%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 100-distribution-metrics-100-times

Time: ✅ 1.996ms (SLO: <2.100ms -5.0%)

Memory: ✅ 29.078MB (SLO: <31.000MB -6.2%)


✅ 100-gauge-metrics-100-times

Time: ✅ 1.280ms (SLO: <1.400ms -8.6%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ 100-rate-metrics-100-times

Time: ✅ 2.174ms (SLO: <2.400ms -9.4%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ flush-1-metric

Time: ✅ 4.398µs (SLO: <10.000µs 📉 -56.0%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ flush-100-metrics

Time: ✅ 182.054µs (SLO: <200.000µs -9.0%)

Memory: ✅ 29.098MB (SLO: <31.000MB -6.1%)


✅ flush-1000-metrics

Time: ✅ 2.195ms (SLO: <2.350ms -6.6%)

Memory: ✅ 29.884MB (SLO: <31.000MB -3.6%)


🔵 tracer - 6/6

🔵 No baseline data available for this suite

✅ large

Time: ✅ 29.586ms (SLO: <32.950ms 📉 -10.2%)

Memory: ✅ 30.317MB (SLO: <31.000MB -2.2%)


✅ medium

Time: ✅ 2.911ms (SLO: <3.200ms -9.0%)

Memory: ✅ 28.705MB (SLO: <31.000MB -7.4%)


✅ small

Time: ✅ 332.240µs (SLO: <370.000µs 📉 -10.2%)

Memory: ✅ 28.744MB (SLO: <31.000MB -7.3%)

@avara1986 avara1986 changed the title fix(iast): gevent lazy timeouts fix(iast): gevent flaky timeouts Jul 29, 2025
@avara1986 avara1986 marked this pull request as ready for review July 29, 2025 09:16
@avara1986 avara1986 marked this pull request as draft July 29, 2025 11:38
@avara1986 avara1986 marked this pull request as ready for review July 29, 2025 14:37
@avara1986 avara1986 enabled auto-merge (squash) July 30, 2025 07:33
@avara1986 avara1986 requested a review from a team as a code owner July 31, 2025 09:03
@avara1986 avara1986 merged commit 7e51f47 into main Jul 31, 2025
886 of 887 checks passed
@avara1986 avara1986 deleted the avara1986/APPSEC-58276_iast_standalone branch July 31, 2025 14:25
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.

6 participants