Class TestSpanEnrichmentDetails
Run a set of span enrichment rules on a given span to see the result.
Inherited Members
Namespace: Oci.ApmconfigService.Models
Assembly: OCI.DotNetSDK.Apmconfig.dll
Syntax
public class TestSpanEnrichmentDetails : TestDetailsProperties
Filters
Declaration
[JsonProperty(PropertyName = "filters")]
public List<FilterTextOrId> Filters { get; set; }Property Value
| Type | Description | 
|---|---|
| List<FilterTextOrId> | A list of filters to try against the given span. | 
Options
Declaration
[Required(ErrorMessage = "Options is required.")]
[JsonProperty(PropertyName = "options")]
public object Options { get; set; }Property Value
| Type | Description | 
|---|---|
| object | The span enrichment rules to test in the format of an Options resource. | 
Remarks
Required
Span
Declaration
[Required(ErrorMessage = "Span is required.")]
[JsonProperty(PropertyName = "span")]
public object Span { get; set; }Property Value
| Type | Description | 
|---|---|
| object | The span to test the rules on. This should be a valid JSON object that follows one of the formats used by distributed tracing frameworks, such as OpenTelemetry, Zipkin, or Oracle Application Performance Monitoring. | 
Remarks
Required