simple

package
v0.0.0-...-2c76a10 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 24, 2022 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AnyValue

type AnyValue struct {
	// contains filtered or unexported fields
}

func UnmarshalAnyValue

func UnmarshalAnyValue(bytes []byte, opts lazyproto.UnmarshalOpts) (*AnyValue, error)

UnmarshalAnyValue unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a AnyValue message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*AnyValue) ArrayValue

func (m *AnyValue) ArrayValue() (r *ArrayValue)

ArrayValue returns the value of the arrayValue. If the field "value" is not set to "arrayValue" then the returned value is undefined.

func (*AnyValue) BoolValue

func (m *AnyValue) BoolValue() (r bool)

BoolValue returns the value of the boolValue. If the field "value" is not set to "boolValue" then the returned value is undefined.

func (*AnyValue) BytesValue

func (m *AnyValue) BytesValue() (r []byte)

BytesValue returns the value of the bytesValue. If the field "value" is not set to "bytesValue" then the returned value is undefined.

func (*AnyValue) DoubleValue

func (m *AnyValue) DoubleValue() (r float64)

DoubleValue returns the value of the doubleValue. If the field "value" is not set to "doubleValue" then the returned value is undefined.

func (*AnyValue) Free

func (m *AnyValue) Free()

func (*AnyValue) IntValue

func (m *AnyValue) IntValue() (r int64)

IntValue returns the value of the intValue. If the field "value" is not set to "intValue" then the returned value is undefined.

func (*AnyValue) KvlistValue

func (m *AnyValue) KvlistValue() (r *KeyValueList)

KvlistValue returns the value of the kvlistValue. If the field "value" is not set to "kvlistValue" then the returned value is undefined.

func (*AnyValue) Marshal

func (m *AnyValue) Marshal(ps *molecule.ProtoStream) error

func (*AnyValue) SetArrayValue

func (m *AnyValue) SetArrayValue(v *ArrayValue)

SetArrayValue sets the value of the arrayValue. The oneof field "value" will be set to "arrayValue".

func (*AnyValue) SetBoolValue

func (m *AnyValue) SetBoolValue(v bool)

SetBoolValue sets the value of the boolValue. The oneof field "value" will be set to "boolValue".

func (*AnyValue) SetBytesValue

func (m *AnyValue) SetBytesValue(v []byte)

SetBytesValue sets the value of the bytesValue. The oneof field "value" will be set to "bytesValue".

func (*AnyValue) SetDoubleValue

func (m *AnyValue) SetDoubleValue(v float64)

SetDoubleValue sets the value of the doubleValue. The oneof field "value" will be set to "doubleValue".

func (*AnyValue) SetIntValue

func (m *AnyValue) SetIntValue(v int64)

SetIntValue sets the value of the intValue. The oneof field "value" will be set to "intValue".

func (*AnyValue) SetKvlistValue

func (m *AnyValue) SetKvlistValue(v *KeyValueList)

SetKvlistValue sets the value of the kvlistValue. The oneof field "value" will be set to "kvlistValue".

func (*AnyValue) SetStringValue

func (m *AnyValue) SetStringValue(v string)

SetStringValue sets the value of the stringValue. The oneof field "value" will be set to "stringValue".

func (*AnyValue) StringValue

func (m *AnyValue) StringValue() (r string)

StringValue returns the value of the stringValue. If the field "value" is not set to "stringValue" then the returned value is undefined.

func (*AnyValue) ValueType

func (m *AnyValue) ValueType() AnyValueValue

ValueType returns the type of the current stored oneof "value". To set the type use one of the setters.

func (*AnyValue) ValueUnset

func (m *AnyValue) ValueUnset()

ValueUnset unsets the oneof field "value", so that it contains none of the choices.

type AnyValueValue

type AnyValueValue int

AnyValueValue defines the possible types for oneof field "value".

const (
	// AnyValueValueNone indicates that none of the oneof choices is set.
	AnyValueValueNone AnyValueValue = 0
	// AnyValueStringValue indicates that oneof field "stringValue" is set.
	AnyValueStringValue AnyValueValue = 1
	// AnyValueBoolValue indicates that oneof field "boolValue" is set.
	AnyValueBoolValue AnyValueValue = 2
	// AnyValueIntValue indicates that oneof field "intValue" is set.
	AnyValueIntValue AnyValueValue = 3
	// AnyValueDoubleValue indicates that oneof field "doubleValue" is set.
	AnyValueDoubleValue AnyValueValue = 4
	// AnyValueArrayValue indicates that oneof field "arrayValue" is set.
	AnyValueArrayValue AnyValueValue = 5
	// AnyValueKvlistValue indicates that oneof field "kvlistValue" is set.
	AnyValueKvlistValue AnyValueValue = 6
	// AnyValueBytesValue indicates that oneof field "bytesValue" is set.
	AnyValueBytesValue AnyValueValue = 7
)

