Documentation
¶
Index ¶
- type AnyValue
- func (m *AnyValue) ArrayValue() (r *ArrayValue)
- func (m *AnyValue) BoolValue() (r bool)
- func (m *AnyValue) BytesValue() (r []byte)
- func (m *AnyValue) DoubleValue() (r float64)
- func (m *AnyValue) Free()
- func (m *AnyValue) IntValue() (r int64)
- func (m *AnyValue) KvlistValue() (r *KeyValueList)
- func (m *AnyValue) Marshal(ps *molecule.ProtoStream) error
- func (m *AnyValue) SetArrayValue(v *ArrayValue)
- func (m *AnyValue) SetBoolValue(v bool)
- func (m *AnyValue) SetBytesValue(v []byte)
- func (m *AnyValue) SetDoubleValue(v float64)
- func (m *AnyValue) SetIntValue(v int64)
- func (m *AnyValue) SetKvlistValue(v *KeyValueList)
- func (m *AnyValue) SetStringValue(v string)
- func (m *AnyValue) StringValue() (r string)
- func (m *AnyValue) ValueType() AnyValueValue
- func (m *AnyValue) ValueUnset()
- type AnyValueValue
- type ArrayValue
- type InstrumentationScope
- func (m *InstrumentationScope) Attributes() (r []*KeyValue)
- func (m *InstrumentationScope) AttributesRemoveIf(f func(*KeyValue) bool)
- func (m *InstrumentationScope) DroppedAttributesCount() (r uint32)
- func (m *InstrumentationScope) Free()
- func (m *InstrumentationScope) Marshal(ps *molecule.ProtoStream) error
- func (m *InstrumentationScope) Name() (r string)
- func (m *InstrumentationScope) SetAttributes(v []*KeyValue)
- func (m *InstrumentationScope) SetDroppedAttributesCount(v uint32)
- func (m *InstrumentationScope) SetName(v string)
- func (m *InstrumentationScope) SetVersion(v string)
- func (m *InstrumentationScope) Version() (r string)
- type KeyValue
- type KeyValueList
- type LogRecord
- func (m *LogRecord) Attributes() (r []*KeyValue)
- func (m *LogRecord) AttributesRemoveIf(f func(*KeyValue) bool)
- func (m *LogRecord) DroppedAttributesCount() (r uint32)
- func (m *LogRecord) Flags() (r uint32)
- func (m *LogRecord) Free()
- func (m *LogRecord) Marshal(ps *molecule.ProtoStream) error
- func (m *LogRecord) ObservedTimeUnixNano() (r uint64)
- func (m *LogRecord) SetAttributes(v []*KeyValue)
- func (m *LogRecord) SetDroppedAttributesCount(v uint32)
- func (m *LogRecord) SetFlags(v uint32)
- func (m *LogRecord) SetObservedTimeUnixNano(v uint64)
- func (m *LogRecord) SetSeverityNumber(v SeverityNumber)
- func (m *LogRecord) SetSeverityText(v string)
- func (m *LogRecord) SetSpanId(v []byte)
- func (m *LogRecord) SetTimeUnixNano(v uint64)
- func (m *LogRecord) SetTraceId(v []byte)
- func (m *LogRecord) SeverityNumber() (r SeverityNumber)
- func (m *LogRecord) SeverityText() (r string)
- func (m *LogRecord) SpanId() (r []byte)
- func (m *LogRecord) TimeUnixNano() (r uint64)
- func (m *LogRecord) TraceId() (r []byte)
- type LogsData
- type PlainMessage
- type Resource
- func (m *Resource) Attributes() (r []*KeyValue)
- func (m *Resource) AttributesRemoveIf(f func(*KeyValue) bool)
- func (m *Resource) DroppedAttributesCount() (r uint32)
- func (m *Resource) Free()
- func (m *Resource) Marshal(ps *molecule.ProtoStream) error
- func (m *Resource) SetAttributes(v []*KeyValue)
- func (m *Resource) SetDroppedAttributesCount(v uint32)
- type ResourceLogs
- func (m *ResourceLogs) Free()
- func (m *ResourceLogs) Marshal(ps *molecule.ProtoStream) error
- func (m *ResourceLogs) Resource() (r *Resource)
- func (m *ResourceLogs) SchemaUrl() (r string)
- func (m *ResourceLogs) ScopeLogs() (r []*ScopeLogs)
- func (m *ResourceLogs) ScopeLogsRemoveIf(f func(*ScopeLogs) bool)
- func (m *ResourceLogs) SetResource(v *Resource)
- func (m *ResourceLogs) SetSchemaUrl(v string)
- func (m *ResourceLogs) SetScopeLogs(v []*ScopeLogs)
- type ScopeLogs
- func (m *ScopeLogs) Free()
- func (m *ScopeLogs) LogRecords() (r []*LogRecord)
- func (m *ScopeLogs) LogRecordsRemoveIf(f func(*LogRecord) bool)
- func (m *ScopeLogs) Marshal(ps *molecule.ProtoStream) error
- func (m *ScopeLogs) SchemaUrl() (r string)
- func (m *ScopeLogs) Scope() (r *InstrumentationScope)
- func (m *ScopeLogs) SetLogRecords(v []*LogRecord)
- func (m *ScopeLogs) SetSchemaUrl(v string)
- func (m *ScopeLogs) SetScope(v *InstrumentationScope)
- type SeverityNumber
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 ¶
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 ¶
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 ¶
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 ¶
DoubleValue returns the value of the doubleValue. If the field "value" is not set to "doubleValue" then the returned value is undefined.
func (*AnyValue) IntValue ¶
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) 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 ¶
SetBoolValue sets the value of the boolValue. The oneof field "value" will be set to "boolValue".
func (*AnyValue) SetBytesValue ¶
SetBytesValue sets the value of the bytesValue. The oneof field "value" will be set to "bytesValue".
func (*AnyValue) SetDoubleValue ¶
SetDoubleValue sets the value of the doubleValue. The oneof field "value" will be set to "doubleValue".
func (*AnyValue) SetIntValue ¶
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 ¶
SetStringValue sets the value of the stringValue. The oneof field "value" will be set to "stringValue".
func (*AnyValue) StringValue ¶
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 (m *InstrumentationScope) Marshal(ps *molecule.ProtoStream) error
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 ¶
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.
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 ¶
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 ¶
Attributes returns the value of the attributes.
func (*LogRecord) AttributesRemoveIf ¶
func (*LogRecord) DroppedAttributesCount ¶
DroppedAttributesCount returns the value of the droppedAttributesCount.
func (*LogRecord) ObservedTimeUnixNano ¶
ObservedTimeUnixNano returns the value of the observedTimeUnixNano.
func (*LogRecord) SetAttributes ¶
SetAttributes sets the value of the attributes.
func (*LogRecord) SetDroppedAttributesCount ¶
SetDroppedAttributesCount sets the value of the droppedAttributesCount.
func (*LogRecord) SetObservedTimeUnixNano ¶
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 ¶
SetSeverityText sets the value of the severityText.
func (*LogRecord) SetTimeUnixNano ¶
SetTimeUnixNano sets the value of the timeUnixNano.
func (*LogRecord) SetTraceId ¶
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 ¶
SeverityText returns the value of the severityText.
func (*LogRecord) TimeUnixNano ¶
TimeUnixNano returns the value of the timeUnixNano.
type LogsData ¶
type LogsData struct {
// contains filtered or unexported fields
}
LogsData contains all log data
func UnmarshalLogsData ¶
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) 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 ¶
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 ¶
Attributes returns the value of the attributes.
func (*Resource) AttributesRemoveIf ¶
func (*Resource) DroppedAttributesCount ¶
DroppedAttributesCount returns the value of the droppedAttributesCount.
func (*Resource) SetAttributes ¶
SetAttributes sets the value of the attributes.
func (*Resource) SetDroppedAttributesCount ¶
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 ¶
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) LogRecords ¶
LogRecords returns the value of the logRecords.
func (*ScopeLogs) LogRecordsRemoveIf ¶
func (*ScopeLogs) Scope ¶
func (m *ScopeLogs) Scope() (r *InstrumentationScope)
Scope returns the value of the scope.
func (*ScopeLogs) SetLogRecords ¶
SetLogRecords sets the value of the logRecords.
func (*ScopeLogs) SetSchemaUrl ¶
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 )