Show / Hide Table of Contents

Class SpanLogCollection

Definition of span log collection object.

Inheritance
object
SpanLogCollection
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 SpanLogCollection

Properties

EventName

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

Name of the event for which the log is created.

SpanLogs

Declaration
[JsonProperty(PropertyName = "spanLogs")]
public List<SpanLog> SpanLogs { get; set; }
Property Value
Type Description
List<SpanLog>

List of logs associated with the span at the given timestamp.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Timestamp at which the log is created.

In this article
Back to top