Class GetTraceSnapshotRequest
Implements
Inherited Members
Namespace: Oci.ApmtracesService.Requests
Assembly: OCI.DotNetSDK.Apmtraces.dll
Syntax
public class GetTraceSnapshotRequest : IOciRequest
Examples
Click here to see an example of how to use GetTraceSnapshot request.
Properties
ApmDomainId
Declaration
[Required(ErrorMessage = "ApmDomainId is required.")]
[HttpConverter(TargetEnum.Query, "apmDomainId")]
public string ApmDomainId { get; set; }
Property Value
Type | Description |
---|---|
string | The APM Domain ID for the intended request. |
Remarks
Required
IsSummarized
Declaration
[HttpConverter(TargetEnum.Query, "isSummarized")]
public bool? IsSummarized { get; set; }
Property Value
Type | Description |
---|---|
bool? | If enabled, only span level details are sent. |
OpcRequestId
Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type | Description |
---|---|
string | Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. |
SnapshotTime
Declaration
[HttpConverter(TargetEnum.Query, "snapshotTime")]
public string SnapshotTime { get; set; }
Property Value
Type | Description |
---|---|
string | Epoch time of snapshot. |
ThreadId
Declaration
[HttpConverter(TargetEnum.Query, "threadId")]
public string ThreadId { get; set; }
Property Value
Type | Description |
---|---|
string | Thread ID for which snapshots need to be retrieved. This identifier of a thread is a long positive number generated when a thread is created. |
TraceKey
Declaration
[Required(ErrorMessage = "TraceKey is required.")]
[HttpConverter(TargetEnum.Path, "traceKey")]
public string TraceKey { get; set; }
Property Value
Type | Description |
---|---|
string | Unique Application Performance Monitoring trace identifier (traceId). |
Remarks
Required