type ArrayValue

type ArrayValue struct {
	// contains filtered or unexported fields
}

func UnmarshalArrayValue

func UnmarshalArrayValue(bytes []byte, opts lazyproto.UnmarshalOpts) (*ArrayValue, error)

UnmarshalArrayValue unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a ArrayValue message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*ArrayValue) Free

func (m *ArrayValue) Free()

func (*ArrayValue) Marshal

func (m *ArrayValue) Marshal(ps *molecule.ProtoStream) error

func (*ArrayValue) SetValues

func (m *ArrayValue) SetValues(v []*AnyValue)

SetValues sets the value of the values.

func (*ArrayValue) Values

func (m *ArrayValue) Values() (r []*AnyValue)

Values returns the value of the values.

func (*ArrayValue) ValuesRemoveIf

func (m *ArrayValue) ValuesRemoveIf(f func(*AnyValue) bool)

type InstrumentationScope

type InstrumentationScope struct {
	// contains filtered or unexported fields
}

func UnmarshalInstrumentationScope

func UnmarshalInstrumentationScope(bytes []byte, opts lazyproto.UnmarshalOpts) (*InstrumentationScope, error)

UnmarshalInstrumentationScope unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a InstrumentationScope message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*InstrumentationScope) Attributes

func (m *InstrumentationScope) Attributes() (r []*KeyValue)

Attributes returns the value of the attributes.

func (*InstrumentationScope) AttributesRemoveIf

func (m *InstrumentationScope) AttributesRemoveIf(f func(*KeyValue) bool)

func (*InstrumentationScope) DroppedAttributesCount

func (m *InstrumentationScope) DroppedAttributesCount() (r uint32)

DroppedAttributesCount returns the value of the droppedAttributesCount.

func (*InstrumentationScope) Free

func (m *InstrumentationScope) Free()

func (*InstrumentationScope) Marshal

func (*InstrumentationScope) Name

func (m *InstrumentationScope) Name() (r string)

Name returns the value of the name.

func (*InstrumentationScope) SetAttributes

func (m *InstrumentationScope) SetAttributes(v []*KeyValue)

SetAttributes sets the value of the attributes.

func (*InstrumentationScope) SetDroppedAttributesCount

func (m *InstrumentationScope) SetDroppedAttributesCount(v uint32)

SetDroppedAttributesCount sets the value of the droppedAttributesCount.

func (*InstrumentationScope) SetName

func (m *InstrumentationScope) SetName(v string)

SetName sets the value of the name.

func (*InstrumentationScope) SetVersion

func (m *InstrumentationScope) SetVersion(v string)

SetVersion sets the value of the version.

func (*InstrumentationScope) Version

func (m *InstrumentationScope) Version() (r string)

Version returns the value of the version.

type KeyValue

type KeyValue struct {
	// contains filtered or unexported fields
}

func UnmarshalKeyValue

func UnmarshalKeyValue(bytes []byte, opts lazyproto.UnmarshalOpts) (*KeyValue, error)

UnmarshalKeyValue unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a KeyValue message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*KeyValue) Free

func (m *KeyValue) Free()

func (*KeyValue) Key

func (m *KeyValue) Key() (r string)

Key returns the value of the key.

func (*KeyValue) Marshal

func (m *KeyValue) Marshal(ps *molecule.ProtoStream) error

func (*KeyValue) SetKey

func (m *KeyValue) SetKey(v string)

SetKey sets the value of the key.

func (*KeyValue) SetValue

func (m *KeyValue) SetValue(v *AnyValue)

SetValue sets the value of the value.

func (*KeyValue) Value

func (m *KeyValue) Value() (r *AnyValue)

Value returns the value of the value.

type KeyValueList

type KeyValueList struct {
	// contains filtered or unexported fields
}

func UnmarshalKeyValueList

func UnmarshalKeyValueList(bytes []byte, opts lazyproto.UnmarshalOpts) (*KeyValueList, error)

UnmarshalKeyValueList unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a KeyValueList message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*KeyValueList) Free

func (m *KeyValueList) Free()

