diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/ElasticsearchNetCommon.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/ElasticsearchNetCommon.cs index ce938580bdbb..9fdf2cdffd04 100644 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/ElasticsearchNetCommon.cs +++ b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/ElasticsearchNetCommon.cs @@ -30,17 +30,16 @@ public static Scope CreateScope(Tracer tracer, IntegrationId integrationId, R return null; } - var pathAndQuery = requestData.Path; - string method = requestData.Method; + string method = requestData.Method.ToString(); var url = requestData.Uri?.ToString(); - var scope = CreateScope(tracer, integrationId, pathAndQuery, method, pipeline.RequestParameters, out var tags); + var scope = CreateScope(tracer, integrationId, method, pipeline.RequestParameters, out var tags); tags.Url = url; tags.Host = HttpRequestUtils.GetNormalizedHost(requestData.Uri?.Host); return scope; } - public static Scope CreateScope(Tracer tracer, IntegrationId integrationId, string path, string method, object requestParameters, out ElasticsearchTags tags) + public static Scope CreateScope(Tracer tracer, IntegrationId integrationId, string method, object requestParameters, out ElasticsearchTags tags) { if (!tracer.Settings.IsIntegrationEnabled(integrationId)) { @@ -61,7 +60,7 @@ public static Scope CreateScope(Tracer tracer, IntegrationId integrationId, stri { scope = tracer.StartActiveInternal(operationName, serviceName: serviceName, tags: tags); var span = scope.Span; - span.ResourceName = requestName ?? path ?? string.Empty; + span.ResourceName = requestName ?? string.Empty; span.Type = DatabaseType; tags.Action = requestName; tags.Method = method; diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/IRequestData.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/IRequestData.cs index c40a6cf0026c..af5b33ea80cd 100644 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/IRequestData.cs +++ b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/IRequestData.cs @@ -12,11 +12,6 @@ namespace Datadog.Trace.ClrProfiler.AutoInstrumentation.Elasticsearch /// internal interface IRequestData { - /// - /// Gets the path of the request - /// - string Path { get; } - /// /// Gets the URI of the request /// @@ -25,6 +20,6 @@ internal interface IRequestData /// /// Gets the HTTP method of the request /// - string Method { get; } + HttpMethod Method { get; } } } diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestDataV5.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestDataV5.cs deleted file mode 100644 index 4f912e9f8e58..000000000000 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestDataV5.cs +++ /dev/null @@ -1,37 +0,0 @@ -// -// Unless explicitly stated otherwise all files in this repository are licensed under the Apache 2 License. -// This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2017 Datadog, Inc. -// - -using System; -using Datadog.Trace.DuckTyping; - -namespace Datadog.Trace.ClrProfiler.AutoInstrumentation.Elasticsearch.V5 -{ - /// - /// Duck-copy struct for RequestData - /// - internal struct RequestDataV5 : IRequestData - { - private Proxy _data; - - public RequestDataV5(object source) - { - _data = source.DuckCast(); - } - - public string Path => _data.Path; - - public Uri Uri => _data.Uri; - - public string Method => _data.Method.ToString(); - - [DuckCopy] - public struct Proxy - { - public string Path; - public HttpMethod Method; - public Uri Uri; - } - } -} diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestPipeline_CallElasticsearchAsync_Integration.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestPipeline_CallElasticsearchAsync_Integration.cs index daf45e19e97e..64c4f984b9cf 100644 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestPipeline_CallElasticsearchAsync_Integration.cs +++ b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestPipeline_CallElasticsearchAsync_Integration.cs @@ -38,8 +38,9 @@ public class RequestPipeline_CallElasticsearchAsync_Integration /// The cancellation token /// Calltarget state value internal static CallTargetState OnMethodBegin(TTarget instance, TRequestData requestData, CancellationToken cancellationToken) + where TRequestData : IRequestData { - var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV5Constants.IntegrationId, instance.DuckCast(), new RequestDataV5(requestData)); + var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV5Constants.IntegrationId, instance.DuckCast(), requestData); return new CallTargetState(scope); } diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestPipeline_CallElasticsearch_Integration.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestPipeline_CallElasticsearch_Integration.cs index 8ed9bcd2bce4..4cea718f0707 100644 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestPipeline_CallElasticsearch_Integration.cs +++ b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V5/RequestPipeline_CallElasticsearch_Integration.cs @@ -36,8 +36,9 @@ public class RequestPipeline_CallElasticsearch_Integration /// The request data /// Calltarget state value internal static CallTargetState OnMethodBegin(TTarget instance, TRequestData requestData) + where TRequestData : IRequestData { - var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV5Constants.IntegrationId, instance.DuckCast(), new RequestDataV5(requestData)); + var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV5Constants.IntegrationId, instance.DuckCast(), requestData); return new CallTargetState(scope); } diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestDataV6.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestDataV6.cs deleted file mode 100644 index 7f721f36b8c6..000000000000 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestDataV6.cs +++ /dev/null @@ -1,37 +0,0 @@ -// -// Unless explicitly stated otherwise all files in this repository are licensed under the Apache 2 License. -// This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2017 Datadog, Inc. -// - -using System; -using Datadog.Trace.DuckTyping; - -namespace Datadog.Trace.ClrProfiler.AutoInstrumentation.Elasticsearch.V6 -{ - /// - /// Duck-copy struct for RequestData - /// - internal struct RequestDataV6 : IRequestData - { - private Proxy _data; - - public RequestDataV6(object source) - { - _data = source.DuckCast(); - } - - public string Path => _data.PathAndQuery; - - public Uri Uri => _data.Uri; - - public string Method => _data.Method.ToString(); - - [DuckCopy] - public struct Proxy - { - public string PathAndQuery; - public HttpMethod Method; - public Uri Uri; - } - } -} diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestPipeline_CallElasticsearchAsync_Integration.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestPipeline_CallElasticsearchAsync_Integration.cs index c8aac46e6e1a..d73dc403b13f 100644 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestPipeline_CallElasticsearchAsync_Integration.cs +++ b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestPipeline_CallElasticsearchAsync_Integration.cs @@ -38,8 +38,9 @@ public class RequestPipeline_CallElasticsearchAsync_Integration /// The cancellation token /// Calltarget state value internal static CallTargetState OnMethodBegin(TTarget instance, TRequestData requestData, CancellationToken cancellationToken) + where TRequestData : IRequestData { - var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV6Constants.IntegrationId, instance.DuckCast(), new RequestDataV6(requestData)); + var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV6Constants.IntegrationId, instance.DuckCast(), requestData); return new CallTargetState(scope); } diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestPipeline_CallElasticsearch_Integration.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestPipeline_CallElasticsearch_Integration.cs index 3a0ca306c919..1339b3456301 100644 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestPipeline_CallElasticsearch_Integration.cs +++ b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V6/RequestPipeline_CallElasticsearch_Integration.cs @@ -36,8 +36,9 @@ public class RequestPipeline_CallElasticsearch_Integration /// The request data /// Calltarget state value internal static CallTargetState OnMethodBegin(TTarget instance, TRequestData requestData) + where TRequestData : IRequestData { - var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV6Constants.IntegrationId, instance.DuckCast(), new RequestDataV6(requestData)); + var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV6Constants.IntegrationId, instance.DuckCast(), requestData); return new CallTargetState(scope); } diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V7/Transport_RequestAsync_Integration.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V7/Transport_RequestAsync_Integration.cs index 41abc7d148d2..b9d0ca19e45b 100644 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V7/Transport_RequestAsync_Integration.cs +++ b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V7/Transport_RequestAsync_Integration.cs @@ -44,7 +44,7 @@ public class Transport_RequestAsync_Integration /// Calltarget state value internal static CallTargetState OnMethodBegin(TTarget instance, THttpMethod method, string path, CancellationToken cancellationToken, TPostData postData, TRequestParameters requestParameters) { - var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV7Constants.IntegrationId, path, method.ToString(), requestParameters, out var tags); + var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV7Constants.IntegrationId, method.ToString(), requestParameters, out var tags); return new CallTargetState(scope, tags); } diff --git a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V7/Transport_Request_Integration.cs b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V7/Transport_Request_Integration.cs index ba1580d6f31b..635e14cc26b1 100644 --- a/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V7/Transport_Request_Integration.cs +++ b/tracer/src/Datadog.Trace/ClrProfiler/AutoInstrumentation/Elasticsearch/V7/Transport_Request_Integration.cs @@ -42,7 +42,7 @@ public class Transport_Request_Integration /// Calltarget state value internal static CallTargetState OnMethodBegin(TTarget instance, THttpMethod method, string path, TPostData postData, TRequestParameters requestParameters) { - var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV7Constants.IntegrationId, path, method.ToString(), requestParameters, out var tags); + var scope = ElasticsearchNetCommon.CreateScope(Tracer.Instance, ElasticsearchV7Constants.IntegrationId, method.ToString(), requestParameters, out var tags); return new CallTargetState(scope, tags); } diff --git a/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch5Tests.cs b/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch5Tests.cs index 176cf7623d5e..2f9316f40639 100644 --- a/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch5Tests.cs +++ b/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch5Tests.cs @@ -3,22 +3,29 @@ // This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2017 Datadog, Inc. // +using System; using System.Collections.Generic; using System.Linq; +using System.Threading.Tasks; using Datadog.Trace.Configuration; using Datadog.Trace.ExtensionMethods; using Datadog.Trace.TestHelpers; +using VerifyXunit; using Xunit; using Xunit.Abstractions; namespace Datadog.Trace.ClrProfiler.IntegrationTests { [Trait("RequiresDockerDependency", "true")] + [UsesVerify] public class Elasticsearch5Tests : TracingIntegrationTest { + private const string ServiceName = "Samples.Elasticsearch"; + public Elasticsearch5Tests(ITestOutputHelper output) : base("Elasticsearch.V5", output) { + SetServiceName(ServiceName); SetServiceVersion("1.0.0"); } @@ -33,11 +40,11 @@ public static IEnumerable GetEnabledConfig() [MemberData(nameof(GetEnabledConfig))] [Trait("Category", "EndToEnd")] [Trait("Category", "ArmUnsupported")] - public void SubmitsTraces(string packageVersion, string metadataSchemaVersion) + public async Task SubmitsTraces(string packageVersion, string metadataSchemaVersion) { SetEnvironmentVariable("DD_TRACE_SPAN_ATTRIBUTE_SCHEMA", metadataSchemaVersion); var isExternalSpan = metadataSchemaVersion == "v0"; - var clientSpanServiceName = isExternalSpan ? $"{EnvironmentHelper.FullSampleName}-elasticsearch" : EnvironmentHelper.FullSampleName; + var clientSpanServiceName = isExternalSpan ? $"{ServiceName}-elasticsearch" : ServiceName; using var telemetry = this.ConfigureTelemetry(); using (var agent = EnvironmentHelper.GetMockAgent()) @@ -142,6 +149,25 @@ public void SubmitsTraces(string packageVersion, string metadataSchemaVersion) .OrderBy(s => s.Start) .ToList(); + var host = Environment.GetEnvironmentVariable("ELASTICSEARCH5_HOST"); + + var settings = VerifyHelper.GetSpanVerifierSettings(); + // normalise between running directly against localhost and against elasticsearch containers + settings.AddSimpleScrubber("out.host: localhost", "out.host: elasticsearch"); + settings.AddSimpleScrubber("out.host: elasticsearch5", "out.host: elasticsearch"); + settings.AddSimpleScrubber("out.host: elasticsearch7_arm64", "out.host: elasticsearch"); + settings.AddSimpleScrubber("peer.service: localhost", "peer.service: elasticsearch"); + settings.AddSimpleScrubber("peer.service: elasticsearch5", "peer.service: elasticsearch"); + settings.AddSimpleScrubber("peer.service: elasticsearch7_arm64", "peer.service: elasticsearch"); + if (!string.IsNullOrWhiteSpace(host)) + { + settings.AddSimpleScrubber(host, "localhost:00000"); + } + + await VerifyHelper.VerifySpans(spans, settings) + .UseTextForParameters($"Schema{metadataSchemaVersion.ToUpper()}") + .DisableRequireUniquePrefix(); + ValidateIntegrationSpans(spans, metadataSchemaVersion, expectedServiceName: clientSpanServiceName, isExternalSpan); ValidateSpans(spans, (span) => span.Resource, expected); telemetry.AssertIntegrationEnabled(IntegrationId.ElasticsearchNet); diff --git a/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch6Tests.cs b/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch6Tests.cs index 9802c3e984db..6ed6a1203c00 100644 --- a/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch6Tests.cs +++ b/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch6Tests.cs @@ -6,20 +6,26 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Threading.Tasks; using Datadog.Trace.Configuration; using Datadog.Trace.ExtensionMethods; using Datadog.Trace.TestHelpers; +using VerifyXunit; using Xunit; using Xunit.Abstractions; namespace Datadog.Trace.ClrProfiler.IntegrationTests { [Trait("RequiresDockerDependency", "true")] + [UsesVerify] public class Elasticsearch6Tests : TracingIntegrationTest { + private const string ServiceName = "Samples.Elasticsearch"; + public Elasticsearch6Tests(ITestOutputHelper output) : base("Elasticsearch", output) { + SetServiceName(ServiceName); SetServiceVersion("1.0.0"); } @@ -34,17 +40,18 @@ public static IEnumerable GetEnabledConfig() [MemberData(nameof(GetEnabledConfig))] [Trait("Category", "EndToEnd")] [Trait("Category", "ArmUnsupported")] - public void SubmitsTraces(string packageVersion, string metadataSchemaVersion) + public async Task SubmitsTraces(string packageVersion, string metadataSchemaVersion) { SetEnvironmentVariable("DD_TRACE_SPAN_ATTRIBUTE_SCHEMA", metadataSchemaVersion); var isExternalSpan = metadataSchemaVersion == "v0"; - var clientSpanServiceName = isExternalSpan ? $"{EnvironmentHelper.FullSampleName}-elasticsearch" : EnvironmentHelper.FullSampleName; + var clientSpanServiceName = isExternalSpan ? $"{ServiceName}-elasticsearch" : ServiceName; using var telemetry = this.ConfigureTelemetry(); using (var agent = EnvironmentHelper.GetMockAgent()) using (RunSampleAndWaitForExit(agent, packageVersion: packageVersion)) { var expected = new List(); + var version = string.IsNullOrEmpty(packageVersion) ? null : new Version(packageVersion); // commands with sync and async for (var i = 0; i < 2; i++) @@ -137,7 +144,9 @@ public void SubmitsTraces(string packageVersion, string metadataSchemaVersion) "DeleteUser", }); - if (string.IsNullOrEmpty(packageVersion) || string.Compare(packageVersion, "6.1.0", StringComparison.Ordinal) < 0) + // Remove spans that are only generated on 6.1+ + // The default version is 6.1.0, so we do not remove spans when the version number is null + if (version is not null && version < new Version(6, 1, 0)) { expected.Remove("SplitIndex"); expected.Remove("GetOverallBuckets"); @@ -150,6 +159,32 @@ public void SubmitsTraces(string packageVersion, string metadataSchemaVersion) .OrderBy(s => s.Start) .ToList(); + var snapshotSuffix = version switch + { + null => "6_1", // default is version 6.1.0 + { Major: 6, Minor: >= 1 } => "6_1", + _ => "6_0" + }; + + var host = Environment.GetEnvironmentVariable("ELASTICSEARCH6_HOST"); + + var settings = VerifyHelper.GetSpanVerifierSettings(); + // normalise between running directly against localhost and against elasticsearch containers + settings.AddSimpleScrubber("out.host: localhost", "out.host: elasticsearch"); + settings.AddSimpleScrubber("out.host: elasticsearch6", "out.host: elasticsearch"); + settings.AddSimpleScrubber("out.host: elasticsearch7_arm64", "out.host: elasticsearch"); + settings.AddSimpleScrubber("peer.service: localhost", "peer.service: elasticsearch"); + settings.AddSimpleScrubber("peer.service: elasticsearch6", "peer.service: elasticsearch"); + settings.AddSimpleScrubber("peer.service: elasticsearch7_arm64", "peer.service: elasticsearch"); + if (!string.IsNullOrWhiteSpace(host)) + { + settings.AddSimpleScrubber(host, "localhost:00000"); + } + + await VerifyHelper.VerifySpans(spans, settings) + .UseTextForParameters($"packageVersion={snapshotSuffix}.Schema{metadataSchemaVersion.ToUpper()}") + .DisableRequireUniquePrefix(); + ValidateIntegrationSpans(spans, metadataSchemaVersion, expectedServiceName: clientSpanServiceName, isExternalSpan); ValidateSpans(spans, (span) => span.Resource, expected); telemetry.AssertIntegrationEnabled(IntegrationId.ElasticsearchNet); diff --git a/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch7Tests.cs b/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch7Tests.cs index ca23ae711ae6..d1ccbe4d5876 100644 --- a/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch7Tests.cs +++ b/tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Elasticsearch7Tests.cs @@ -6,19 +6,25 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Threading.Tasks; using Datadog.Trace.Configuration; using Datadog.Trace.TestHelpers; +using VerifyXunit; using Xunit; using Xunit.Abstractions; namespace Datadog.Trace.ClrProfiler.IntegrationTests { [Trait("RequiresDockerDependency", "true")] + [UsesVerify] public class Elasticsearch7Tests : TracingIntegrationTest { + private const string ServiceName = "Samples.Elasticsearch"; + public Elasticsearch7Tests(ITestOutputHelper output) : base("Elasticsearch.V7", output) { + SetServiceName(ServiceName); SetServiceVersion("1.0.0"); } @@ -32,11 +38,11 @@ public static IEnumerable GetEnabledConfig() [SkippableTheory] [MemberData(nameof(GetEnabledConfig))] [Trait("Category", "EndToEnd")] - public void SubmitsTraces(string packageVersion, string metadataSchemaVersion) + public async Task SubmitsTraces(string packageVersion, string metadataSchemaVersion) { SetEnvironmentVariable("DD_TRACE_SPAN_ATTRIBUTE_SCHEMA", metadataSchemaVersion); var isExternalSpan = metadataSchemaVersion == "v0"; - var clientSpanServiceName = isExternalSpan ? $"{EnvironmentHelper.FullSampleName}-elasticsearch" : EnvironmentHelper.FullSampleName; + var clientSpanServiceName = isExternalSpan ? $"{ServiceName}-elasticsearch" : ServiceName; using var telemetry = this.ConfigureTelemetry(); using (var agent = EnvironmentHelper.GetMockAgent()) @@ -148,6 +154,25 @@ public void SubmitsTraces(string packageVersion, string metadataSchemaVersion) .OrderBy(s => s.Start) .ToList(); + var host = Environment.GetEnvironmentVariable("ELASTICSEARCH7_HOST"); + + var settings = VerifyHelper.GetSpanVerifierSettings(); + // normalise between running directly against localhost and against elasticsearch containers + settings.AddSimpleScrubber("out.host: localhost", "out.host: elasticsearch"); + settings.AddSimpleScrubber("out.host: elasticsearch7", "out.host: elasticsearch"); + settings.AddSimpleScrubber("out.host: elasticsearch7_arm64", "out.host: elasticsearch"); + settings.AddSimpleScrubber("peer.service: localhost", "peer.service: elasticsearch"); + settings.AddSimpleScrubber("peer.service: elasticsearch7", "peer.service: elasticsearch"); + settings.AddSimpleScrubber("peer.service: elasticsearch7_arm64", "peer.service: elasticsearch"); + if (!string.IsNullOrWhiteSpace(host)) + { + settings.AddSimpleScrubber(host, "localhost:00000"); + } + + await VerifyHelper.VerifySpans(spans, settings) + .UseTextForParameters($"Schema{metadataSchemaVersion.ToUpper()}") + .DisableRequireUniquePrefix(); + ValidateIntegrationSpans(spans, metadataSchemaVersion, expectedServiceName: clientSpanServiceName, isExternalSpan); ValidateSpans(spans, (span) => span.Resource, expected); telemetry.AssertIntegrationEnabled(IntegrationId.ElasticsearchNet); diff --git a/tracer/test/snapshots/Elasticsearch5Tests.SubmitsTraces_SchemaV0.verified.txt b/tracer/test/snapshots/Elasticsearch5Tests.SubmitsTraces_SchemaV0.verified.txt new file mode 100644 index 000000000000..7811f168a4e1 --- /dev/null +++ b/tracer/test/snapshots/Elasticsearch5Tests.SubmitsTraces_SchemaV0.verified.txt @@ -0,0 +1,3250 @@ +[ + { + TraceId: Id_1, + SpanId: Id_2, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_3, + SpanId: Id_4, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_5, + SpanId: Id_6, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_7, + SpanId: Id_8, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_9, + SpanId: Id_10, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_11, + SpanId: Id_12, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_13, + SpanId: Id_14, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_15, + SpanId: Id_16, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_17, + SpanId: Id_18, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_19, + SpanId: Id_20, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_21, + SpanId: Id_22, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_23, + SpanId: Id_24, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_25, + SpanId: Id_26, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_27, + SpanId: Id_28, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_29, + SpanId: Id_30, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_31, + SpanId: Id_32, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_33, + SpanId: Id_34, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_35, + SpanId: Id_36, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_37, + SpanId: Id_38, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_39, + SpanId: Id_40, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_41, + SpanId: Id_42, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_43, + SpanId: Id_44, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_45, + SpanId: Id_46, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_47, + SpanId: Id_48, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_49, + SpanId: Id_50, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_51, + SpanId: Id_52, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_53, + SpanId: Id_54, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_55, + SpanId: Id_56, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_57, + SpanId: Id_58, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_59, + SpanId: Id_60, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_61, + SpanId: Id_62, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_63, + SpanId: Id_64, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_65, + SpanId: Id_66, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_67, + SpanId: Id_68, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_69, + SpanId: Id_70, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_71, + SpanId: Id_72, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_73, + SpanId: Id_74, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_75, + SpanId: Id_76, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_77, + SpanId: Id_78, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_79, + SpanId: Id_80, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_81, + SpanId: Id_82, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_83, + SpanId: Id_84, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_85, + SpanId: Id_86, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_87, + SpanId: Id_88, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_89, + SpanId: Id_90, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_91, + SpanId: Id_92, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_93, + SpanId: Id_94, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_95, + SpanId: Id_96, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_97, + SpanId: Id_98, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_99, + SpanId: Id_100, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_101, + SpanId: Id_102, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_103, + SpanId: Id_104, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_105, + SpanId: Id_106, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_107, + SpanId: Id_108, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_109, + SpanId: Id_110, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_111, + SpanId: Id_112, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_113, + SpanId: Id_114, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_115, + SpanId: Id_116, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_117, + SpanId: Id_118, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_119, + SpanId: Id_120, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_121, + SpanId: Id_122, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_123, + SpanId: Id_124, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_125, + SpanId: Id_126, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_127, + SpanId: Id_128, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_129, + SpanId: Id_130, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_131, + SpanId: Id_132, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_133, + SpanId: Id_134, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_135, + SpanId: Id_136, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_137, + SpanId: Id_138, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_139, + SpanId: Id_140, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_141, + SpanId: Id_142, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_143, + SpanId: Id_144, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_145, + SpanId: Id_146, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_147, + SpanId: Id_148, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_149, + SpanId: Id_150, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_151, + SpanId: Id_152, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_153, + SpanId: Id_154, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_155, + SpanId: Id_156, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_157, + SpanId: Id_158, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_159, + SpanId: Id_160, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_161, + SpanId: Id_162, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_163, + SpanId: Id_164, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_165, + SpanId: Id_166, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_167, + SpanId: Id_168, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_169, + SpanId: Id_170, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_171, + SpanId: Id_172, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_173, + SpanId: Id_174, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_175, + SpanId: Id_176, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_177, + SpanId: Id_178, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_179, + SpanId: Id_180, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_181, + SpanId: Id_182, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_183, + SpanId: Id_184, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_185, + SpanId: Id_186, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_187, + SpanId: Id_188, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_189, + SpanId: Id_190, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_191, + SpanId: Id_192, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_193, + SpanId: Id_194, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_195, + SpanId: Id_196, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_197, + SpanId: Id_198, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_199, + SpanId: Id_200, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_201, + SpanId: Id_202, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_203, + SpanId: Id_204, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_205, + SpanId: Id_206, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_207, + SpanId: Id_208, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_209, + SpanId: Id_210, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_211, + SpanId: Id_212, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_213, + SpanId: Id_214, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_215, + SpanId: Id_216, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_217, + SpanId: Id_218, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_219, + SpanId: Id_220, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_221, + SpanId: Id_222, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_223, + SpanId: Id_224, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_225, + SpanId: Id_226, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_227, + SpanId: Id_228, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_229, + SpanId: Id_230, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_231, + SpanId: Id_232, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + } +] \ No newline at end of file diff --git a/tracer/test/snapshots/Elasticsearch5Tests.SubmitsTraces_SchemaV1.verified.txt b/tracer/test/snapshots/Elasticsearch5Tests.SubmitsTraces_SchemaV1.verified.txt new file mode 100644 index 000000000000..1656b7e908c6 --- /dev/null +++ b/tracer/test/snapshots/Elasticsearch5Tests.SubmitsTraces_SchemaV1.verified.txt @@ -0,0 +1,3598 @@ +[ + { + TraceId: Id_1, + SpanId: Id_2, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_3, + SpanId: Id_4, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_5, + SpanId: Id_6, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_7, + SpanId: Id_8, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_9, + SpanId: Id_10, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_11, + SpanId: Id_12, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_13, + SpanId: Id_14, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_15, + SpanId: Id_16, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_17, + SpanId: Id_18, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_19, + SpanId: Id_20, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_21, + SpanId: Id_22, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_23, + SpanId: Id_24, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_25, + SpanId: Id_26, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_27, + SpanId: Id_28, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_29, + SpanId: Id_30, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_31, + SpanId: Id_32, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_33, + SpanId: Id_34, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_35, + SpanId: Id_36, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_37, + SpanId: Id_38, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_39, + SpanId: Id_40, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_41, + SpanId: Id_42, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_43, + SpanId: Id_44, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_45, + SpanId: Id_46, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_47, + SpanId: Id_48, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_49, + SpanId: Id_50, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_51, + SpanId: Id_52, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_53, + SpanId: Id_54, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_55, + SpanId: Id_56, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_57, + SpanId: Id_58, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_59, + SpanId: Id_60, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_61, + SpanId: Id_62, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_63, + SpanId: Id_64, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_65, + SpanId: Id_66, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_67, + SpanId: Id_68, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_69, + SpanId: Id_70, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_71, + SpanId: Id_72, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_73, + SpanId: Id_74, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_75, + SpanId: Id_76, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_77, + SpanId: Id_78, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_79, + SpanId: Id_80, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_81, + SpanId: Id_82, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_83, + SpanId: Id_84, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_85, + SpanId: Id_86, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_87, + SpanId: Id_88, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_89, + SpanId: Id_90, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_91, + SpanId: Id_92, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_93, + SpanId: Id_94, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_95, + SpanId: Id_96, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_97, + SpanId: Id_98, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_99, + SpanId: Id_100, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_101, + SpanId: Id_102, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_103, + SpanId: Id_104, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_105, + SpanId: Id_106, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_107, + SpanId: Id_108, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_109, + SpanId: Id_110, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_111, + SpanId: Id_112, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_113, + SpanId: Id_114, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_115, + SpanId: Id_116, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_117, + SpanId: Id_118, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_119, + SpanId: Id_120, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_121, + SpanId: Id_122, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_123, + SpanId: Id_124, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_125, + SpanId: Id_126, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_127, + SpanId: Id_128, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_129, + SpanId: Id_130, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_131, + SpanId: Id_132, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_133, + SpanId: Id_134, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_135, + SpanId: Id_136, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_137, + SpanId: Id_138, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_139, + SpanId: Id_140, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_141, + SpanId: Id_142, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_143, + SpanId: Id_144, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_145, + SpanId: Id_146, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_147, + SpanId: Id_148, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_149, + SpanId: Id_150, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_151, + SpanId: Id_152, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_153, + SpanId: Id_154, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_155, + SpanId: Id_156, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_157, + SpanId: Id_158, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_159, + SpanId: Id_160, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_161, + SpanId: Id_162, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_163, + SpanId: Id_164, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_165, + SpanId: Id_166, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_167, + SpanId: Id_168, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_169, + SpanId: Id_170, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_171, + SpanId: Id_172, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_173, + SpanId: Id_174, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_175, + SpanId: Id_176, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_177, + SpanId: Id_178, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_179, + SpanId: Id_180, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_181, + SpanId: Id_182, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_183, + SpanId: Id_184, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_185, + SpanId: Id_186, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_187, + SpanId: Id_188, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_189, + SpanId: Id_190, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_191, + SpanId: Id_192, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_193, + SpanId: Id_194, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_195, + SpanId: Id_196, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_197, + SpanId: Id_198, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_199, + SpanId: Id_200, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_201, + SpanId: Id_202, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_203, + SpanId: Id_204, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_205, + SpanId: Id_206, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_207, + SpanId: Id_208, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_209, + SpanId: Id_210, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_211, + SpanId: Id_212, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_213, + SpanId: Id_214, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_215, + SpanId: Id_216, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_217, + SpanId: Id_218, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_219, + SpanId: Id_220, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_221, + SpanId: Id_222, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_223, + SpanId: Id_224, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_225, + SpanId: Id_226, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_227, + SpanId: Id_228, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_229, + SpanId: Id_230, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_231, + SpanId: Id_232, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + } +] \ No newline at end of file diff --git a/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_0.SchemaV0.verified.txt b/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_0.SchemaV0.verified.txt new file mode 100644 index 000000000000..f8829b0ad719 --- /dev/null +++ b/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_0.SchemaV0.verified.txt @@ -0,0 +1,4314 @@ +[ + { + TraceId: Id_1, + SpanId: Id_2, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_3, + SpanId: Id_4, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_5, + SpanId: Id_6, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_7, + SpanId: Id_8, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_9, + SpanId: Id_10, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_11, + SpanId: Id_12, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_13, + SpanId: Id_14, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_15, + SpanId: Id_16, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_17, + SpanId: Id_18, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_19, + SpanId: Id_20, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_21, + SpanId: Id_22, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_23, + SpanId: Id_24, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_25, + SpanId: Id_26, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_27, + SpanId: Id_28, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_29, + SpanId: Id_30, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_31, + SpanId: Id_32, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_33, + SpanId: Id_34, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_35, + SpanId: Id_36, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_37, + SpanId: Id_38, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_39, + SpanId: Id_40, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_41, + SpanId: Id_42, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_43, + SpanId: Id_44, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_45, + SpanId: Id_46, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_47, + SpanId: Id_48, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_49, + SpanId: Id_50, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_51, + SpanId: Id_52, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_53, + SpanId: Id_54, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_55, + SpanId: Id_56, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_57, + SpanId: Id_58, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_59, + SpanId: Id_60, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_61, + SpanId: Id_62, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_63, + SpanId: Id_64, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_65, + SpanId: Id_66, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_67, + SpanId: Id_68, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_69, + SpanId: Id_70, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_71, + SpanId: Id_72, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_73, + SpanId: Id_74, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_75, + SpanId: Id_76, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_77, + SpanId: Id_78, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_79, + SpanId: Id_80, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_81, + SpanId: Id_82, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_83, + SpanId: Id_84, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_85, + SpanId: Id_86, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_87, + SpanId: Id_88, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_89, + SpanId: Id_90, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_91, + SpanId: Id_92, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_93, + SpanId: Id_94, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_95, + SpanId: Id_96, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_97, + SpanId: Id_98, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_99, + SpanId: Id_100, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_101, + SpanId: Id_102, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_103, + SpanId: Id_104, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_105, + SpanId: Id_106, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_107, + SpanId: Id_108, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_109, + SpanId: Id_110, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_111, + SpanId: Id_112, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_113, + SpanId: Id_114, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_115, + SpanId: Id_116, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_117, + SpanId: Id_118, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_119, + SpanId: Id_120, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_121, + SpanId: Id_122, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_123, + SpanId: Id_124, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_125, + SpanId: Id_126, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_127, + SpanId: Id_128, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_129, + SpanId: Id_130, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_131, + SpanId: Id_132, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_133, + SpanId: Id_134, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_135, + SpanId: Id_136, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_137, + SpanId: Id_138, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_139, + SpanId: Id_140, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/3/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_141, + SpanId: Id_142, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_143, + SpanId: Id_144, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/3/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_145, + SpanId: Id_146, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_147, + SpanId: Id_148, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_149, + SpanId: Id_150, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_151, + SpanId: Id_152, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_153, + SpanId: Id_154, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_155, + SpanId: Id_156, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_157, + SpanId: Id_158, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_159, + SpanId: Id_160, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_161, + SpanId: Id_162, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_163, + SpanId: Id_164, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_165, + SpanId: Id_166, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_167, + SpanId: Id_168, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_169, + SpanId: Id_170, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_171, + SpanId: Id_172, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_173, + SpanId: Id_174, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_175, + SpanId: Id_176, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_177, + SpanId: Id_178, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_179, + SpanId: Id_180, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_181, + SpanId: Id_182, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_183, + SpanId: Id_184, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_185, + SpanId: Id_186, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_187, + SpanId: Id_188, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_189, + SpanId: Id_190, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_191, + SpanId: Id_192, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_193, + SpanId: Id_194, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_195, + SpanId: Id_196, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_197, + SpanId: Id_198, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_199, + SpanId: Id_200, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_201, + SpanId: Id_202, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_203, + SpanId: Id_204, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_205, + SpanId: Id_206, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_207, + SpanId: Id_208, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_209, + SpanId: Id_210, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_211, + SpanId: Id_212, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_213, + SpanId: Id_214, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_215, + SpanId: Id_216, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_217, + SpanId: Id_218, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_219, + SpanId: Id_220, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_221, + SpanId: Id_222, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_223, + SpanId: Id_224, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_225, + SpanId: Id_226, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_227, + SpanId: Id_228, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_229, + SpanId: Id_230, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_231, + SpanId: Id_232, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_233, + SpanId: Id_234, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_235, + SpanId: Id_236, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_237, + SpanId: Id_238, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_239, + SpanId: Id_240, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_241, + SpanId: Id_242, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_243, + SpanId: Id_244, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_245, + SpanId: Id_246, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_247, + SpanId: Id_248, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_249, + SpanId: Id_250, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_251, + SpanId: Id_252, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_253, + SpanId: Id_254, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_255, + SpanId: Id_256, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_257, + SpanId: Id_258, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_259, + SpanId: Id_260, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_261, + SpanId: Id_262, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_263, + SpanId: Id_264, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_265, + SpanId: Id_266, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_267, + SpanId: Id_268, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_269, + SpanId: Id_270, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_271, + SpanId: Id_272, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_273, + SpanId: Id_274, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_275, + SpanId: Id_276, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_277, + SpanId: Id_278, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_279, + SpanId: Id_280, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_281, + SpanId: Id_282, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_283, + SpanId: Id_284, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_285, + SpanId: Id_286, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_287, + SpanId: Id_288, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_289, + SpanId: Id_290, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_291, + SpanId: Id_292, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_293, + SpanId: Id_294, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_295, + SpanId: Id_296, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_297, + SpanId: Id_298, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_299, + SpanId: Id_300, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_301, + SpanId: Id_302, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_303, + SpanId: Id_304, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_305, + SpanId: Id_306, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_307, + SpanId: Id_308, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + } +] \ No newline at end of file diff --git a/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_0.SchemaV1.verified.txt b/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_0.SchemaV1.verified.txt new file mode 100644 index 000000000000..72bd406d7a5f --- /dev/null +++ b/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_0.SchemaV1.verified.txt @@ -0,0 +1,4776 @@ +[ + { + TraceId: Id_1, + SpanId: Id_2, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_3, + SpanId: Id_4, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_5, + SpanId: Id_6, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_7, + SpanId: Id_8, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_9, + SpanId: Id_10, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_11, + SpanId: Id_12, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_13, + SpanId: Id_14, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_15, + SpanId: Id_16, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_17, + SpanId: Id_18, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_19, + SpanId: Id_20, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_21, + SpanId: Id_22, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_23, + SpanId: Id_24, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_25, + SpanId: Id_26, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_27, + SpanId: Id_28, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_29, + SpanId: Id_30, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_31, + SpanId: Id_32, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_33, + SpanId: Id_34, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_35, + SpanId: Id_36, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_37, + SpanId: Id_38, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_39, + SpanId: Id_40, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_41, + SpanId: Id_42, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_43, + SpanId: Id_44, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_45, + SpanId: Id_46, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_47, + SpanId: Id_48, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_49, + SpanId: Id_50, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_51, + SpanId: Id_52, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_53, + SpanId: Id_54, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_55, + SpanId: Id_56, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_57, + SpanId: Id_58, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_59, + SpanId: Id_60, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_61, + SpanId: Id_62, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_63, + SpanId: Id_64, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_65, + SpanId: Id_66, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_67, + SpanId: Id_68, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_69, + SpanId: Id_70, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_71, + SpanId: Id_72, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_73, + SpanId: Id_74, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_75, + SpanId: Id_76, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_77, + SpanId: Id_78, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_79, + SpanId: Id_80, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_81, + SpanId: Id_82, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_83, + SpanId: Id_84, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_85, + SpanId: Id_86, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_87, + SpanId: Id_88, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_89, + SpanId: Id_90, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_91, + SpanId: Id_92, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_93, + SpanId: Id_94, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_95, + SpanId: Id_96, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_97, + SpanId: Id_98, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_99, + SpanId: Id_100, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_101, + SpanId: Id_102, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_103, + SpanId: Id_104, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_105, + SpanId: Id_106, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_107, + SpanId: Id_108, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_109, + SpanId: Id_110, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_111, + SpanId: Id_112, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_113, + SpanId: Id_114, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_115, + SpanId: Id_116, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_117, + SpanId: Id_118, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_119, + SpanId: Id_120, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_121, + SpanId: Id_122, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_123, + SpanId: Id_124, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_125, + SpanId: Id_126, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_127, + SpanId: Id_128, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_129, + SpanId: Id_130, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_131, + SpanId: Id_132, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_133, + SpanId: Id_134, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_135, + SpanId: Id_136, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_137, + SpanId: Id_138, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_139, + SpanId: Id_140, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/3/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_141, + SpanId: Id_142, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_143, + SpanId: Id_144, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/3/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_145, + SpanId: Id_146, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_147, + SpanId: Id_148, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_149, + SpanId: Id_150, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_151, + SpanId: Id_152, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_153, + SpanId: Id_154, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_155, + SpanId: Id_156, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_157, + SpanId: Id_158, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_159, + SpanId: Id_160, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_161, + SpanId: Id_162, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_163, + SpanId: Id_164, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_165, + SpanId: Id_166, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_167, + SpanId: Id_168, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_169, + SpanId: Id_170, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_171, + SpanId: Id_172, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_173, + SpanId: Id_174, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_175, + SpanId: Id_176, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_177, + SpanId: Id_178, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_179, + SpanId: Id_180, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_181, + SpanId: Id_182, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_183, + SpanId: Id_184, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_185, + SpanId: Id_186, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_187, + SpanId: Id_188, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_189, + SpanId: Id_190, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_191, + SpanId: Id_192, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_193, + SpanId: Id_194, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_195, + SpanId: Id_196, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_197, + SpanId: Id_198, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_199, + SpanId: Id_200, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_201, + SpanId: Id_202, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_203, + SpanId: Id_204, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_205, + SpanId: Id_206, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_207, + SpanId: Id_208, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_209, + SpanId: Id_210, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_211, + SpanId: Id_212, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_213, + SpanId: Id_214, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_215, + SpanId: Id_216, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_217, + SpanId: Id_218, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_219, + SpanId: Id_220, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_221, + SpanId: Id_222, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_223, + SpanId: Id_224, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_225, + SpanId: Id_226, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_227, + SpanId: Id_228, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_229, + SpanId: Id_230, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_231, + SpanId: Id_232, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_233, + SpanId: Id_234, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_235, + SpanId: Id_236, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_237, + SpanId: Id_238, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_239, + SpanId: Id_240, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_241, + SpanId: Id_242, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_243, + SpanId: Id_244, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_245, + SpanId: Id_246, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_247, + SpanId: Id_248, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_249, + SpanId: Id_250, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_251, + SpanId: Id_252, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_253, + SpanId: Id_254, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_255, + SpanId: Id_256, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_257, + SpanId: Id_258, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_259, + SpanId: Id_260, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_261, + SpanId: Id_262, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_263, + SpanId: Id_264, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_265, + SpanId: Id_266, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_267, + SpanId: Id_268, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_269, + SpanId: Id_270, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_271, + SpanId: Id_272, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_273, + SpanId: Id_274, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_275, + SpanId: Id_276, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_277, + SpanId: Id_278, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_279, + SpanId: Id_280, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_281, + SpanId: Id_282, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_283, + SpanId: Id_284, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_285, + SpanId: Id_286, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_287, + SpanId: Id_288, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_289, + SpanId: Id_290, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_291, + SpanId: Id_292, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_293, + SpanId: Id_294, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_295, + SpanId: Id_296, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_297, + SpanId: Id_298, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_299, + SpanId: Id_300, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_301, + SpanId: Id_302, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_303, + SpanId: Id_304, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_305, + SpanId: Id_306, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_307, + SpanId: Id_308, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + } +] \ No newline at end of file diff --git a/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_1.SchemaV0.verified.txt b/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_1.SchemaV0.verified.txt new file mode 100644 index 000000000000..5a38646729c9 --- /dev/null +++ b/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_1.SchemaV0.verified.txt @@ -0,0 +1,4482 @@ +[ + { + TraceId: Id_1, + SpanId: Id_2, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_3, + SpanId: Id_4, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_5, + SpanId: Id_6, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_7, + SpanId: Id_8, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_9, + SpanId: Id_10, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_11, + SpanId: Id_12, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_13, + SpanId: Id_14, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_15, + SpanId: Id_16, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_17, + SpanId: Id_18, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_19, + SpanId: Id_20, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_21, + SpanId: Id_22, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_23, + SpanId: Id_24, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_25, + SpanId: Id_26, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_27, + SpanId: Id_28, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_29, + SpanId: Id_30, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_31, + SpanId: Id_32, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_33, + SpanId: Id_34, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_35, + SpanId: Id_36, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_37, + SpanId: Id_38, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_39, + SpanId: Id_40, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_41, + SpanId: Id_42, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_43, + SpanId: Id_44, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_45, + SpanId: Id_46, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_47, + SpanId: Id_48, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_49, + SpanId: Id_50, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_51, + SpanId: Id_52, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_53, + SpanId: Id_54, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_55, + SpanId: Id_56, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_57, + SpanId: Id_58, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_59, + SpanId: Id_60, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_61, + SpanId: Id_62, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_63, + SpanId: Id_64, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_65, + SpanId: Id_66, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_67, + SpanId: Id_68, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_69, + SpanId: Id_70, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_71, + SpanId: Id_72, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_73, + SpanId: Id_74, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_75, + SpanId: Id_76, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_77, + SpanId: Id_78, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_79, + SpanId: Id_80, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_81, + SpanId: Id_82, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_83, + SpanId: Id_84, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_85, + SpanId: Id_86, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_87, + SpanId: Id_88, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_89, + SpanId: Id_90, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_91, + SpanId: Id_92, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_93, + SpanId: Id_94, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_95, + SpanId: Id_96, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_97, + SpanId: Id_98, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_99, + SpanId: Id_100, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_101, + SpanId: Id_102, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_103, + SpanId: Id_104, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_105, + SpanId: Id_106, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_107, + SpanId: Id_108, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_109, + SpanId: Id_110, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_111, + SpanId: Id_112, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_113, + SpanId: Id_114, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_115, + SpanId: Id_116, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_117, + SpanId: Id_118, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_119, + SpanId: Id_120, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_121, + SpanId: Id_122, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_123, + SpanId: Id_124, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_125, + SpanId: Id_126, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_127, + SpanId: Id_128, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_129, + SpanId: Id_130, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_131, + SpanId: Id_132, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_133, + SpanId: Id_134, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_135, + SpanId: Id_136, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_137, + SpanId: Id_138, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_139, + SpanId: Id_140, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/3/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_141, + SpanId: Id_142, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_143, + SpanId: Id_144, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/3/_create, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_145, + SpanId: Id_146, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_147, + SpanId: Id_148, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_149, + SpanId: Id_150, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_151, + SpanId: Id_152, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_153, + SpanId: Id_154, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_155, + SpanId: Id_156, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_157, + SpanId: Id_158, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_159, + SpanId: Id_160, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_161, + SpanId: Id_162, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_163, + SpanId: Id_164, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_165, + SpanId: Id_166, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_167, + SpanId: Id_168, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_169, + SpanId: Id_170, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_171, + SpanId: Id_172, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_173, + SpanId: Id_174, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_175, + SpanId: Id_176, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_177, + SpanId: Id_178, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_179, + SpanId: Id_180, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_181, + SpanId: Id_182, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_183, + SpanId: Id_184, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_185, + SpanId: Id_186, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_187, + SpanId: Id_188, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_189, + SpanId: Id_190, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_191, + SpanId: Id_192, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_193, + SpanId: Id_194, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_195, + SpanId: Id_196, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_197, + SpanId: Id_198, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_199, + SpanId: Id_200, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_201, + SpanId: Id_202, + Name: elasticsearch.query, + Resource: ForecastJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ForecastJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_forecast, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_203, + SpanId: Id_204, + Name: elasticsearch.query, + Resource: ForecastJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ForecastJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_forecast, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_205, + SpanId: Id_206, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_207, + SpanId: Id_208, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_209, + SpanId: Id_210, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_211, + SpanId: Id_212, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_213, + SpanId: Id_214, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_215, + SpanId: Id_216, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_217, + SpanId: Id_218, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_219, + SpanId: Id_220, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_221, + SpanId: Id_222, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_223, + SpanId: Id_224, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_225, + SpanId: Id_226, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_227, + SpanId: Id_228, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_229, + SpanId: Id_230, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_231, + SpanId: Id_232, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_233, + SpanId: Id_234, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_235, + SpanId: Id_236, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_237, + SpanId: Id_238, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_239, + SpanId: Id_240, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_241, + SpanId: Id_242, + Name: elasticsearch.query, + Resource: GetOverallBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetOverallBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/overall_buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_243, + SpanId: Id_244, + Name: elasticsearch.query, + Resource: GetOverallBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetOverallBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/overall_buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_245, + SpanId: Id_246, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_247, + SpanId: Id_248, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_249, + SpanId: Id_250, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_251, + SpanId: Id_252, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_253, + SpanId: Id_254, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_255, + SpanId: Id_256, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_257, + SpanId: Id_258, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_259, + SpanId: Id_260, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_261, + SpanId: Id_262, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_263, + SpanId: Id_264, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_265, + SpanId: Id_266, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_267, + SpanId: Id_268, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_269, + SpanId: Id_270, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_271, + SpanId: Id_272, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_273, + SpanId: Id_274, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_275, + SpanId: Id_276, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_277, + SpanId: Id_278, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_279, + SpanId: Id_280, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_281, + SpanId: Id_282, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_283, + SpanId: Id_284, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_285, + SpanId: Id_286, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_287, + SpanId: Id_288, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_289, + SpanId: Id_290, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_291, + SpanId: Id_292, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_293, + SpanId: Id_294, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_295, + SpanId: Id_296, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_297, + SpanId: Id_298, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_299, + SpanId: Id_300, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_301, + SpanId: Id_302, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_303, + SpanId: Id_304, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_305, + SpanId: Id_306, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_307, + SpanId: Id_308, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_309, + SpanId: Id_310, + Name: elasticsearch.query, + Resource: SplitIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: SplitIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_split/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_311, + SpanId: Id_312, + Name: elasticsearch.query, + Resource: SplitIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: SplitIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_split/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_313, + SpanId: Id_314, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_315, + SpanId: Id_316, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_317, + SpanId: Id_318, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_319, + SpanId: Id_320, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + } +] \ No newline at end of file diff --git a/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_1.SchemaV1.verified.txt b/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_1.SchemaV1.verified.txt new file mode 100644 index 000000000000..7d0c90a41a3d --- /dev/null +++ b/tracer/test/snapshots/Elasticsearch6Tests.SubmitsTraces_packageVersion=6_1.SchemaV1.verified.txt @@ -0,0 +1,4962 @@ +[ + { + TraceId: Id_1, + SpanId: Id_2, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_3, + SpanId: Id_4, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_5, + SpanId: Id_6, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_7, + SpanId: Id_8, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_9, + SpanId: Id_10, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_11, + SpanId: Id_12, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_13, + SpanId: Id_14, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_15, + SpanId: Id_16, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_17, + SpanId: Id_18, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_19, + SpanId: Id_20, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_21, + SpanId: Id_22, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_23, + SpanId: Id_24, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_25, + SpanId: Id_26, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_27, + SpanId: Id_28, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_29, + SpanId: Id_30, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_31, + SpanId: Id_32, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_33, + SpanId: Id_34, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_35, + SpanId: Id_36, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_37, + SpanId: Id_38, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_39, + SpanId: Id_40, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_41, + SpanId: Id_42, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_43, + SpanId: Id_44, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_45, + SpanId: Id_46, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_47, + SpanId: Id_48, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_49, + SpanId: Id_50, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_51, + SpanId: Id_52, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_53, + SpanId: Id_54, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_55, + SpanId: Id_56, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_57, + SpanId: Id_58, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_59, + SpanId: Id_60, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_61, + SpanId: Id_62, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_63, + SpanId: Id_64, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_65, + SpanId: Id_66, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_67, + SpanId: Id_68, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_69, + SpanId: Id_70, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_71, + SpanId: Id_72, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_73, + SpanId: Id_74, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_75, + SpanId: Id_76, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_77, + SpanId: Id_78, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_79, + SpanId: Id_80, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_81, + SpanId: Id_82, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_83, + SpanId: Id_84, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_85, + SpanId: Id_86, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_87, + SpanId: Id_88, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_89, + SpanId: Id_90, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_91, + SpanId: Id_92, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_93, + SpanId: Id_94, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_95, + SpanId: Id_96, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_97, + SpanId: Id_98, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_99, + SpanId: Id_100, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_101, + SpanId: Id_102, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_103, + SpanId: Id_104, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_105, + SpanId: Id_106, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_107, + SpanId: Id_108, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_109, + SpanId: Id_110, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_111, + SpanId: Id_112, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_113, + SpanId: Id_114, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_115, + SpanId: Id_116, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_117, + SpanId: Id_118, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_119, + SpanId: Id_120, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_121, + SpanId: Id_122, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_123, + SpanId: Id_124, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_125, + SpanId: Id_126, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_127, + SpanId: Id_128, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_129, + SpanId: Id_130, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_131, + SpanId: Id_132, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_133, + SpanId: Id_134, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_135, + SpanId: Id_136, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_137, + SpanId: Id_138, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_139, + SpanId: Id_140, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/3/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_141, + SpanId: Id_142, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/post/2/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_143, + SpanId: Id_144, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/3/_create, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_145, + SpanId: Id_146, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_147, + SpanId: Id_148, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_149, + SpanId: Id_150, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_151, + SpanId: Id_152, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_153, + SpanId: Id_154, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_155, + SpanId: Id_156, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_157, + SpanId: Id_158, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_159, + SpanId: Id_160, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_161, + SpanId: Id_162, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_163, + SpanId: Id_164, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_165, + SpanId: Id_166, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_167, + SpanId: Id_168, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_169, + SpanId: Id_170, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_171, + SpanId: Id_172, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_173, + SpanId: Id_174, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_175, + SpanId: Id_176, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_177, + SpanId: Id_178, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_179, + SpanId: Id_180, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_181, + SpanId: Id_182, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_183, + SpanId: Id_184, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_185, + SpanId: Id_186, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_187, + SpanId: Id_188, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_189, + SpanId: Id_190, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_191, + SpanId: Id_192, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_193, + SpanId: Id_194, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_195, + SpanId: Id_196, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_197, + SpanId: Id_198, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_199, + SpanId: Id_200, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_201, + SpanId: Id_202, + Name: elasticsearch.query, + Resource: ForecastJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ForecastJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_forecast, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_203, + SpanId: Id_204, + Name: elasticsearch.query, + Resource: ForecastJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ForecastJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_forecast, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_205, + SpanId: Id_206, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_207, + SpanId: Id_208, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_209, + SpanId: Id_210, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_211, + SpanId: Id_212, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_213, + SpanId: Id_214, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_215, + SpanId: Id_216, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_217, + SpanId: Id_218, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_219, + SpanId: Id_220, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_221, + SpanId: Id_222, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_223, + SpanId: Id_224, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_225, + SpanId: Id_226, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_227, + SpanId: Id_228, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_229, + SpanId: Id_230, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_231, + SpanId: Id_232, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_233, + SpanId: Id_234, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_235, + SpanId: Id_236, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_237, + SpanId: Id_238, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_239, + SpanId: Id_240, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_241, + SpanId: Id_242, + Name: elasticsearch.query, + Resource: GetOverallBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetOverallBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/overall_buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_243, + SpanId: Id_244, + Name: elasticsearch.query, + Resource: GetOverallBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetOverallBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/results/overall_buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_245, + SpanId: Id_246, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_247, + SpanId: Id_248, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_249, + SpanId: Id_250, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_251, + SpanId: Id_252, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_253, + SpanId: Id_254, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_255, + SpanId: Id_256, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_257, + SpanId: Id_258, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_259, + SpanId: Id_260, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_261, + SpanId: Id_262, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_263, + SpanId: Id_264, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_265, + SpanId: Id_266, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_267, + SpanId: Id_268, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_269, + SpanId: Id_270, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_271, + SpanId: Id_272, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_273, + SpanId: Id_274, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_275, + SpanId: Id_276, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_277, + SpanId: Id_278, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_279, + SpanId: Id_280, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_281, + SpanId: Id_282, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_283, + SpanId: Id_284, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_285, + SpanId: Id_286, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_287, + SpanId: Id_288, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_289, + SpanId: Id_290, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_291, + SpanId: Id_292, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_293, + SpanId: Id_294, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_295, + SpanId: Id_296, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_297, + SpanId: Id_298, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_299, + SpanId: Id_300, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_301, + SpanId: Id_302, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_303, + SpanId: Id_304, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_xpack/security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_305, + SpanId: Id_306, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_307, + SpanId: Id_308, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/post/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_309, + SpanId: Id_310, + Name: elasticsearch.query, + Resource: SplitIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: SplitIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_split/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_311, + SpanId: Id_312, + Name: elasticsearch.query, + Resource: SplitIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: SplitIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_split/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_313, + SpanId: Id_314, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_315, + SpanId: Id_316, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_317, + SpanId: Id_318, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_319, + SpanId: Id_320, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_xpack/ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + } +] \ No newline at end of file diff --git a/tracer/test/snapshots/Elasticsearch7Tests.SubmitsTraces_SchemaV0.verified.txt b/tracer/test/snapshots/Elasticsearch7Tests.SubmitsTraces_SchemaV0.verified.txt new file mode 100644 index 000000000000..84a8aff10b71 --- /dev/null +++ b/tracer/test/snapshots/Elasticsearch7Tests.SubmitsTraces_SchemaV0.verified.txt @@ -0,0 +1,4482 @@ +[ + { + TraceId: Id_1, + SpanId: Id_2, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_3, + SpanId: Id_4, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_5, + SpanId: Id_6, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_7, + SpanId: Id_8, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_9, + SpanId: Id_10, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_11, + SpanId: Id_12, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_13, + SpanId: Id_14, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_15, + SpanId: Id_16, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_17, + SpanId: Id_18, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_19, + SpanId: Id_20, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_21, + SpanId: Id_22, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_23, + SpanId: Id_24, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_25, + SpanId: Id_26, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_27, + SpanId: Id_28, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_29, + SpanId: Id_30, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_31, + SpanId: Id_32, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_33, + SpanId: Id_34, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_35, + SpanId: Id_36, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_37, + SpanId: Id_38, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_39, + SpanId: Id_40, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_41, + SpanId: Id_42, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_43, + SpanId: Id_44, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_45, + SpanId: Id_46, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_47, + SpanId: Id_48, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_49, + SpanId: Id_50, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_51, + SpanId: Id_52, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_53, + SpanId: Id_54, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_55, + SpanId: Id_56, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_57, + SpanId: Id_58, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_59, + SpanId: Id_60, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_61, + SpanId: Id_62, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_63, + SpanId: Id_64, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_65, + SpanId: Id_66, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_67, + SpanId: Id_68, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_69, + SpanId: Id_70, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_71, + SpanId: Id_72, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_73, + SpanId: Id_74, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_75, + SpanId: Id_76, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_77, + SpanId: Id_78, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_79, + SpanId: Id_80, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_81, + SpanId: Id_82, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_83, + SpanId: Id_84, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_85, + SpanId: Id_86, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_87, + SpanId: Id_88, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_89, + SpanId: Id_90, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_91, + SpanId: Id_92, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_93, + SpanId: Id_94, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_95, + SpanId: Id_96, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_97, + SpanId: Id_98, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_99, + SpanId: Id_100, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_101, + SpanId: Id_102, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_103, + SpanId: Id_104, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_105, + SpanId: Id_106, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_107, + SpanId: Id_108, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_109, + SpanId: Id_110, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_111, + SpanId: Id_112, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_113, + SpanId: Id_114, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_115, + SpanId: Id_116, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_117, + SpanId: Id_118, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_119, + SpanId: Id_120, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_121, + SpanId: Id_122, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_123, + SpanId: Id_124, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_125, + SpanId: Id_126, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_127, + SpanId: Id_128, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_129, + SpanId: Id_130, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_131, + SpanId: Id_132, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_133, + SpanId: Id_134, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/_count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_135, + SpanId: Id_136, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/_count, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_137, + SpanId: Id_138, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/_create/2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_139, + SpanId: Id_140, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/_create/3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_141, + SpanId: Id_142, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/_create/2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_143, + SpanId: Id_144, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/_create/3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_145, + SpanId: Id_146, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_147, + SpanId: Id_148, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_149, + SpanId: Id_150, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_151, + SpanId: Id_152, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_153, + SpanId: Id_154, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_155, + SpanId: Id_156, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_157, + SpanId: Id_158, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_159, + SpanId: Id_160, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_161, + SpanId: Id_162, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_163, + SpanId: Id_164, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_165, + SpanId: Id_166, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_167, + SpanId: Id_168, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_169, + SpanId: Id_170, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_171, + SpanId: Id_172, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_173, + SpanId: Id_174, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_175, + SpanId: Id_176, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_177, + SpanId: Id_178, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_179, + SpanId: Id_180, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_181, + SpanId: Id_182, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_183, + SpanId: Id_184, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_185, + SpanId: Id_186, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_187, + SpanId: Id_188, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_189, + SpanId: Id_190, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_191, + SpanId: Id_192, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_193, + SpanId: Id_194, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_195, + SpanId: Id_196, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_197, + SpanId: Id_198, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_199, + SpanId: Id_200, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_201, + SpanId: Id_202, + Name: elasticsearch.query, + Resource: ForecastJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ForecastJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_forecast, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_203, + SpanId: Id_204, + Name: elasticsearch.query, + Resource: ForecastJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ForecastJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_forecast, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_205, + SpanId: Id_206, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_207, + SpanId: Id_208, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_209, + SpanId: Id_210, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_211, + SpanId: Id_212, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_213, + SpanId: Id_214, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_215, + SpanId: Id_216, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_217, + SpanId: Id_218, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_219, + SpanId: Id_220, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_221, + SpanId: Id_222, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_223, + SpanId: Id_224, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_225, + SpanId: Id_226, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_227, + SpanId: Id_228, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_229, + SpanId: Id_230, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_231, + SpanId: Id_232, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_233, + SpanId: Id_234, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_235, + SpanId: Id_236, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_237, + SpanId: Id_238, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_239, + SpanId: Id_240, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_241, + SpanId: Id_242, + Name: elasticsearch.query, + Resource: GetOverallBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetOverallBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/overall_buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_243, + SpanId: Id_244, + Name: elasticsearch.query, + Resource: GetOverallBuckets, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetOverallBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/overall_buckets, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_245, + SpanId: Id_246, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_247, + SpanId: Id_248, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_249, + SpanId: Id_250, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_251, + SpanId: Id_252, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_253, + SpanId: Id_254, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_255, + SpanId: Id_256, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_257, + SpanId: Id_258, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_259, + SpanId: Id_260, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_261, + SpanId: Id_262, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_263, + SpanId: Id_264, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_265, + SpanId: Id_266, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_267, + SpanId: Id_268, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_269, + SpanId: Id_270, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_271, + SpanId: Id_272, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_273, + SpanId: Id_274, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_275, + SpanId: Id_276, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_277, + SpanId: Id_278, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_279, + SpanId: Id_280, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_281, + SpanId: Id_282, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_283, + SpanId: Id_284, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_285, + SpanId: Id_286, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_287, + SpanId: Id_288, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_289, + SpanId: Id_290, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_291, + SpanId: Id_292, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_293, + SpanId: Id_294, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_295, + SpanId: Id_296, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_297, + SpanId: Id_298, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_299, + SpanId: Id_300, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_301, + SpanId: Id_302, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_303, + SpanId: Id_304, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_305, + SpanId: Id_306, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_307, + SpanId: Id_308, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_309, + SpanId: Id_310, + Name: elasticsearch.query, + Resource: SplitIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: SplitIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_split/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_311, + SpanId: Id_312, + Name: elasticsearch.query, + Resource: SplitIndex, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: SplitIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_split/test_index_4, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_313, + SpanId: Id_314, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_315, + SpanId: Id_316, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_317, + SpanId: Id_318, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_319, + SpanId: Id_320, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch-elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0 + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + } +] \ No newline at end of file diff --git a/tracer/test/snapshots/Elasticsearch7Tests.SubmitsTraces_SchemaV1.verified.txt b/tracer/test/snapshots/Elasticsearch7Tests.SubmitsTraces_SchemaV1.verified.txt new file mode 100644 index 000000000000..a9d623bb1aad --- /dev/null +++ b/tracer/test/snapshots/Elasticsearch7Tests.SubmitsTraces_SchemaV1.verified.txt @@ -0,0 +1,4962 @@ +[ + { + TraceId: Id_1, + SpanId: Id_2, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_3, + SpanId: Id_4, + Name: elasticsearch.query, + Resource: AliasExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: AliasExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_alias/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_5, + SpanId: Id_6, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_7, + SpanId: Id_8, + Name: elasticsearch.query, + Resource: Bulk, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Bulk, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_bulk, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_9, + SpanId: Id_10, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_11, + SpanId: Id_12, + Name: elasticsearch.query, + Resource: BulkAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: BulkAlias, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_13, + SpanId: Id_14, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_15, + SpanId: Id_16, + Name: elasticsearch.query, + Resource: CatAliases, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAliases, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/aliases, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_17, + SpanId: Id_18, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_19, + SpanId: Id_20, + Name: elasticsearch.query, + Resource: CatAllocation, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatAllocation, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/allocation, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_21, + SpanId: Id_22, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_23, + SpanId: Id_24, + Name: elasticsearch.query, + Resource: CatCount, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatCount, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_25, + SpanId: Id_26, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_27, + SpanId: Id_28, + Name: elasticsearch.query, + Resource: CatFielddata, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatFielddata, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/fielddata, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_29, + SpanId: Id_30, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_31, + SpanId: Id_32, + Name: elasticsearch.query, + Resource: CatHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_33, + SpanId: Id_34, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_35, + SpanId: Id_36, + Name: elasticsearch.query, + Resource: CatHelp, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatHelp, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_37, + SpanId: Id_38, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_39, + SpanId: Id_40, + Name: elasticsearch.query, + Resource: CatIndices, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatIndices, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/indices, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_41, + SpanId: Id_42, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_43, + SpanId: Id_44, + Name: elasticsearch.query, + Resource: CatMaster, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatMaster, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/master, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_45, + SpanId: Id_46, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_47, + SpanId: Id_48, + Name: elasticsearch.query, + Resource: CatNodeAttributes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodeAttributes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodeattrs, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_49, + SpanId: Id_50, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_51, + SpanId: Id_52, + Name: elasticsearch.query, + Resource: CatNodes, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatNodes, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/nodes, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_53, + SpanId: Id_54, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_55, + SpanId: Id_56, + Name: elasticsearch.query, + Resource: CatPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_57, + SpanId: Id_58, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_59, + SpanId: Id_60, + Name: elasticsearch.query, + Resource: CatPlugins, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatPlugins, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/plugins, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_61, + SpanId: Id_62, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_63, + SpanId: Id_64, + Name: elasticsearch.query, + Resource: CatRecovery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRecovery, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/recovery, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_65, + SpanId: Id_66, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_67, + SpanId: Id_68, + Name: elasticsearch.query, + Resource: CatRepositories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatRepositories, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/repositories, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_69, + SpanId: Id_70, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_71, + SpanId: Id_72, + Name: elasticsearch.query, + Resource: CatSegments, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatSegments, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/segments, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_73, + SpanId: Id_74, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_75, + SpanId: Id_76, + Name: elasticsearch.query, + Resource: CatShards, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatShards, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/shards, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_77, + SpanId: Id_78, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_79, + SpanId: Id_80, + Name: elasticsearch.query, + Resource: CatTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_81, + SpanId: Id_82, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_83, + SpanId: Id_84, + Name: elasticsearch.query, + Resource: CatTemplates, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatTemplates, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/templates, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_85, + SpanId: Id_86, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_87, + SpanId: Id_88, + Name: elasticsearch.query, + Resource: CatThreadPool, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CatThreadPool, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cat/thread_pool, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_89, + SpanId: Id_90, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_91, + SpanId: Id_92, + Name: elasticsearch.query, + Resource: ChangePassword, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ChangePassword, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1/_password, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_93, + SpanId: Id_94, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_95, + SpanId: Id_96, + Name: elasticsearch.query, + Resource: CloseIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_97, + SpanId: Id_98, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_99, + SpanId: Id_100, + Name: elasticsearch.query, + Resource: CloseJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CloseJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_close, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_101, + SpanId: Id_102, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_103, + SpanId: Id_104, + Name: elasticsearch.query, + Resource: ClusterAllocationExplain, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterAllocationExplain, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/allocation/explain, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_105, + SpanId: Id_106, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_107, + SpanId: Id_108, + Name: elasticsearch.query, + Resource: ClusterGetSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterGetSettings, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_109, + SpanId: Id_110, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_111, + SpanId: Id_112, + Name: elasticsearch.query, + Resource: ClusterHealth, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterHealth, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/health, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_113, + SpanId: Id_114, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_115, + SpanId: Id_116, + Name: elasticsearch.query, + Resource: ClusterPendingTasks, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPendingTasks, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/pending_tasks, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_117, + SpanId: Id_118, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_119, + SpanId: Id_120, + Name: elasticsearch.query, + Resource: ClusterPutSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterPutSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_cluster/settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_121, + SpanId: Id_122, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_123, + SpanId: Id_124, + Name: elasticsearch.query, + Resource: ClusterReroute, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterReroute, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_cluster/reroute, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_125, + SpanId: Id_126, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_127, + SpanId: Id_128, + Name: elasticsearch.query, + Resource: ClusterState, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterState, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/state, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_129, + SpanId: Id_130, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_131, + SpanId: Id_132, + Name: elasticsearch.query, + Resource: ClusterStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ClusterStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_cluster/stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_133, + SpanId: Id_134, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/_count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_135, + SpanId: Id_136, + Name: elasticsearch.query, + Resource: Count, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Count, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/elastic-net-example/_count, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_137, + SpanId: Id_138, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/_create/2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_139, + SpanId: Id_140, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/_create/3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_141, + SpanId: Id_142, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index/_create/2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_143, + SpanId: Id_144, + Name: elasticsearch.query, + Resource: Create, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Create, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/elastic-net-example/_create/3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_145, + SpanId: Id_146, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_147, + SpanId: Id_148, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_149, + SpanId: Id_150, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_151, + SpanId: Id_152, + Name: elasticsearch.query, + Resource: CreateIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: CreateIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_153, + SpanId: Id_154, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_155, + SpanId: Id_156, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_157, + SpanId: Id_158, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_159, + SpanId: Id_160, + Name: elasticsearch.query, + Resource: DeleteAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteAlias, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_2, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_161, + SpanId: Id_162, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_163, + SpanId: Id_164, + Name: elasticsearch.query, + Resource: DeleteByQuery, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteByQuery, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index/_delete_by_query?size=0, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_165, + SpanId: Id_166, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_167, + SpanId: Id_168, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_169, + SpanId: Id_170, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_171, + SpanId: Id_172, + Name: elasticsearch.query, + Resource: DeleteIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndex, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_173, + SpanId: Id_174, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_175, + SpanId: Id_176, + Name: elasticsearch.query, + Resource: DeleteIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteIndexTemplate, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_177, + SpanId: Id_178, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_179, + SpanId: Id_180, + Name: elasticsearch.query, + Resource: DeleteJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteJob, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_181, + SpanId: Id_182, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_183, + SpanId: Id_184, + Name: elasticsearch.query, + Resource: DeleteRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRole, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_185, + SpanId: Id_186, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_187, + SpanId: Id_188, + Name: elasticsearch.query, + Resource: DeleteRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteRoleMapping, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_189, + SpanId: Id_190, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_191, + SpanId: Id_192, + Name: elasticsearch.query, + Resource: DeleteUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DeleteUser, + elasticsearch.method: DELETE, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_193, + SpanId: Id_194, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_195, + SpanId: Id_196, + Name: elasticsearch.query, + Resource: DisableUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: DisableUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1/_disable, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_197, + SpanId: Id_198, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_199, + SpanId: Id_200, + Name: elasticsearch.query, + Resource: FlushJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: FlushJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_flush, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_201, + SpanId: Id_202, + Name: elasticsearch.query, + Resource: ForecastJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ForecastJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_forecast, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_203, + SpanId: Id_204, + Name: elasticsearch.query, + Resource: ForecastJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ForecastJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_forecast, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_205, + SpanId: Id_206, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_207, + SpanId: Id_208, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_209, + SpanId: Id_210, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_211, + SpanId: Id_212, + Name: elasticsearch.query, + Resource: GetAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAlias, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_alias, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_213, + SpanId: Id_214, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_215, + SpanId: Id_216, + Name: elasticsearch.query, + Resource: GetAnomalyRecords, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetAnomalyRecords, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/records, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_217, + SpanId: Id_218, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_219, + SpanId: Id_220, + Name: elasticsearch.query, + Resource: GetBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_221, + SpanId: Id_222, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_223, + SpanId: Id_224, + Name: elasticsearch.query, + Resource: GetCategories, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetCategories, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/categories/, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_225, + SpanId: Id_226, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_227, + SpanId: Id_228, + Name: elasticsearch.query, + Resource: GetInfluencers, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetInfluencers, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/influencers, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_229, + SpanId: Id_230, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_231, + SpanId: Id_232, + Name: elasticsearch.query, + Resource: GetJobs, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobs, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_233, + SpanId: Id_234, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_235, + SpanId: Id_236, + Name: elasticsearch.query, + Resource: GetJobStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetJobStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_237, + SpanId: Id_238, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_239, + SpanId: Id_240, + Name: elasticsearch.query, + Resource: GetModelSnapshots, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetModelSnapshots, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/model_snapshots, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_241, + SpanId: Id_242, + Name: elasticsearch.query, + Resource: GetOverallBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetOverallBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/overall_buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_243, + SpanId: Id_244, + Name: elasticsearch.query, + Resource: GetOverallBuckets, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetOverallBuckets, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/results/overall_buckets, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_245, + SpanId: Id_246, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_247, + SpanId: Id_248, + Name: elasticsearch.query, + Resource: GetRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRole, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_249, + SpanId: Id_250, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_251, + SpanId: Id_252, + Name: elasticsearch.query, + Resource: GetRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetRoleMapping, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_253, + SpanId: Id_254, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_255, + SpanId: Id_256, + Name: elasticsearch.query, + Resource: GetUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: GetUser, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_257, + SpanId: Id_258, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_259, + SpanId: Id_260, + Name: elasticsearch.query, + Resource: IndexExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/test_index_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_261, + SpanId: Id_262, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_263, + SpanId: Id_264, + Name: elasticsearch.query, + Resource: IndexTemplateExists, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndexTemplateExists, + elasticsearch.method: HEAD, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_265, + SpanId: Id_266, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_267, + SpanId: Id_268, + Name: elasticsearch.query, + Resource: IndicesShardStores, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesShardStores, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/_shard_stores, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_269, + SpanId: Id_270, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_271, + SpanId: Id_272, + Name: elasticsearch.query, + Resource: IndicesStats, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: IndicesStats, + elasticsearch.method: GET, + elasticsearch.url: http://localhost:00000/test_index_1/_stats, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_273, + SpanId: Id_274, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_275, + SpanId: Id_276, + Name: elasticsearch.query, + Resource: OpenIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenIndex, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/test_index_1/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_277, + SpanId: Id_278, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_279, + SpanId: Id_280, + Name: elasticsearch.query, + Resource: OpenJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: OpenJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job/_open, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_281, + SpanId: Id_282, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_283, + SpanId: Id_284, + Name: elasticsearch.query, + Resource: PutAlias, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutAlias, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_alias/test_index_3, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_285, + SpanId: Id_286, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_287, + SpanId: Id_288, + Name: elasticsearch.query, + Resource: PutIndexTemplate, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutIndexTemplate, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_template/test_template_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_289, + SpanId: Id_290, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_291, + SpanId: Id_292, + Name: elasticsearch.query, + Resource: PutJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutJob, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/test_job, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_293, + SpanId: Id_294, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_295, + SpanId: Id_296, + Name: elasticsearch.query, + Resource: PutRole, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRole, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/role/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_297, + SpanId: Id_298, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_299, + SpanId: Id_300, + Name: elasticsearch.query, + Resource: PutRoleMapping, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutRoleMapping, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/role_mapping/test_role_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_301, + SpanId: Id_302, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_303, + SpanId: Id_304, + Name: elasticsearch.query, + Resource: PutUser, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: PutUser, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/_security/user/test_user_1, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_305, + SpanId: Id_306, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_307, + SpanId: Id_308, + Name: elasticsearch.query, + Resource: Search, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: Search, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/elastic-net-example/_search?typed_keys=true, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_309, + SpanId: Id_310, + Name: elasticsearch.query, + Resource: SplitIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: SplitIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_split/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_311, + SpanId: Id_312, + Name: elasticsearch.query, + Resource: SplitIndex, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: SplitIndex, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_split/test_index_4, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_313, + SpanId: Id_314, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_315, + SpanId: Id_316, + Name: elasticsearch.query, + Resource: UpdateIndexSettings, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: UpdateIndexSettings, + elasticsearch.method: PUT, + elasticsearch.url: http://localhost:00000/test_index_1/_settings, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_317, + SpanId: Id_318, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + }, + { + TraceId: Id_319, + SpanId: Id_320, + Name: elasticsearch.query, + Resource: ValidateJob, + Service: Samples.Elasticsearch, + Type: elasticsearch, + Tags: { + component: elasticsearch-net, + elasticsearch.action: ValidateJob, + elasticsearch.method: POST, + elasticsearch.url: http://localhost:00000/_ml/anomaly_detectors/_validate, + env: integration_tests, + out.host: elasticsearch, + peer.service: elasticsearch, + runtime-id: Guid_1, + span.kind: client, + version: 1.0.0, + _dd.git.commit.sha: aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbb, + _dd.git.repository_url: https://github.com/DataDog/dd-trace-dotnet, + _dd.p.dm: -0, + _dd.peer.service.source: out.host + }, + Metrics: { + process_id: 0, + _dd.agent_psr: 1.0, + _dd.top_level: 1.0, + _dd.tracer_kr: 1.0, + _sampling_priority_v1: 1.0 + } + } +] \ No newline at end of file diff --git a/tracer/test/test-applications/integrations/Samples.Elasticsearch.V7/Program.cs b/tracer/test/test-applications/integrations/Samples.Elasticsearch.V7/Program.cs index cb3256d87331..f802c0ba20d0 100644 --- a/tracer/test/test-applications/integrations/Samples.Elasticsearch.V7/Program.cs +++ b/tracer/test/test-applications/integrations/Samples.Elasticsearch.V7/Program.cs @@ -167,9 +167,7 @@ private static List> IndexCommands(ElasticClient elastic) () => elastic.Indices.DeleteAlias(new DeleteAliasRequest("test_index_1", "test_index_3")), () => elastic.Indices.DeleteAlias(new DeleteAliasRequest("test_index_1", "test_index_2")), () => elastic.Indices.Create("test_index_4"), -#if (!DEFAULT_SAMPLES) () => elastic.Indices.Split("test_index_1", "test_index_4"), -#endif () => elastic.Indices.Delete("test_index_4"), () => elastic.Indices.Close("test_index_1"), () => elastic.Indices.Open("test_index_1"), @@ -219,9 +217,7 @@ private static List> IndexCommandsAsync(ElasticClient elastic) () => elastic.Indices.DeleteAliasAsync(new DeleteAliasRequest("test_index_1", "test_index_3")), () => elastic.Indices.DeleteAliasAsync(new DeleteAliasRequest("test_index_1", "test_index_2")), () => elastic.Indices.CreateAsync("test_index_4"), -#if (!DEFAULT_SAMPLES) () => elastic.Indices.SplitAsync("test_index_1", "test_index_4"), -#endif () => elastic.Indices.DeleteAsync("test_index_4"), () => elastic.Indices.CloseAsync("test_index_1"), () => elastic.Indices.OpenAsync("test_index_1"), @@ -306,10 +302,8 @@ private static List> JobCommands(ElasticClient elastic) () => elastic.MachineLearning.GetJobStats(new GetJobStatsRequest()), () => elastic.MachineLearning.GetModelSnapshots(new GetModelSnapshotsRequest("test_job")), () => elastic.MachineLearning.FlushJob(new FlushJobRequest("test_job")), -#if (!DEFAULT_SAMPLES) () => elastic.MachineLearning.GetOverallBuckets(new GetOverallBucketsRequest("test_job")), () => elastic.MachineLearning.ForecastJob(new ForecastJobRequest("test_job")), -#endif () => elastic.MachineLearning.GetAnomalyRecords(new GetAnomalyRecordsRequest("test_job")), () => elastic.MachineLearning.GetBuckets(new GetBucketsRequest("test_job")), () => elastic.MachineLearning.GetCategories(new GetCategoriesRequest("test_job")), @@ -330,10 +324,8 @@ private static List> JobCommandsAsync(ElasticClient elastic) () => elastic.MachineLearning.GetJobStatsAsync(new GetJobStatsRequest()), () => elastic.MachineLearning.GetModelSnapshotsAsync(new GetModelSnapshotsRequest("test_job")), () => elastic.MachineLearning.FlushJobAsync(new FlushJobRequest("test_job")), -#if (!DEFAULT_SAMPLES) () => elastic.MachineLearning.GetOverallBucketsAsync(new GetOverallBucketsRequest("test_job")), () => elastic.MachineLearning.ForecastJobAsync(new ForecastJobRequest("test_job")), -#endif () => elastic.MachineLearning.GetAnomalyRecordsAsync(new GetAnomalyRecordsRequest("test_job")), () => elastic.MachineLearning.GetBucketsAsync(new GetBucketsRequest("test_job")), () => elastic.MachineLearning.GetCategoriesAsync(new GetCategoriesRequest("test_job")), diff --git a/tracer/test/test-applications/integrations/Samples.Elasticsearch/Program.cs b/tracer/test/test-applications/integrations/Samples.Elasticsearch/Program.cs index 2372d605f12c..47f835c90bf9 100644 --- a/tracer/test/test-applications/integrations/Samples.Elasticsearch/Program.cs +++ b/tracer/test/test-applications/integrations/Samples.Elasticsearch/Program.cs @@ -167,7 +167,7 @@ private static List> IndexCommands(ElasticClient elastic) () => elastic.DeleteAlias(new DeleteAliasRequest("test_index_1", "test_index_3")), () => elastic.DeleteAlias(new DeleteAliasRequest("test_index_1", "test_index_2")), () => elastic.CreateIndex("test_index_4"), -#if (ELASTICSEARCH_6_1 && !DEFAULT_SAMPLES) +#if ELASTICSEARCH_6_1 () => elastic.SplitIndex("test_index_1", "test_index_4"), #endif () => elastic.DeleteIndex("test_index_4"), @@ -219,7 +219,7 @@ private static List> IndexCommandsAsync(ElasticClient elastic) () => elastic.DeleteAliasAsync(new DeleteAliasRequest("test_index_1", "test_index_3")), () => elastic.DeleteAliasAsync(new DeleteAliasRequest("test_index_1", "test_index_2")), () => elastic.CreateIndexAsync("test_index_4"), -#if (ELASTICSEARCH_6_1 && !DEFAULT_SAMPLES) +#if ELASTICSEARCH_6_1 () => elastic.SplitIndexAsync("test_index_1", "test_index_4"), #endif () => elastic.DeleteIndexAsync("test_index_4"), @@ -306,7 +306,7 @@ private static List> JobCommands(ElasticClient elastic) () => elastic.GetJobStats(new GetJobStatsRequest()), () => elastic.GetModelSnapshots(new GetModelSnapshotsRequest("test_job")), () => elastic.FlushJob(new FlushJobRequest("test_job")), -#if (ELASTICSEARCH_6_1 && !DEFAULT_SAMPLES) +#if ELASTICSEARCH_6_1 () => elastic.GetOverallBuckets(new GetOverallBucketsRequest("test_job")), () => elastic.ForecastJob(new ForecastJobRequest("test_job")), #endif @@ -330,7 +330,7 @@ private static List> JobCommandsAsync(ElasticClient elastic) () => elastic.GetJobStatsAsync(new GetJobStatsRequest()), () => elastic.GetModelSnapshotsAsync(new GetModelSnapshotsRequest("test_job")), () => elastic.FlushJobAsync(new FlushJobRequest("test_job")), -#if (ELASTICSEARCH_6_1 && !DEFAULT_SAMPLES) +#if ELASTICSEARCH_6_1 () => elastic.GetOverallBucketsAsync(new GetOverallBucketsRequest("test_job")), () => elastic.ForecastJobAsync(new ForecastJobRequest("test_job")), #endif