Show / Hide Table of Contents

Class TestSpanEnrichmentOutput

Output of running a set of span enrichment rules against a span.

Inheritance
object
TestOutput
TestSpanEnrichmentOutput
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmconfigService.Models
Assembly: OCI.DotNetSDK.Apmconfig.dll
Syntax
public class TestSpanEnrichmentOutput : TestOutput

Properties

Filters

Declaration
[JsonProperty(PropertyName = "filters")]
public List<bool> Filters { get; set; }
Property Value
Type Description
List<bool>

A list of booleans indicating whether the corresponding filter in the input matched the input span.

Span

Declaration
[JsonProperty(PropertyName = "span")]
public object Span { get; set; }
Property Value
Type Description
object

The span after applying enrichment rules.

In this article
Back to top