Interface ICacheDrSenderMetrics
Metrics for data center replication sender cache.
Namespace: GridGain.Core.DataCenterReplication
Assembly: GridGain.Core.dll
Syntax
public interface ICacheDrSenderMetrics
Properties
BackupQueueSize
Gets current amount of cache entries in backup queue.
Declaration
long BackupQueueSize { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 | Current amount of cache entries in backup queue. |
BatchesAcknowledged
Gets total amount of sent batches acknowledged by sender hub.
Declaration
int BatchesAcknowledged { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | Total amount of sent batches acknowledged by sender hub. |
BatchesFailed
Gets total amount of failed batches. Failure may occur because there was no available sender hubs during batch send or sender hub replied with an error.
Declaration
int BatchesFailed { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | Total amount of failed batches. |
BatchesSent
Gets total amount of batches sent to sender hubs.
Declaration
int BatchesSent { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | Total amount of batches sent to sender hubs. |
EntriesAcknowledged
Gets total amount of sent entries acknowledged by sender hub.
Declaration
long EntriesAcknowledged { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 | Total amount of sent entries acknowledged by sender hub. |
EntriesFiltered
Gets total amount of filtered cache entries. Data center replication provides ability to filter entries before being replicated to another data center. This metric returns the number of entries that didn't pass that filter.
Declaration
long EntriesFiltered { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 | Total amount of filtered cache entries. |
EntriesSent
Gets total amount of entries sent to sender hubs.
Declaration
long EntriesSent { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 | Total amount of entries sent to sender hubs. |
Status
Gets data center replication status.
Declaration
ICacheDrStatus Status { get; }
Property Value
| Type | Description |
|---|---|
| ICacheDrStatus | Data center replication status. |