func (*KeyValueList) Marshal

func (m *KeyValueList) Marshal(ps *molecule.ProtoStream) error

func (*KeyValueList) SetValues

func (m *KeyValueList) SetValues(v []*KeyValue)

SetValues sets the value of the values.

func (*KeyValueList) Values

func (m *KeyValueList) Values() (r []*KeyValue)

Values returns the value of the values.

func (*KeyValueList) ValuesRemoveIf

func (m *KeyValueList) ValuesRemoveIf(f func(*KeyValue) bool)

type LogRecord

type LogRecord struct {
	// contains filtered or unexported fields
}

func UnmarshalLogRecord

func UnmarshalLogRecord(bytes []byte, opts lazyproto.UnmarshalOpts) (*LogRecord, error)

UnmarshalLogRecord unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a LogRecord message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*LogRecord) Attributes

func (m *LogRecord) Attributes() (r []*KeyValue)

Attributes returns the value of the attributes.

func (*LogRecord) AttributesRemoveIf

func (m *LogRecord) AttributesRemoveIf(f func(*KeyValue) bool)

func (*LogRecord) DroppedAttributesCount

func (m *LogRecord) DroppedAttributesCount() (r uint32)

DroppedAttributesCount returns the value of the droppedAttributesCount.

func (*LogRecord) Flags

func (m *LogRecord) Flags() (r uint32)

Flags returns the value of the flags.

func (*LogRecord) Free

func (m *LogRecord) Free()

func (*LogRecord) Marshal

func (m *LogRecord) Marshal(ps *molecule.ProtoStream) error

func (*LogRecord) ObservedTimeUnixNano

func (m *LogRecord) ObservedTimeUnixNano() (r uint64)

ObservedTimeUnixNano returns the value of the observedTimeUnixNano.

func (*LogRecord) SetAttributes

func (m *LogRecord) SetAttributes(v []*KeyValue)

SetAttributes sets the value of the attributes.

func (*LogRecord) SetDroppedAttributesCount

func (m *LogRecord) SetDroppedAttributesCount(v uint32)

SetDroppedAttributesCount sets the value of the droppedAttributesCount.

func (*LogRecord) SetFlags

func (m *LogRecord) SetFlags(v uint32)

SetFlags sets the value of the flags.

func (*LogRecord) SetObservedTimeUnixNano

func (m *LogRecord) SetObservedTimeUnixNano(v uint64)

SetObservedTimeUnixNano sets the value of the observedTimeUnixNano.

func (*LogRecord) SetSeverityNumber

func (m *LogRecord) SetSeverityNumber(v SeverityNumber)

SetSeverityNumber sets the value of the severityNumber.

func (*LogRecord) SetSeverityText

func (m *LogRecord) SetSeverityText(v string)

SetSeverityText sets the value of the severityText.

func (*LogRecord) SetSpanId

func (m *LogRecord) SetSpanId(v []byte)

SetSpanId sets the value of the spanId.

func (*LogRecord) SetTimeUnixNano

func (m *LogRecord) SetTimeUnixNano(v uint64)

SetTimeUnixNano sets the value of the timeUnixNano.

func (*LogRecord) SetTraceId

func (m *LogRecord) SetTraceId(v []byte)

SetTraceId sets the value of the traceId.

func (*LogRecord) SeverityNumber

func (m *LogRecord) SeverityNumber() (r SeverityNumber)

SeverityNumber returns the value of the severityNumber.

func (*LogRecord) SeverityText

func (m *LogRecord) SeverityText() (r string)

SeverityText returns the value of the severityText.

func (*LogRecord) SpanId

func (m *LogRecord) SpanId() (r []byte)

SpanId returns the value of the spanId.

func (*LogRecord) TimeUnixNano

func (m *LogRecord) TimeUnixNano() (r uint64)

TimeUnixNano returns the value of the timeUnixNano.

func (*LogRecord) TraceId

func (m *LogRecord) TraceId() (r []byte)

TraceId returns the value of the traceId.

type LogsData

type LogsData struct {
	// contains filtered or unexported fields
}

LogsData contains all log data

func UnmarshalLogsData

func UnmarshalLogsData(bytes []byte, opts lazyproto.UnmarshalOpts) (*LogsData, error)

UnmarshalLogsData unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a LogsData message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*LogsData) Free

func (m *LogsData) Free()

func (*LogsData) Marshal

func (m *LogsData) Marshal(ps *molecule.ProtoStream) error

func (*LogsData) ResourceLogs

