Skip to content

WIP feat(otel): Update tracing integrations to emit span attributes in alignment with the OpenTelemetry DB span specification#8803

Draft
zacharycmontoya wants to merge 46 commits into
masterfrom
ai-week-3-db-semconv
Draft

WIP feat(otel): Update tracing integrations to emit span attributes in alignment with the OpenTelemetry DB span specification#8803
zacharycmontoya wants to merge 46 commits into
masterfrom
ai-week-3-db-semconv

Conversation

@zacharycmontoya

@zacharycmontoya zacharycmontoya commented Jun 18, 2026

Copy link
Copy Markdown
Contributor

Summary of changes

Reason for change

Implementation details

Test coverage

Other details

zacharycmontoya and others added 30 commits June 16, 2026 16:03
…LED.

When enabled, the tracer will not attempt to remap known OpenTelemetry attributes when handling OTEL spans and instead preserve them. A unit test has been added to assert that `Activity.SetTag("http.response.status_code", 200)` maintains both the original attribute key AND value (an integer)
…ce serializers from adding the following Datadog-specific attributes:

- service.name
- operation.name
- resource.name
- span.type
…emetryTraceCompatibilityEnabled

This results in the following snapshot changes:
- DD only attributes are no longer specially handled on the OTLP span
- OtelSpan.RecordException does not get recorded as a span-level error
- Incoming "http.status_code" and "http.response.status_code" tags are no longer special-cased and stringified (but they are converted into doubles which seems like a regression)
…o align the DD OTLP spans with the OTel OTLP spans. Removes the following span attributes:

- otel.library.name
- otel.library.version
- otel.status_code
- otel.trace_id
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… mappings

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Adds the new config key to supported-configurations.yaml and regenerates
ConfigurationKeys.g.cs across all target frameworks.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ticsEnabled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…s when OtelSemanticsEnabled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…P tags

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ions

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Adds a protected SubmitsTracesOTelAsync helper to AspNetCoreMvcTestBase
and a dedicated AspNetCoreMvc31OTelTests concrete class that sets
DD_TRACE_OTEL_SEMANTICS_ENABLED=true before app startup and validates
web spans against the otel schema version.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…lt port, null guards, wire remaining callers

- Wire otelSemanticsEnabled to DecorateWebServerSpan callers in TracingHttpModule, AspNetMvcIntegration, AspNetWebApi2Integration, and WcfCommon so OTel tags are emitted for all ASP.NET/.NET Framework server spans when the flag is enabled
- Strip leading '?' from url.query (Uri.Query returns "?foo=bar"; OTel semconv requires "foo=bar"); also skip emit when query is just "?"
- Omit server.port when it equals the scheme default (Uri.IsDefaultPort) per OTel semconv
- Remove dead SetResponseStatusCode method that was defined but never called
- Add null/empty guard to SetRequestMethod for consistency with other helpers
- Remove incidental ADD_EXTRA_MIDDLEWARE env var from AspNetCoreMvc31OTelTests

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…nt spans:

- url.scheme (is specified as opt-in by the semantic conventions, so skip for now)
- url.path
- url.query
…mantic conventions as OTLP IntValues, since we lose the original type when storing inside our tags dictionary
zacharycmontoya and others added 15 commits June 16, 2026 16:06
… no longer present:

- span.kind
- service.name
- operation.name
- resource.name
- span.type
- Emit both "http.request.method" and "http.request.method_original" when the request method is unrecognized
- Emit "url.scheme" for HTTP clients
- For HTTP client "url.full" do not include credentials
- When an error status code is detected, set the `error.type` attribute to the string value of the status code

// TODO: Update the http client handling so 500-599 is also considered an error
…settable on AspNetCoreTags and AspNetCoreSingleSpanTags rather than a pure accessor
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…abled

When `DD_TRACE_OTEL_SEMANTICS_ENABLED` is true, calls `DbOtelHelper.SetDatabaseAttributes`
instead of setting legacy db.type/db.name/out.host tags. `HasDbType` deduplication check now
handles OTel mode by falling back to `db.system.name` when `db.type` is not set.
- Update SpanMetadataOTelRules: rename db.system -> db.system.name in all 5
  SQL OTel rules; fix values per OTel DB semconv spec (mssql ->
  microsoft.sql_server, oracle -> oracle.db); add IsPresent("db.query.text")
  for SqlClient, MySql, Npgsql, Oracle; keep IsOptional for Sqlite
- Update SpanMetadataAPI: add "otel" dispatch case for IsNpgsql, IsMySql,
  IsSqlClient, IsOracle, IsSqlite
- Add NpgsqlCommandOtelTests, MySqlCommandOtelTests, SystemDataSqlClientOtelTests
  integration test classes with DD_TRACE_OTEL_SEMANTICS_ENABLED=true

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…CTE null-table handling

- Replace verb.ToUpperInvariant() switch with GetOperation() using OrdinalIgnoreCase comparisons (no allocation)
- Change WITH/CTE prefix to return (null, null) instead of ("SELECT", null) — WITH is not itself an operation
- Add IsJoinKeyword() check in ExtractTableAfterFrom to return null table for JOIN queries; handles optional table alias before JOIN keyword
- Add INSERT INTO known-limitation comment for unhandled string literals
- Add Parse_WithCte_ReturnsNullOperation and Parse_JoinQuery_ReturnsNullTable test cases; remove WITH case from Parse_AmbiguousSelect_ReturnsNullTable

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@github-actions

Copy link
Copy Markdown
Contributor

Snapshots difference summary

