Struct OrphanSummary
Assembly: Couchbase.NetClient.dll
Syntax
public struct OrphanSummary : IComparable<OrphanSummary>
Properties
|
Edit this page
View Source
ServiceType
Declaration
[JsonIgnore]
[JsonIgnore]
public string? ServiceType { readonly get; set; }
Property Value
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
|
Edit this page
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
Methods
|
Edit this page
View Source
CompareTo(OrphanSummary)
Declaration
public int CompareTo(OrphanSummary other)
Parameters
Returns
|
Edit this page
View Source
CreateKvContext(uint)
Declaration
public static OrphanSummary CreateKvContext(uint opaque)
Parameters
Type |
Name |
Description |
uint |
opaque |
|
Returns
|
Edit this page
View Source
FromActivity(Activity)
Declaration
public static OrphanSummary FromActivity(Activity activity)
Parameters
Returns
|
Edit this page
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Implements