func (m *LogsData) ResourceLogs() (r []*ResourceLogs)

ResourceLogs returns the value of the resourceLogs.

func (*LogsData) ResourceLogsRemoveIf

func (m *LogsData) ResourceLogsRemoveIf(f func(*ResourceLogs) bool)

func (*LogsData) SetResourceLogs

func (m *LogsData) SetResourceLogs(v []*ResourceLogs)

SetResourceLogs sets the value of the resourceLogs.

type PlainMessage

type PlainMessage struct {
	// contains filtered or unexported fields
}

func UnmarshalPlainMessage

func UnmarshalPlainMessage(bytes []byte, opts lazyproto.UnmarshalOpts) (*PlainMessage, error)

UnmarshalPlainMessage unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a PlainMessage message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*PlainMessage) Free

func (m *PlainMessage) Free()

func (*PlainMessage) Key

func (m *PlainMessage) Key() (r string)

Key returns the value of the key.

func (*PlainMessage) Marshal

func (m *PlainMessage) Marshal(ps *molecule.ProtoStream) error

func (*PlainMessage) SetKey

func (m *PlainMessage) SetKey(v string)

SetKey sets the value of the key.

func (*PlainMessage) SetValue

func (m *PlainMessage) SetValue(v string)

SetValue sets the value of the value.

func (*PlainMessage) Value

func (m *PlainMessage) Value() (r string)

Value returns the value of the value.

type Resource

type Resource struct {
	// contains filtered or unexported fields
}

func UnmarshalResource

func UnmarshalResource(bytes []byte, opts lazyproto.UnmarshalOpts) (*Resource, error)

UnmarshalResource unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a Resource message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*Resource) Attributes

func (m *Resource) Attributes() (r []*KeyValue)

Attributes returns the value of the attributes.

func (*Resource) AttributesRemoveIf

func (m *Resource) AttributesRemoveIf(f func(*KeyValue) bool)

func (*Resource) DroppedAttributesCount

func (m *Resource) DroppedAttributesCount() (r uint32)

DroppedAttributesCount returns the value of the droppedAttributesCount.

func (*Resource) Free

func (m *Resource) Free()

func (*Resource) Marshal

func (m *Resource) Marshal(ps *molecule.ProtoStream) error

func (*Resource) SetAttributes

func (m *Resource) SetAttributes(v []*KeyValue)

SetAttributes sets the value of the attributes.

func (*Resource) SetDroppedAttributesCount

func (m *Resource) SetDroppedAttributesCount(v uint32)

SetDroppedAttributesCount sets the value of the droppedAttributesCount.

type ResourceLogs

type ResourceLogs struct {
	// contains filtered or unexported fields
}

func UnmarshalResourceLogs

func UnmarshalResourceLogs(bytes []byte, opts lazyproto.UnmarshalOpts) (*ResourceLogs, error)

UnmarshalResourceLogs unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a ResourceLogs message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*ResourceLogs) Free

func (m *ResourceLogs) Free()

func (*ResourceLogs) Marshal

func (m *ResourceLogs) Marshal(ps *molecule.ProtoStream) error

func (*ResourceLogs) Resource

func (m *ResourceLogs) Resource() (r *Resource)

Resource returns the value of the resource.

func (*ResourceLogs) SchemaUrl

func (m *ResourceLogs) SchemaUrl() (r string)

SchemaUrl returns the value of the schemaUrl.

func (*ResourceLogs) ScopeLogs

func (m *ResourceLogs) ScopeLogs() (r []*ScopeLogs)

ScopeLogs returns the value of the scopeLogs.

func (*ResourceLogs) ScopeLogsRemoveIf

func (m *ResourceLogs) ScopeLogsRemoveIf(f func(*ScopeLogs) bool)

func (*ResourceLogs) SetResource

func (m *ResourceLogs) SetResource(v *Resource)

SetResource sets the value of the resource.

func (*ResourceLogs) SetSchemaUrl

func (m *ResourceLogs) SetSchemaUrl(v string)

SetSchemaUrl sets the value of the schemaUrl.

func (*ResourceLogs) SetScopeLogs

func (m *ResourceLogs) SetScopeLogs(v []*ScopeLogs)

SetScopeLogs sets the value of the scopeLogs.

type ScopeLogs

type ScopeLogs struct {
	// contains filtered or unexported fields
}

A collection of Logs produced by a Scope.

func UnmarshalScopeLogs

