Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Interface IEndpointDiagnostics

Namespace: Couchbase.Diagnostics
Assembly: Couchbase.NetClient.dll
Syntax
public interface IEndpointDiagnostics

Properties

View Source

EndpointState

Declaration
[JsonPropertyName("endpoint_state")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
EndpointState? EndpointState { get; }
Property Value
Type Description
EndpointState?
View Source

Id

Gets the report ID.

Declaration
[JsonPropertyName("id")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
string? Id { get; }
Property Value
Type Description
string
View Source

LastActivity

Gets the last activity for the service endpoint express as microseconds.

Declaration
[JsonPropertyName("last_activity_us")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
long? LastActivity { get; }
Property Value
Type Description
long?
View Source

Latency

Gets the latency for service endpoint expressed as microseconds.

Declaration
[JsonPropertyName("latency_us")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
long? Latency { get; }
Property Value
Type Description
long?
View Source

Local

Gets the local endpoint address including port.

Declaration
[JsonPropertyName("local")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
string? Local { get; }
Property Value
Type Description
string
View Source

Remote

Gets the remote endpoint address including port.

Declaration
[JsonPropertyName("remote")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
string? Remote { get; }
Property Value
Type Description
string
View Source

Scope

Gets the scope for the service endpoint. This could be the bucket name for KeyValue service endpoints.

Declaration
[JsonPropertyName("scope")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
string? Scope { get; }
Property Value
Type Description
string
View Source

State

Gets the service state.

Declaration
[JsonPropertyName("state")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
ServiceState? State { get; }
Property Value
Type Description
ServiceState?
View Source

Type

Gets the service type.

Declaration
[JsonIgnore]
ServiceType Type { get; }
Property Value
Type Description
ServiceType
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.