• EnglishEspañol日本語한국어Português
  • Log inStart now

TraceMetadata (.NET agent API)

Syntax

NewRelic.Api.Agent.TraceMetadata;

Returns properties in the current execution environment used to support tracing.

Requirements

Agent version 8.19 or higher.

Compatible with all app types.

Distributed tracing must be enabled to get meaningful values.

Description

Provides access to the following properties:

Properties

Name

Description

TraceId

Returns a string representing the currently executing trace. If the trace ID is not available, or distributed tracing is disabled, the value will be string.Empty.

SpanId

Returns a string representing the currently executing span. If the span ID is not available, or distributed tracing is disabled, the value will be string.Empty.

IsSampled

Returns true if the current trace is sampled for inclusion, false if it is sampled out.

Examples

IAgent agent = NewRelic.Api.Agent.NewRelic.GetAgent();
TraceMetadata traceMetadata = agent.TraceMetadata;
string traceId = traceMetadata.TraceId;
string spanId = traceMetadata.SpanId;
bool isSampled = traceMetadata.IsSampled;
Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.