func UnmarshalScopeLogs(bytes []byte, opts lazyproto.UnmarshalOpts) (*ScopeLogs, error)

UnmarshalScopeLogs unmarshals from the Protobuf wire bytes into a struct representing the message. If WithValidate option is provided the wire bytes will be validated to make sure the contain a valid representation of a ScopeLogs message. If WithValidate option is not provided the validation will not be performed and subsequent access of the fields of the message can return missing values if the values happen to be invalid on the wire. The returned message can be freed using Free() method when it is known that there no remaining pointers to the message and it can be safely discarded. This places the message struct into a pool from which it can be reused by future unmarshal operations.

func (*ScopeLogs) Free

func (m *ScopeLogs) Free()

func (*ScopeLogs) LogRecords

func (m *ScopeLogs) LogRecords() (r []*LogRecord)

LogRecords returns the value of the logRecords.

func (*ScopeLogs) LogRecordsRemoveIf

func (m *ScopeLogs) LogRecordsRemoveIf(f func(*LogRecord) bool)

func (*ScopeLogs) Marshal

func (m *ScopeLogs) Marshal(ps *molecule.ProtoStream) error

func (*ScopeLogs) SchemaUrl

func (m *ScopeLogs) SchemaUrl() (r string)

SchemaUrl returns the value of the schemaUrl.

func (*ScopeLogs) Scope

func (m *ScopeLogs) Scope() (r *InstrumentationScope)

Scope returns the value of the scope.

func (*ScopeLogs) SetLogRecords

func (m *ScopeLogs) SetLogRecords(v []*LogRecord)

SetLogRecords sets the value of the logRecords.

func (*ScopeLogs) SetSchemaUrl

func (m *ScopeLogs) SetSchemaUrl(v string)

SetSchemaUrl sets the value of the schemaUrl.

func (*ScopeLogs) SetScope

func (m *ScopeLogs) SetScope(v *InstrumentationScope)

SetScope sets the value of the scope.

type SeverityNumber

type SeverityNumber uint32

SeverityNumber values

const (
	// SeverityNumber is not specified
	SeverityNumber_SEVERITY_NUMBER_UNSPECIFIED SeverityNumber = 0
	SeverityNumber_SEVERITY_NUMBER_TRACE       SeverityNumber = 1
	SeverityNumber_SEVERITY_NUMBER_TRACE2      SeverityNumber = 2
	SeverityNumber_SEVERITY_NUMBER_TRACE3      SeverityNumber = 3
	SeverityNumber_SEVERITY_NUMBER_TRACE4      SeverityNumber = 4
	SeverityNumber_SEVERITY_NUMBER_DEBUG       SeverityNumber = 5
	SeverityNumber_SEVERITY_NUMBER_DEBUG2      SeverityNumber = 6
	SeverityNumber_SEVERITY_NUMBER_DEBUG3      SeverityNumber = 7
	SeverityNumber_SEVERITY_NUMBER_DEBUG4      SeverityNumber = 8
	SeverityNumber_SEVERITY_NUMBER_INFO        SeverityNumber = 9
	SeverityNumber_SEVERITY_NUMBER_INFO2       SeverityNumber = 10
	SeverityNumber_SEVERITY_NUMBER_INFO3       SeverityNumber = 11
	SeverityNumber_SEVERITY_NUMBER_INFO4       SeverityNumber = 12
	SeverityNumber_SEVERITY_NUMBER_WARN        SeverityNumber = 13
	SeverityNumber_SEVERITY_NUMBER_WARN2       SeverityNumber = 14
	SeverityNumber_SEVERITY_NUMBER_WARN3       SeverityNumber = 15
	SeverityNumber_SEVERITY_NUMBER_WARN4       SeverityNumber = 16
	SeverityNumber_SEVERITY_NUMBER_ERROR       SeverityNumber = 17
	SeverityNumber_SEVERITY_NUMBER_ERROR2      SeverityNumber = 18
	SeverityNumber_SEVERITY_NUMBER_ERROR3      SeverityNumber = 19
	SeverityNumber_SEVERITY_NUMBER_ERROR4      SeverityNumber = 20
	SeverityNumber_SEVERITY_NUMBER_FATAL       SeverityNumber = 21
	SeverityNumber_SEVERITY_NUMBER_FATAL2      SeverityNumber = 22
	SeverityNumber_SEVERITY_NUMBER_FATAL3      SeverityNumber = 23
	SeverityNumber_SEVERITY_NUMBER_FATAL4      SeverityNumber = 24
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL