Show / Hide Table of Contents

Class UnifiedAgentSyslogParser

Syslog Parser.

Inheritance
object
UnifiedAgentParser
UnifiedAgentSyslogParser
Inherited Members
UnifiedAgentParser.FieldTimeKey
UnifiedAgentParser.Types
UnifiedAgentParser.NullValuePattern
UnifiedAgentParser.IsNullEmptyString
UnifiedAgentParser.IsEstimateCurrentEvent
UnifiedAgentParser.IsKeepTimeKey
UnifiedAgentParser.TimeoutInMilliseconds
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoggingService.Models
Assembly: OCI.DotNetSDK.Logging.dll
Syntax
public class UnifiedAgentSyslogParser : UnifiedAgentParser

Properties

IsSupportColonlessIdent

Declaration
[JsonProperty(PropertyName = "isSupportColonlessIdent")]
public bool? IsSupportColonlessIdent { get; set; }
Property Value
Type Description
bool?

Specifies whether or not to support colonless ident. Corresponds to the Fluentd support_colonless_ident parameter.

IsWithPriority

Declaration
[JsonProperty(PropertyName = "isWithPriority")]
public bool? IsWithPriority { get; set; }
Property Value
Type Description
bool?

Specifies with priority or not. Corresponds to the Fluentd with_priority parameter.

MessageFormat

Declaration
[JsonProperty(PropertyName = "messageFormat")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UnifiedAgentSyslogParser.MessageFormatEnum? MessageFormat { get; set; }
Property Value
Type Description
UnifiedAgentSyslogParser.MessageFormatEnum?

Syslog message format.

Rfc5424TimeFormat

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

RFC 5424 time format.

SyslogParserType

Declaration
[JsonProperty(PropertyName = "syslogParserType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UnifiedAgentSyslogParser.SyslogParserTypeEnum? SyslogParserType { get; set; }
Property Value
Type Description
UnifiedAgentSyslogParser.SyslogParserTypeEnum?

Syslog parser type.

TimeFormat

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

Time format.

In this article
Back to top