Show / Hide Table of Contents

Class TraceServiceSummary

Summary of the spans in a trace by service.

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

Properties

ErrorSpans

Declaration
[Required(ErrorMessage = "ErrorSpans is required.")]
[JsonProperty(PropertyName = "errorSpans")]
public long? ErrorSpans { get; set; }
Property Value
Type Description
long?

Number of spans with errors for serviceName in the trace.

Remarks

Required

SpanServiceName

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

Name associated with the service.

Remarks

Required

TotalSpans

Declaration
[Required(ErrorMessage = "TotalSpans is required.")]
[JsonProperty(PropertyName = "totalSpans")]
public long? TotalSpans { get; set; }
Property Value
Type Description
long?

Number of spans for serviceName in the trace.

Remarks

Required

In this article
Back to top