Show / Hide Table of Contents

Class SpanLog

Definition of a log which is a key-value pair of log data.

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

Properties

LogKey

Declaration
[Required(ErrorMessage = "LogKey is required.")]
[JsonProperty(PropertyName = "logKey")]
public string LogKey { get; set; }
Property Value
Type Description
string

Key that specifies the log name.

Remarks

Required

LogValue

Declaration
[Required(ErrorMessage = "LogValue is required.")]
[JsonProperty(PropertyName = "logValue")]
public string LogValue { get; set; }
Property Value
Type Description
string

Value associated with the log key.

Remarks

Required

In this article
Back to top