The following differences have been observed in committed snapshots. It is meant to help the reviewer.
The diff is simplistic, so please check some files anyway while we improve it.

2 occurrences of :

-    "resource_spans": [
+    "resourceSpans": [
[...]
-                "string_value": "MyServiceName"
+                "stringValue": "MyServiceName"
[...]
-                "string_value": "1.0.x"
+                "stringValue": "1.0.x"
[...]
-                "string_value": "Guid_1"
+                "stringValue": "Guid_1"
[...]
-                "string_value": "sdk-name"
+                "stringValue": "sdk-name"
[...]
-                "string_value": "dotnet"
+                "stringValue": "dotnet"
[...]
-                "string_value": "sdk-version"
+                "stringValue": "sdk-version"
[...]
-        "scope_spans": [
+        "scopeSpans": [
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "int_value": "404"
+                      "intValue": "404"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                  "code": "STATUS_CODE_ERROR"
+                  "code": 2
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                  "code": "STATUS_CODE_OK"
+                  "code": 1
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                    "time_unix_nano": "0",
+                    "timeUnixNano": "0",
[...]
-                          "string_value": "ArgumentException"
+                          "stringValue": "ArgumentException"
[...]
-                          "string_value": "System.ArgumentException: Example argument exception"
+                          "stringValue": "System.ArgumentException: Example argument exception"
[...]
-                          "string_value": "Example argument exception"
+                          "stringValue": "Example argument exception"

1 occurrences of :

-                  "code": "STATUS_CODE_ERROR"
+                  "code": 2
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GET"
+                      "stringValue": "GET"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GET"
+                      "stringValue": "GET"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Redis"
+                      "stringValue": "Redis"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Kafka"
+                      "stringValue": "Kafka"
[...]
-                      "string_value": "Receive"
+                      "stringValue": "Receive"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Kafka"
+                      "stringValue": "Kafka"
[...]
-                      "string_value": "Receive"
+                      "stringValue": "Receive"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_PRODUCER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 4,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Kafka"
+                      "stringValue": "Kafka"
[...]
-                      "string_value": "Receive"
+                      "stringValue": "Receive"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CONSUMER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 5,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Kafka"
+                      "stringValue": "Kafka"
[...]
-                      "string_value": "Receive"
+                      "stringValue": "Receive"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "aws-api"
+                      "stringValue": "aws-api"
[...]
-                      "string_value": "S3"
+                      "stringValue": "S3"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "aws-api"
+                      "stringValue": "aws-api"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GRPC"
+                      "stringValue": "GRPC"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GRPC"
+                      "stringValue": "GRPC"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "aws"
+                      "stringValue": "aws"
[...]
-                      "string_value": "My-Function"
+                      "stringValue": "My-Function"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Datasource"
+                      "stringValue": "Datasource"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "query"
+                      "stringValue": "query"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Amqp"
+                      "stringValue": "Amqp"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Amqp"
+                      "stringValue": "Amqp"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CONSUMER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 5,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_PRODUCER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 4,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Saying hello!"
+                      "stringValue": "Saying hello!"
[...]
-                      "string_value": "\"str"
+                      "stringValue": "\"str"
[...]
-                      "int_value": "1"
+                      "intValue": "1"
[...]
-                      "bool_value": true
+                      "boolValue": true
[...]
-                      "double_value": 2.0
+                      "doubleValue": 2.0
[...]
-                      "array_value": {
+                      "arrayValue": {
[...]
-                            "string_value": "\"str1\""
+                            "stringValue": "\"str1\""
[...]
-                            "string_value": "str2"
+                            "stringValue": "str2"
[...]
-                            "string_value": "str3"
+                            "stringValue": "str3"

3 occurrences of :

-                      "array_value": {}
+                      "arrayValue": {}
[...]
-                      "array_value": {
+                      "arrayValue": {
[...]
-                            "int_value": "1"
+                            "intValue": "1"
[...]
-                            "int_value": "2"
+                            "intValue": "2"
[...]
-                            "int_value": "3"
+                            "intValue": "3"

3 occurrences of :

-                      "array_value": {}
+                      "arrayValue": {}
[...]
-                      "array_value": {
+                      "arrayValue": {
[...]
-                            "bool_value": false
+                            "boolValue": false
[...]
-                            "bool_value": true
+                            "boolValue": true
[...]
-                            "bool_value": false
+                            "boolValue": false

3 occurrences of :

-                      "array_value": {}
+                      "arrayValue": {}
[...]
-                      "array_value": {
+                      "arrayValue": {
[...]
-                            "double_value": 4.1
+                            "doubleValue": 4.1
[...]
-                            "double_value": 5.0
+                            "doubleValue": 5.0
[...]
-                            "double_value": 6.0
+                            "doubleValue": 6.0

3 occurrences of :

-                      "array_value": {}
+                      "arrayValue": {}
[...]
-                    "time_unix_nano": "0",
+                    "timeUnixNano": "0",
[...]
+                    "timeUnixNano": "0",
[...]
-                    "time_unix_nano": "0",
+                    "timeUnixNano": "0",
[...]
-                          "int_value": "1"
+                          "intValue": "1"
[...]
-                          "string_value": "Hello, World!"
+                          "stringValue": "Hello, World!"
[...]
-                          "array_value": {
+                          "arrayValue": {
[...]
-                                "int_value": "1"
+                                "intValue": "1"
[...]
-                                "int_value": "2"
+                                "intValue": "2"
[...]
-                                "int_value": "3"
+                                "intValue": "3"

6 occurrences of :

-                          "array_value": {
+                          "arrayValue": {
[...]
-                                "string_value": "str"
+                                "stringValue": "str"
[...]
-                                "string_value": "1"
+                                "stringValue": "1"

2 occurrences of :

-                          "array_value": {
+                          "arrayValue": {
[...]
-                                "string_value": "str"
+                                "stringValue": "str"
[...]
-                                "int_value": "2"
+                                "intValue": "2"

6 occurrences of :

-                          "array_value": {
+                          "arrayValue": {
[...]
-                                "string_value": "System.String[]"
+                                "stringValue": "System.String[]"
[...]
-                                "string_value": "System.String[]"
+                                "stringValue": "System.String[]"

3 occurrences of :

-                          "string_value": "System.Collections.Generic.Dictionary`2[System.String,System.String]"
+                          "stringValue": "System.Collections.Generic.Dictionary`2[System.String,System.String]"
[...]
-                    "time_unix_nano": "0",
+                    "timeUnixNano": "0",
[...]
-                          "int_value": "1"
+                          "intValue": "1"
[...]
-                          "string_value": "Hello, World!"
+                          "stringValue": "Hello, World!"
[...]
-                          "array_value": {
+                          "arrayValue": {
[...]
-                                "int_value": "1"
+                                "intValue": "1"
[...]
-                                "int_value": "2"
+                                "intValue": "2"
[...]
-                                "int_value": "3"
+                                "intValue": "3"

3 occurrences of :

-                          "string_value": "System.Collections.Generic.Dictionary`2[System.String,System.String]"
+                          "stringValue": "System.Collections.Generic.Dictionary`2[System.String,System.String]"

1 occurrences of :

-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id",
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id",

1 occurrences of :

-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id",
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id",
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id",
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "int_value": "404"
+                      "intValue": "404"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GET"
+                      "stringValue": "GET"
[...]
-                      "string_value": "ResourceNameOverride"
+                      "stringValue": "ResourceNameOverride"
[...]
-                      "string_value": "OperationNameOverride"
+                      "stringValue": "OperationNameOverride"
[...]
-                      "string_value": "ServiceNameOverride"
+                      "stringValue": "ServiceNameOverride"
[...]
-                      "string_value": "SpanTypeOverride"
+                      "stringValue": "SpanTypeOverride"
[...]
-                      "string_value": "true"
+                      "stringValue": "true"

1 occurrences of :

-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",

1 occurrences of :

-    "resource_spans": [
+    "resourceSpans": [
[...]
-                "string_value": "sdk-name"
+                "stringValue": "sdk-name"
[...]
-                "string_value": "dotnet"
+                "stringValue": "dotnet"
[...]
-                "string_value": "sdk-version"
+                "stringValue": "sdk-version"
[...]
-                "string_value": "unknown_service:dotnet"
+                "stringValue": "unknown_service:dotnet"
[...]
-        "scope_spans": [
+        "scopeSpans": [
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",

1 occurrences of :

-    "resource_spans": [
+    "resourceSpans": [
[...]
-                "string_value": "MyServiceName"
+                "stringValue": "MyServiceName"
[...]
-                "string_value": "1.0.x"
+                "stringValue": "1.0.x"
[...]
-                "string_value": "Guid_1"
+                "stringValue": "Guid_1"
[...]
-        "scope_spans": [
+        "scopeSpans": [
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "int_value": "404"
+                      "intValue": "404"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                  "code": "STATUS_CODE_ERROR"
+                  "code": 2
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                  "code": "STATUS_CODE_OK"
+                  "code": 1
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                    "time_unix_nano": "0",
+                    "timeUnixNano": "0",
[...]
-                          "string_value": "ArgumentException"
+                          "stringValue": "ArgumentException"
[...]
-                          "string_value": "System.ArgumentException: Example argument exception"
+                          "stringValue": "System.ArgumentException: Example argument exception"
[...]
-                          "string_value": "Example argument exception"
+                          "stringValue": "Example argument exception"

2 occurrences of :

-                  "code": "STATUS_CODE_ERROR"
+                  "code": 2
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GET"
+                      "stringValue": "GET"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GET"
+                      "stringValue": "GET"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Redis"
+                      "stringValue": "Redis"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Kafka"
+                      "stringValue": "Kafka"
[...]
-                      "string_value": "Receive"
+                      "stringValue": "Receive"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Kafka"
+                      "stringValue": "Kafka"
[...]
-                      "string_value": "Receive"
+                      "stringValue": "Receive"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_PRODUCER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 4,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Kafka"
+                      "stringValue": "Kafka"
[...]
-                      "string_value": "Receive"
+                      "stringValue": "Receive"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CONSUMER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 5,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Kafka"
+                      "stringValue": "Kafka"
[...]
-                      "string_value": "Receive"
+                      "stringValue": "Receive"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "aws-api"
+                      "stringValue": "aws-api"
[...]
-                      "string_value": "S3"
+                      "stringValue": "S3"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "aws-api"
+                      "stringValue": "aws-api"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GRPC"
+                      "stringValue": "GRPC"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GRPC"
+                      "stringValue": "GRPC"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "aws"
+                      "stringValue": "aws"
[...]
-                      "string_value": "My-Function"
+                      "stringValue": "My-Function"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Datasource"
+                      "stringValue": "Datasource"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "query"
+                      "stringValue": "query"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Amqp"
+                      "stringValue": "Amqp"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Amqp"
+                      "stringValue": "Amqp"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CLIENT",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 3,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_CONSUMER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 5,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_PRODUCER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 4,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "Saying hello!"
+                      "stringValue": "Saying hello!"
[...]
-                      "string_value": "\"str"
+                      "stringValue": "\"str"
[...]
-                      "int_value": "1"
+                      "intValue": "1"
[...]
-                      "bool_value": true
+                      "boolValue": true
[...]
-                      "double_value": 2.0
+                      "doubleValue": 2.0
[...]
-                      "array_value": {
+                      "arrayValue": {
[...]
-                            "string_value": "\"str1\""
+                            "stringValue": "\"str1\""
[...]
-                            "string_value": "str2"
+                            "stringValue": "str2"
[...]
-                            "string_value": "str3"
+                            "stringValue": "str3"

4 occurrences of :

-                          "array_value": {
+                          "arrayValue": {
[...]
-                                "string_value": "str"
+                                "stringValue": "str"
[...]
-                                "string_value": "2"
+                                "stringValue": "2"

1 occurrences of :

-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id"
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id"
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id"
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id"
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "int_value": "404"
+                      "intValue": "404"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GET"
+                      "stringValue": "GET"
[...]
-                      "string_value": "ResourceNameOverride"
+                      "stringValue": "ResourceNameOverride"
[...]
-                      "string_value": "OperationNameOverride"
+                      "stringValue": "OperationNameOverride"
[...]
-                      "string_value": "ServiceNameOverride"
+                      "stringValue": "ServiceNameOverride"
[...]
-                      "string_value": "SpanTypeOverride"
+                      "stringValue": "SpanTypeOverride"
[...]
-                      "string_value": "true"
+                      "stringValue": "true"

1 occurrences of :

-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"

1 occurrences of :

-    "resource_spans": [
+    "resourceSpans": [
[...]
-                "string_value": "unknown_service:dotnet"
+                "stringValue": "unknown_service:dotnet"
[...]
-        "scope_spans": [
+        "scopeSpans": [
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"

1 occurrences of :

-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id"
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id"
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id"
[...]
-                    "trace_id": "normalized-trace-id",
-                    "span_id": "normalized-span-id"
+                    "traceId": "normalized-trace-id",
+                    "spanId": "normalized-span-id"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "int_value": "404"
+                      "intValue": "404"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
-                "parent_span_id": "normalized-parent-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_SERVER",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0",
+                "kind": 2,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0",
[...]
-                      "string_value": "GET"
+                      "stringValue": "GET"
[...]
-                      "string_value": "ResourceNameOverride"
+                      "stringValue": "ResourceNameOverride"
[...]
-                      "string_value": "OperationNameOverride"
+                      "stringValue": "OperationNameOverride"
[...]
-                      "string_value": "ServiceNameOverride"
+                      "stringValue": "ServiceNameOverride"
[...]
-                      "string_value": "SpanTypeOverride"
+                      "stringValue": "SpanTypeOverride"
[...]
-                      "string_value": "true"
+                      "stringValue": "true"

1 occurrences of :

-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "parent_span_id": "normalized-parent-span-id",
+                "parentSpanId": "normalized-parent-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"

1 occurrences of :

-    "resource_spans": [
+    "resourceSpans": [
[...]
-                "string_value": "sdk-name"
+                "stringValue": "sdk-name"
[...]
-                "string_value": "dotnet"
+                "stringValue": "dotnet"
[...]
-                "string_value": "sdk-version"
+                "stringValue": "sdk-version"
[...]
-                "string_value": "unknown_service:dotnet"
+                "stringValue": "unknown_service:dotnet"
[...]
-        "scope_spans": [
+        "scopeSpans": [
[...]
-                "trace_id": "normalized-trace-id",
-                "span_id": "normalized-span-id",
+                "traceId": "normalized-trace-id",
+                "spanId": "normalized-span-id",
[...]
-                "kind": "SPAN_KIND_INTERNAL",
-                "start_time_unix_nano": "0",
-                "end_time_unix_nano": "0"
+                "kind": 1,
+                "startTimeUnixNano": "0",
+                "endTimeUnixNano": "0"

@datadog-datadog-prod-us1-2

datadog-datadog-prod-us1-2 Bot commented Jun 18, 2026

Copy link
Copy Markdown
Contributor

Pipelines

Fix all issues with BitsAI

⚠️ Warnings

🚦 1 Pipeline job failed

Label PRs | add-labels   View in Datadog   GitHub Actions

Useful? React with 👍 / 👎

This comment will be updated automatically if new data arrives.
🔗 Commit SHA: ec790bb | Docs | Datadog PR Page | Give us feedback!

@dd-trace-dotnet-ci-bot

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8803) and master.

✅ No regressions detected - check the details below

Full Metrics Comparison

FakeDbCommand

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration74.75 ± (74.57 - 74.97) ms72.49 ± (72.48 - 72.79) ms-3.0%
.NET Framework 4.8 - Bailout
duration78.74 ± (78.55 - 78.94) ms76.74 ± (76.69 - 77.04) ms-2.5%
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1100.92 ± (1099.95 - 1107.15) ms1095.97 ± (1097.87 - 1105.01) ms-0.4%
.NET Core 3.1 - Baseline
process.internal_duration_ms22.69 ± (22.64 - 22.73) ms22.43 ± (22.39 - 22.46) ms-1.2%
process.time_to_main_ms85.75 ± (85.49 - 86.02) ms83.78 ± (83.59 - 83.97) ms-2.3%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.92 ± (10.92 - 10.93) MB10.92 ± (10.91 - 10.92) MB-0.0%
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms22.43 ± (22.38 - 22.47) ms22.65 ± (22.60 - 22.70) ms+1.0%✅⬆️
process.time_to_main_ms85.70 ± (85.52 - 85.88) ms87.09 ± (86.86 - 87.32) ms+1.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.97 ± (10.96 - 10.97) MB10.95 ± (10.94 - 10.95) MB-0.2%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms213.56 ± (212.68 - 214.44) ms213.75 ± (212.81 - 214.68) ms+0.1%✅⬆️
process.time_to_main_ms537.55 ± (536.32 - 538.78) ms540.44 ± (539.01 - 541.87) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.70 ± (48.66 - 48.73) MB48.60 ± (48.57 - 48.63) MB-0.2%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.1%
.NET 6 - Baseline
process.internal_duration_ms21.41 ± (21.35 - 21.46) ms21.29 ± (21.25 - 21.32) ms-0.6%
process.time_to_main_ms74.18 ± (73.91 - 74.45) ms72.81 ± (72.65 - 72.96) ms-1.8%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.63 ± (10.62 - 10.63) MB10.64 ± (10.64 - 10.64) MB+0.1%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms21.20 ± (21.16 - 21.24) ms21.57 ± (21.53 - 21.62) ms+1.8%✅⬆️
process.time_to_main_ms74.46 ± (74.27 - 74.64) ms75.89 ± (75.66 - 76.13) ms+1.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.74 ± (10.74 - 10.74) MB10.76 ± (10.76 - 10.76) MB+0.2%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms367.07 ± (364.80 - 369.34) ms373.08 ± (370.83 - 375.33) ms+1.6%✅⬆️
process.time_to_main_ms547.70 ± (546.53 - 548.86) ms545.68 ± (544.51 - 546.85) ms-0.4%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed50.14 ± (50.12 - 50.17) MB50.09 ± (50.06 - 50.11) MB-0.1%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.4%
.NET 8 - Baseline
process.internal_duration_ms19.59 ± (19.54 - 19.63) ms19.50 ± (19.47 - 19.54) ms-0.4%
process.time_to_main_ms73.61 ± (73.41 - 73.81) ms73.02 ± (72.88 - 73.17) ms-0.8%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.66 ± (7.66 - 7.67) MB7.70 ± (7.69 - 7.70) MB+0.4%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.49 ± (19.45 - 19.53) ms19.45 ± (19.42 - 19.48) ms-0.2%
process.time_to_main_ms74.17 ± (73.98 - 74.36) ms73.65 ± (73.53 - 73.77) ms-0.7%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.72 ± (7.72 - 7.73) MB7.74 ± (7.73 - 7.75) MB+0.2%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms297.34 ± (294.88 - 299.80) ms296.29 ± (293.92 - 298.66) ms-0.4%
process.time_to_main_ms494.71 ± (493.81 - 495.62) ms498.20 ± (497.19 - 499.20) ms+0.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed37.13 ± (37.10 - 37.16) MB37.12 ± (37.09 - 37.15) MB-0.0%
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)+0.7%✅⬆️

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration201.68 ± (201.25 - 202.19) ms203.20 ± (202.86 - 203.88) ms+0.8%✅⬆️
.NET Framework 4.8 - Bailout
duration204.71 ± (204.42 - 205.41) ms206.87 ± (206.62 - 207.47) ms+1.1%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1212.35 ± (1212.37 - 1218.34) ms1204.93 ± (1205.01 - 1210.52) ms-0.6%
.NET Core 3.1 - Baseline
process.internal_duration_ms195.94 ± (195.47 - 196.41) ms194.74 ± (194.27 - 195.21) ms-0.6%
process.time_to_main_ms85.25 ± (84.98 - 85.52) ms84.43 ± (84.15 - 84.70) ms-1.0%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.01 ± (15.99 - 16.03) MB16.03 ± (16.01 - 16.05) MB+0.1%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-1.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms195.57 ± (195.06 - 196.07) ms194.75 ± (194.35 - 195.16) ms-0.4%
process.time_to_main_ms86.25 ± (85.97 - 86.53) ms85.77 ± (85.48 - 86.06) ms-0.6%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.16 ± (16.13 - 16.19) MB16.11 ± (16.08 - 16.13) MB-0.3%
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (20 - 21)-0.3%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms388.33 ± (387.05 - 389.62) ms389.37 ± (388.16 - 390.58) ms+0.3%✅⬆️
process.time_to_main_ms543.41 ± (542.34 - 544.48) ms542.75 ± (541.44 - 544.05) ms-0.1%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed58.13 ± (57.91 - 58.35) MB58.35 ± (58.14 - 58.56) MB+0.4%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)-0.1%
.NET 6 - Baseline
process.internal_duration_ms200.42 ± (199.91 - 200.93) ms201.16 ± (200.70 - 201.62) ms+0.4%✅⬆️
process.time_to_main_ms73.80 ± (73.52 - 74.09) ms73.99 ± (73.74 - 74.24) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.33 ± (16.31 - 16.36) MB16.42 ± (16.39 - 16.44) MB+0.5%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)-0.7%
.NET 6 - Bailout
process.internal_duration_ms199.79 ± (199.35 - 200.24) ms200.13 ± (199.67 - 200.58) ms+0.2%✅⬆️
process.time_to_main_ms75.05 ± (74.78 - 75.32) ms75.15 ± (74.91 - 75.39) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.42 ± (16.39 - 16.45) MB16.44 ± (16.41 - 16.46) MB+0.1%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms584.86 ± (582.21 - 587.51) ms588.43 ± (586.04 - 590.83) ms+0.6%✅⬆️
process.time_to_main_ms552.12 ± (551.05 - 553.19) ms552.99 ± (551.88 - 554.10) ms+0.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.34 ± (61.25 - 61.43) MB61.68 ± (61.58 - 61.77) MB+0.5%✅⬆️
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)-0.1%
.NET 8 - Baseline
process.internal_duration_ms198.01 ± (197.53 - 198.48) ms198.60 ± (198.08 - 199.11) ms+0.3%✅⬆️
process.time_to_main_ms73.22 ± (72.90 - 73.54) ms73.51 ± (73.27 - 73.75) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.72 ± (11.70 - 11.74) MB11.71 ± (11.69 - 11.73) MB-0.1%
runtime.dotnet.threads.count19 ± (18 - 19)18 ± (18 - 18)-1.1%
.NET 8 - Bailout
process.internal_duration_ms197.63 ± (197.30 - 197.96) ms199.79 ± (199.32 - 200.27) ms+1.1%✅⬆️
process.time_to_main_ms74.03 ± (73.82 - 74.24) ms74.89 ± (74.69 - 75.08) ms+1.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.74 ± (11.72 - 11.76) MB11.76 ± (11.74 - 11.79) MB+0.2%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)20 ± (19 - 20)+1.0%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms513.20 ± (510.23 - 516.17) ms514.03 ± (511.25 - 516.81) ms+0.2%✅⬆️
process.time_to_main_ms506.82 ± (505.90 - 507.73) ms501.41 ± (500.52 - 502.30) ms-1.1%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed50.91 ± (50.87 - 50.95) MB51.01 ± (50.97 - 51.05) MB+0.2%✅⬆️
runtime.dotnet.threads.count30 ± (29 - 30)30 ± (30 - 30)+0.8%✅⬆️
Comparison explanation

Execution-time benchmarks measure the whole time it takes to execute a program, and are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are highlighted in **red**. The following thresholds were used for comparing the execution times:

  • Welch test with statistical test for significance of 5%
  • Only results indicating a difference greater than 5% and 5 ms are considered.

Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard.

Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph).

Duration charts
FakeDbCommand (.NET Framework 4.8)
gantt
    title Execution time (ms) FakeDbCommand (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8803) - mean (73ms)  : 70, 75
    master - mean (75ms)  : 72, 78

    section Bailout
    This PR (8803) - mean (77ms)  : 75, 79
    master - mean (79ms)  : 76, 82

    section CallTarget+Inlining+NGEN
    This PR (8803) - mean (1,101ms)  : 1050, 1152
    master - mean (1,104ms)  : 1050, 1157

Loading
FakeDbCommand (.NET Core 3.1)
gantt
    title Execution time (ms) FakeDbCommand (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8803) - mean (114ms)  : 110, 118
    master - mean (116ms)  : 111, 122

    section Bailout
    This PR (8803) - mean (118ms)  : 113, 122
    master - mean (116ms)  : 114, 118

    section CallTarget+Inlining+NGEN
    This PR (8803) - mean (794ms)  : 774, 813
    master - mean (789ms)  : 764, 814

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8803) - mean (101ms)  : 98, 104
    master - mean (103ms)  : 98, 107

    section Bailout
    This PR (8803) - mean (105ms)  : 101, 109
    master - mean (103ms)  : 99, 106

    section CallTarget+Inlining+NGEN
    This PR (8803) - mean (949ms)  : 913, 985
    master - mean (951ms)  : 905, 996

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8803) - mean (100ms)  : 98, 103
    master - mean (101ms)  : 97, 105

    section Bailout
    This PR (8803) - mean (101ms)  : 99, 102
    master - mean (101ms)  : 98, 105

    section CallTarget+Inlining+NGEN
    This PR (8803) - mean (824ms)  : 791, 856
    master - mean (822ms)  : 786, 858

Loading
HttpMessageHandler (.NET Framework 4.8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8803) - mean (203ms)  : 196, 210
    master - mean (202ms)  : 196, 207

    section Bailout
    This PR (8803) - mean (207ms)  : 203, 211
    master - mean (205ms)  : 200, 210

    section CallTarget+Inlining+NGEN
    This PR (8803) - mean (1,208ms)  : 1171, 1244
    master - mean (1,215ms)  : 1173, 1258

Loading
HttpMessageHandler (.NET Core 3.1)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8803) - mean (289ms)  : 279, 299
    master - mean (290ms)  : 280, 301

    section Bailout
    This PR (8803) - mean (290ms)  : 284, 297
    master - mean (291ms)  : 284, 298

    section CallTarget+Inlining+NGEN
    This PR (8803) - mean (973ms)  : 951, 995
    master - mean (973ms)  : 949, 997

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8803) - mean (284ms)  : 278, 291
    master - mean (284ms)  : 277, 291

    section Bailout
    This PR (8803) - mean (284ms)  : 276, 293
    master - mean (284ms)  : 277, 290

    section CallTarget+Inlining+NGEN
    This PR (8803) - mean (1,173ms)  : 1128, 1218
    master - mean (1,172ms)  : 1133, 1211

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8803) - mean (283ms)  : 275, 290
    master - mean (282ms)  : 276, 288

    section Bailout
    This PR (8803) - mean (284ms)  : 278, 291
    master - mean (282ms)  : 276, 287

    section CallTarget+Inlining+NGEN
    This PR (8803) - mean (1,048ms)  : 1001, 1094
    master - mean (1,054ms)  : 1000, 1107

Loading

@pr-commenter

pr-commenter Bot commented Jun 18, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-06-18 18:33:01

Comparing candidate commit ec790bb in PR branch ai-week-3-db-semconv with baseline commit 73f5254 in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 1 performance regressions! Performance is the same for 71 metrics, 0 unstable metrics, 58 known flaky benchmarks, 68 flaky benchmarks without significant changes.

Explanation

This is an A/B test comparing a candidate commit's performance against that of a baseline commit. Performance changes are noted in the tables below as:

  • 🟩 = significantly better candidate vs. baseline
  • 🟥 = significantly worse candidate vs. baseline

We compute a confidence interval (CI) over the relative difference of means between metrics from the candidate and baseline commits, considering the baseline as the reference.

If the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD), the change is considered significant.

Feel free to reach out to #apm-benchmarking-platform on Slack if you have any questions.

More details about the CI and significant changes

You can imagine this CI as a range of values that is likely to contain the true difference of means between the candidate and baseline commits.

CIs of the difference of means are often centered around 0%, because often changes are not that big:

---------------------------------(------|---^--------)-------------------------------->
                              -0.6%    0%  0.3%     +1.2%
                                 |          |        |
         lower bound of the CI --'          |        |
sample mean (center of the CI) -------------'        |
         upper bound of the CI ----------------------'

As described above, a change is considered significant if the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD).

For instance, for an execution time metric, this confidence interval indicates a significantly worse performance:

----------------------------------------|---------|---(---------^---------)---------->
                                       0%        1%  1.3%      2.2%      3.1%
                                                  |   |         |         |
       significant impact threshold --------------'   |         |         |
                      lower bound of CI --------------'         |         |
       sample mean (center of the CI) --------------------------'         |
                      upper bound of CI ----------------------------------'

scenario:Benchmarks.Trace.HttpClientBenchmark.SendAsync net472

  • 🟥 throughput [-5234.084op/s; -5043.508op/s] or [-5.975%; -5.758%]

Known flaky benchmarks

These benchmarks are marked as flaky and will not trigger a failure. Modify FLAKY_BENCHMARKS_REGEX to control which benchmarks are marked as flaky.

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net472

  • 🟥 throughput [-6981.408op/s; -6395.501op/s] or [-8.278%; -7.583%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+311.687ms; +319.520ms] or [+154.670%; +158.557%]
  • 🟥 throughput [-44.234op/s; -40.203op/s] or [-7.959%; -7.233%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟥 execution_time [+382.448ms; +386.295ms] or [+302.157%; +305.197%]
  • 🟩 throughput [+90.179op/s; +96.540op/s] or [+11.890%; +12.728%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces netcoreapp3.1

  • 🟥 execution_time [+390.322ms; +394.007ms] or [+345.420%; +348.681%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody net472

  • 🟥 allocated_mem [+1.308KB; +1.308KB] or [+27.528%; +27.540%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody net6.0

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+9.976%; +9.987%]
  • 🟩 execution_time [-16.016ms; -11.838ms] or [-7.480%; -5.529%]
  • 🟩 throughput [+7673.879op/s; +10478.110op/s] or [+5.601%; +7.648%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody netcoreapp3.1

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+27.500%; +27.510%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody net472

  • 🟥 allocated_mem [+1.307KB; +1.307KB] or [+105.743%; +105.758%]
  • 🟥 throughput [-269723.770op/s; -263597.519op/s] or [-27.540%; -26.915%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody net6.0

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+38.557%; +38.566%]
  • 🟩 execution_time [-26.880ms; -22.004ms] or [-11.987%; -9.813%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody netcoreapp3.1

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+105.288%; +105.304%]
  • 🟥 throughput [-153480.319op/s; -137665.791op/s] or [-22.052%; -19.780%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody net6.0

  • 🟩 throughput [+8660.063op/s; +11705.242op/s] or [+5.510%; +7.448%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody netcoreapp3.1

  • 🟩 throughput [+9798.097op/s; +12455.631op/s] or [+7.805%; +9.923%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net6.0

  • 🟩 throughput [+460948.745op/s; +476923.681op/s] or [+15.370%; +15.903%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody netcoreapp3.1

  • 🟩 execution_time [-18.541ms; -14.185ms] or [-8.547%; -6.539%]
  • 🟩 throughput [+172173.480op/s; +225396.102op/s] or [+6.834%; +8.947%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs net472

  • 🟥 execution_time [+299.537ms; +300.378ms] or [+149.668%; +150.089%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs net6.0

  • 🟥 execution_time [+297.683ms; +310.809ms] or [+150.122%; +156.742%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs netcoreapp3.1

  • 🟥 execution_time [+300.057ms; +302.965ms] or [+151.145%; +152.610%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs net472

  • 🟥 execution_time [+297.394ms; +298.479ms] or [+146.068%; +146.601%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs net6.0

  • 🟥 execution_time [+294.228ms; +297.001ms] or [+143.837%; +145.193%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs netcoreapp3.1

  • 🟥 execution_time [+304.057ms; +306.593ms] or [+151.967%; +153.235%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net6.0

  • 🟥 execution_time [+18.780µs; +42.374µs] or [+5.995%; +13.528%]
  • 🟥 throughput [-398.339op/s; -199.760op/s] or [-12.417%; -6.227%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+300.168ms; +300.904ms] or [+149.814%; +150.182%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net6.0

  • 🟥 execution_time [+418.026ms; +425.899ms] or [+454.203%; +462.756%]
  • 🟩 throughput [+644.174op/s; +844.365op/s] or [+5.293%; +6.938%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest netcoreapp3.1

  • unstable execution_time [+249.799ms; +313.728ms] or [+189.670%; +238.211%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 allocated_mem [+2.848KB; +2.853KB] or [+5.059%; +5.069%]
  • unstable execution_time [+317.224ms; +361.349ms] or [+145.856%; +166.145%]
  • 🟥 throughput [-499.641op/s; -458.174op/s] or [-45.272%; -41.515%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • unstable execution_time [+206.621ms; +339.936ms] or [+88.053%; +144.866%]
  • 🟥 throughput [-665.159op/s; -581.707op/s] or [-44.366%; -38.800%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces netcoreapp3.1

  • 🟥 execution_time [+339.562ms; +352.050ms] or [+203.097%; +210.567%]
  • 🟥 throughput [-425.387op/s; -386.518op/s] or [-29.619%; -26.913%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+301.876ms; +303.085ms] or [+152.019%; +152.628%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net6.0

  • 🟥 execution_time [+302.975ms; +304.775ms] or [+151.821%; +152.723%]
  • 🟩 throughput [+34920.112op/s; +44020.016op/s] or [+5.506%; +6.940%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch netcoreapp3.1

  • 🟥 execution_time [+300.476ms; +304.110ms] or [+150.946%; +152.772%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+302.291ms; +303.708ms] or [+151.800%; +152.512%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net6.0

  • 🟥 execution_time [+296.520ms; +298.680ms] or [+146.616%; +147.684%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync netcoreapp3.1

  • 🟥 execution_time [+304.037ms; +307.953ms] or [+154.099%; +156.084%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+300.876ms; +303.154ms] or [+151.012%; +152.156%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net6.0

  • 🟥 execution_time [+302.645ms; +304.406ms] or [+150.841%; +151.719%]
  • 🟩 throughput [+34897.875op/s; +45935.061op/s] or [+6.930%; +9.121%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync netcoreapp3.1

  • 🟥 execution_time [+299.159ms; +303.269ms] or [+148.829%; +150.874%]

scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net6.0

  • 🟩 execution_time [-15.970ms; -12.316ms] or [-7.426%; -5.727%]
  • 🟩 throughput [+18460.200op/s; +25718.470op/s] or [+5.064%; +7.055%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark net472

  • unstable execution_time [+14.722µs; +60.528µs] or [+3.637%; +14.951%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark net6.0

  • 🟩 allocated_mem [-25.814KB; -25.793KB] or [-9.416%; -9.409%]
  • unstable execution_time [+13.309µs; +114.018µs] or [+2.630%; +22.535%]
  • unstable throughput [-276.527op/s; -2.832op/s] or [-13.799%; -0.141%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark netcoreapp3.1

  • unstable execution_time [-42.141µs; +19.148µs] or [-7.303%; +3.318%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net6.0

  • unstable execution_time [+11.731µs; +17.391µs] or [+27.729%; +41.108%]
  • 🟥 throughput [-6882.413op/s; -4823.328op/s] or [-28.973%; -20.305%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark netcoreapp3.1

  • unstable execution_time [-13.433µs; -5.429µs] or [-20.841%; -8.423%]
  • unstable throughput [+1328.718op/s; +3042.896op/s] or [+8.152%; +18.669%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+302.547ms; +303.790ms] or [+152.924%; +153.552%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net6.0

  • 🟥 execution_time [+303.278ms; +305.498ms] or [+154.368%; +155.497%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog netcoreapp3.1

  • 🟥 execution_time [+299.354ms; +302.813ms] or [+149.863%; +151.595%]

scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net6.0

  • 🟩 throughput [+39102.400op/s; +42329.568op/s] or [+7.401%; +8.012%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+298.193ms; +300.333ms] or [+148.622%; +149.689%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net6.0

  • 🟥 execution_time [+301.004ms; +309.184ms] or [+151.150%; +155.257%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog netcoreapp3.1

  • 🟥 execution_time [+302.339ms; +304.675ms] or [+153.327%; +154.511%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+299.118ms; +300.175ms] or [+149.202%; +149.729%]
  • 🟩 throughput [+61020781.168op/s; +61409099.339op/s] or [+44.439%; +44.722%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net6.0

  • 🟥 execution_time [+422.082ms; +428.922ms] or [+524.934%; +533.440%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore netcoreapp3.1

  • 🟥 execution_time [+299.550ms; +300.604ms] or [+149.409%; +149.934%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net6.0

  • 🟩 throughput [+100157.777op/s; +109745.888op/s] or [+9.351%; +10.247%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope netcoreapp3.1

  • 🟩 throughput [+60664.449op/s; +80531.144op/s] or [+7.022%; +9.321%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan netcoreapp3.1

  • 🟩 throughput [+88585.065op/s; +97525.439op/s] or [+8.798%; +9.686%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net6.0

  • 🟩 throughput [+47890.551op/s; +53829.072op/s] or [+8.696%; +9.774%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes netcoreapp3.1

  • 🟩 throughput [+25406.523op/s; +35041.985op/s] or [+5.687%; +7.844%]

scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net6.0

  • 🟩 throughput [+78896.972op/s; +96345.605op/s] or [+8.815%; +10.764%]

Known flaky benchmarks without significant changes:

  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net6.0
  • scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild netcoreapp3.1
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark netcoreapp3.1
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net472
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog netcoreapp3.1
  • scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive netcoreapp3.1
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net6.0
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin netcoreapp3.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant