Show / Hide Table of Contents

Class ThreadSnapshot

Thread snapshot.

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

Properties

StackTrace

Declaration
[JsonProperty(PropertyName = "stackTrace")]
public List<StackTraceElement> StackTrace { get; set; }
Property Value
Type Description
List<StackTraceElement>

Stack trace.

ThreadSnapshotDetails

Declaration
[JsonProperty(PropertyName = "threadSnapshotDetails")]
public List<SnapshotDetail> ThreadSnapshotDetails { get; set; }
Property Value
Type Description
List<SnapshotDetail>

Snapshot details.

TimeStamp

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

Snapshot time.

In this article
Back to top