Show / Hide Table of Contents

Class FilterTextOrId

A span filter written in text, or as the OCID of a SpanFilter resource. If both are given, the filterText is used.

Inheritance
object
FilterTextOrId
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 FilterTextOrId

Properties

FilterId

Declaration
[JsonProperty(PropertyName = "filterId")]
public string FilterId { get; set; }
Property Value
Type Description
string

The OCID of a Span Filter. The filterId is mandatory for the creation of MetricGroups. A filterId is generated when a Span Filter is created.

FilterText

Declaration
[JsonProperty(PropertyName = "filterText")]
public string FilterText { get; set; }
Property Value
Type Description
string

The string that defines the Span Filter expression.

In this article
Back to top