Show / Hide Table of Contents

Class ProcessSetSpecificationDetails

Details of a single regular expression specification in a Process Set.

Inheritance
object
ProcessSetSpecificationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StackmonitoringService.Models
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class ProcessSetSpecificationDetails

Properties

Label

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

Optional label used to identify a single filter.

ProcessCommand

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

String literal used for exact matching on process name.

ProcessLineRegexPattern

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

Regex pattern matching on process arguments.

ProcessUser

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

String literal used for exact matching on process user.

In this article
Back to top