Show / Hide Table of Contents

Class OsCommandUpdateQueryProperties

Query Properties applicable to OS_COMMAND type of collection method

Inheritance
object
MetricExtensionUpdateQueryProperties
OsCommandUpdateQueryProperties
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 OsCommandUpdateQueryProperties : MetricExtensionUpdateQueryProperties

Properties

Arguments

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

Arguments required by either command or script

Command

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

OS command to execute without arguments

Delimiter

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

Character used to delimit multiple metric values in single line of output

ScriptDetails

Declaration
[JsonProperty(PropertyName = "scriptDetails")]
public ScriptFileDetails ScriptDetails { get; set; }
Property Value
Type Description
ScriptFileDetails

StartsWith

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

String prefix used to identify metric output of the OS Command

In this article
Back to top