ActivityTrackingOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Flags to indicate which trace context parts should be included with the logging scopes.
This enumeration supports a bitwise combination of its member values.
public enum class ActivityTrackingOptions
[System.Flags]
public enum ActivityTrackingOptions
[<System.Flags>]
type ActivityTrackingOptions =
Public Enum ActivityTrackingOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | None of the trace context part will be included in the logging. |
SpanId | 1 | Span Id will be included in the logging. |
TraceId | 2 | Trace Id will be included in the logging. |
ParentId | 4 | Parent Id will be included in the logging. |
TraceState | 8 | Trace State will be included in the logging. |
TraceFlags | 16 | Trace flags will be included in the logging. |
Tags | 32 | Tags will be included in the logging. |
Baggage | 64 | Items of baggage will be included in the logging. |