Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Struct OrphanSummary

Implements
IComparable<OrphanSummary>
Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
object.GetType()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: Couchbase.Core.Diagnostics.Tracing.OrphanResponseReporting
Assembly: Couchbase.NetClient.dll
Syntax
public struct OrphanSummary : IComparable<OrphanSummary>

Properties

View Source

ServiceType

Declaration
[JsonIgnore]
[JsonIgnore]
public string? ServiceType { readonly get; set; }
Property Value
Type Description
string
View Source

encode_duration_us

The duration of the encode span, if present.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ulong? encode_duration_us { readonly get; set; }
Property Value
Type Description
ulong?
View Source

last_dispatch_duration_us

The duration of the last dispatch span if present.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ulong? last_dispatch_duration_us { readonly get; set; }
Property Value
Type Description
ulong?
View Source

last_local_id

The local_id from the last dispatch span, if present.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? last_local_id { readonly get; set; }
Property Value
Type Description
string
View Source

last_local_socket

The local_address from the last dispatch span, if present. Should combine the host and port into a “host:port” format.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? last_local_socket { readonly get; set; }
Property Value
Type Description
string
View Source

last_remote_socket

The remote_address from the last dispatch span, if present. Should combine the host and port into a “host:port” format.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? last_remote_socket { readonly get; set; }
Property Value
Type Description
string
View Source

last_server_duration_us

The server duration attribute of the last dispatch span, if present.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ulong? last_server_duration_us { readonly get; set; }
Property Value
Type Description
ulong?
View Source

operation_id

The operation_id from the outer request span, if present.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? operation_id { readonly get; set; }
Property Value
Type Description
string
View Source

operation_name

The name of the outer request span.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? operation_name { readonly get; set; }
Property Value
Type Description
string
View Source

timeout_ms

The operations configured timeout value.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ulong? timeout_ms { readonly get; set; }
Property Value
Type Description
ulong?
View Source

total_dispatch_duration_us

The duration of all dispatch spans, summed up.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ulong? total_dispatch_duration_us { readonly get; set; }
Property Value
Type Description
ulong?
View Source

total_duration_us

The duration of the outer request span.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ulong? total_duration_us { readonly get; set; }
Property Value
Type Description
ulong?
View Source

total_server_duration_us

The total duration of all server duration spans, if present.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ulong? total_server_duration_us { readonly get; set; }
Property Value
Type Description
ulong?

Methods

View Source

CompareTo(OrphanSummary)

Declaration
public int CompareTo(OrphanSummary other)
Parameters
Type Name Description
OrphanSummary other
Returns
Type Description
int
View Source

CreateKvContext(uint)

Declaration
public static OrphanSummary CreateKvContext(uint opaque)
Parameters
Type Name Description
uint opaque
Returns
Type Description
OrphanSummary
View Source

FromActivity(Activity)

Declaration
public static OrphanSummary FromActivity(Activity activity)
Parameters
Type Name Description
Activity activity
Returns
Type Description
OrphanSummary
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
ValueType.ToString()

Implements

IComparable<T>
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.