public class LocalMapStatsImpl extends Object implements LocalMapStats
LocalMapStats
STAT_NOT_AVAILABLE
Constructor and Description |
---|
LocalMapStatsImpl() |
Modifier and Type | Method and Description |
---|---|
void |
fromJson(JsonObject json) |
int |
getBackupCount()
Returns the number of backups per entry.
|
long |
getBackupEntryCount()
Returns the number of backup entries hold by this member.
|
long |
getBackupEntryMemoryCost()
Returns memory cost (number of bytes) of backup entries in this member.
|
long |
getCreationTime()
Returns the creation time of this map on this member.
|
long |
getDirtyEntryCount()
Returns the number of entries that the member owns and are dirty (updated but not persisted yet).
|
long |
getEventOperationCount()
Returns the number of Events Received
|
long |
getGetOperationCount()
Returns the number of get operations
|
long |
getHeapCost()
Cost of map & Near Cache & backup & Merkle trees in bytes
|
long |
getHits()
Returns the number of hits (reads) of locally owned entries, including those
which are no longer in the map (for example, may have been evicted).
|
long |
getIndexedQueryCount()
Returns the total number of indexed queries performed on the map.
|
Map<String,LocalIndexStats> |
getIndexStats()
Returns the per-index statistics map keyed by the index name.
|
long |
getLastAccessTime()
Returns the last access (read) time of the locally owned entries.
|
long |
getLastUpdateTime()
Returns the last update time of the locally owned entries.
|
long |
getLockedEntryCount()
Returns the number of currently locked locally owned keys.
|
long |
getMaxGetLatency()
Returns the maximum latency of get operations.
|
long |
getMaxPutLatency()
Returns the maximum latency of put operations.
|
long |
getMaxRemoveLatency()
Returns the maximum latency of remove operations.
|
long |
getMerkleTreesCost()
Returns the heap cost of the Merkle trees
|
NearCacheStats |
getNearCacheStats()
Returns statistics related to the Near Cache.
|
long |
getOtherOperationCount()
Returns the total number of Other Operations
|
long |
getOwnedEntryCount()
Returns the number of entries owned by this member.
|
long |
getOwnedEntryMemoryCost()
Returns memory cost (number of bytes) of owned entries in this member.
|
long |
getPutOperationCount()
Returns the number of put operations
|
long |
getQueryCount()
Returns the total number of queries performed on the map.
|
long |
getRemoveOperationCount()
Returns the number of Remove operations
|
long |
getTotalGetLatency()
Returns the total latency of get operations.
|
long |
getTotalPutLatency()
Returns the total latency of put operations.
|
long |
getTotalRemoveLatency()
Returns the total latency of remove operations.
|
void |
incrementGetLatencyNanos(long latencyNanos) |
void |
incrementGetLatencyNanos(long delta,
long latencyNanos) |
void |
incrementOtherOperations() |
void |
incrementPutLatencyNanos(long latencyNanos) |
void |
incrementPutLatencyNanos(long delta,
long latencyNanos) |
void |
incrementReceivedEvents() |
void |
incrementRemoveLatencyNanos(long latencyNanos) |
void |
setBackupCount(int backupCount) |
void |
setBackupEntryCount(long backupEntryCount) |
void |
setBackupEntryMemoryCost(long backupEntryMemoryCost) |
void |
setDirtyEntryCount(long dirtyEntryCount) |
void |
setHeapCost(long heapCost) |
void |
setHits(long hits) |
void |
setIndexedQueryCount(long indexedQueryCount)
Sets the indexed query count of this stats to the given indexed query
count value.
|
void |
setIndexStats(Map<String,LocalIndexStatsImpl> indexStats)
Sets the per-index stats of this map stats to the given per-index stats.
|
void |
setLastAccessTime(long lastAccessTime) |
void |
setLastUpdateTime(long lastUpdateTime) |
void |
setLockedEntryCount(long lockedEntryCount) |
void |
setMerkleTreesCost(long merkleTreeCost) |
void |
setNearCacheStats(NearCacheStats nearCacheStats) |
void |
setOwnedEntryCount(long ownedEntryCount) |
void |
setOwnedEntryMemoryCost(long ownedEntryMemoryCost) |
void |
setQueryCount(long queryCount)
Sets the query count of this stats to the given query count value.
|
JsonObject |
toJson() |
String |
toString() |
long |
total()
Returns the total number of total operations
|
void |
updateIndexStats(Map<String,OnDemandIndexStats> freshIndexStats) |
public long getOwnedEntryCount()
LocalMapStats
getOwnedEntryCount
in interface LocalMapStats
public void setOwnedEntryCount(long ownedEntryCount)
public long getBackupEntryCount()
LocalMapStats
getBackupEntryCount
in interface LocalMapStats
public void setBackupEntryCount(long backupEntryCount)
public int getBackupCount()
LocalMapStats
getBackupCount
in interface LocalMapStats
public void setBackupCount(int backupCount)
public long getOwnedEntryMemoryCost()
LocalMapStats
getOwnedEntryMemoryCost
in interface LocalMapStats
public void setOwnedEntryMemoryCost(long ownedEntryMemoryCost)
public long getBackupEntryMemoryCost()
LocalMapStats
getBackupEntryMemoryCost
in interface LocalMapStats
public void setBackupEntryMemoryCost(long backupEntryMemoryCost)
public long getCreationTime()
LocalMapStats
getCreationTime
in interface LocalInstanceStats
getCreationTime
in interface LocalMapStats
public long getLastAccessTime()
LocalMapStats
getLastAccessTime
in interface LocalMapStats
public void setLastAccessTime(long lastAccessTime)
public long getLastUpdateTime()
LocalMapStats
getLastUpdateTime
in interface LocalMapStats
public void setLastUpdateTime(long lastUpdateTime)
public long getHits()
LocalMapStats
The number of hits may be inaccurate after a partition is migrated to a new owner member.
getHits
in interface LocalMapStats
public void setHits(long hits)
public long getLockedEntryCount()
LocalMapStats
getLockedEntryCount
in interface LocalMapStats
public void setLockedEntryCount(long lockedEntryCount)
public long getDirtyEntryCount()
LocalMapStats
getDirtyEntryCount
in interface LocalMapStats
public void setDirtyEntryCount(long dirtyEntryCount)
public long getPutOperationCount()
LocalMapStats
getPutOperationCount
in interface LocalMapStats
public long getGetOperationCount()
LocalMapStats
getGetOperationCount
in interface LocalMapStats
public long getRemoveOperationCount()
LocalMapStats
getRemoveOperationCount
in interface LocalMapStats
public long getTotalPutLatency()
LocalMapStats
getTotalPutLatency
in interface LocalMapStats
public long getTotalGetLatency()
LocalMapStats
getTotalGetLatency
in interface LocalMapStats
public long getTotalRemoveLatency()
LocalMapStats
getTotalRemoveLatency
in interface LocalMapStats
public long getMaxPutLatency()
LocalMapStats
getMaxPutLatency
in interface LocalMapStats
public long getMaxGetLatency()
LocalMapStats
getMaxGetLatency
in interface LocalMapStats
public long getMaxRemoveLatency()
LocalMapStats
getMaxRemoveLatency
in interface LocalMapStats
public long getEventOperationCount()
LocalMapStats
getEventOperationCount
in interface LocalMapStats
public long getOtherOperationCount()
LocalMapStats
getOtherOperationCount
in interface LocalMapStats
public long total()
LocalMapStats
total
in interface LocalMapStats
public long getHeapCost()
LocalMapStats
When InMemoryFormat.OBJECT
is used, the heapcost is zero.
getHeapCost
in interface LocalMapStats
public void setHeapCost(long heapCost)
public long getMerkleTreesCost()
LocalMapStats
getMerkleTreesCost
in interface LocalMapStats
public void setMerkleTreesCost(long merkleTreeCost)
public NearCacheStats getNearCacheStats()
LocalMapStats
getNearCacheStats
in interface LocalMapStats
public void setNearCacheStats(NearCacheStats nearCacheStats)
public long getQueryCount()
LocalMapStats
The returned value includes queries processed with and without indexes.
getQueryCount
in interface LocalMapStats
LocalMapStats.getIndexedQueryCount()
public void setQueryCount(long queryCount)
queryCount
- the query count value to set.public long getIndexedQueryCount()
LocalMapStats
The returned value includes only queries processed using indexes. If
there are no indexes associated with the map, the returned value is
0
.
getIndexedQueryCount
in interface LocalMapStats
LocalMapStats.getQueryCount()
public void setIndexedQueryCount(long indexedQueryCount)
indexedQueryCount
- the indexed query count value to set.public Map<String,LocalIndexStats> getIndexStats()
LocalMapStats
getIndexStats
in interface LocalMapStats
public void setIndexStats(Map<String,LocalIndexStatsImpl> indexStats)
indexStats
- the per-index stats to set.public void incrementPutLatencyNanos(long latencyNanos)
public void incrementPutLatencyNanos(long delta, long latencyNanos)
public void incrementGetLatencyNanos(long latencyNanos)
public void incrementGetLatencyNanos(long delta, long latencyNanos)
public void incrementRemoveLatencyNanos(long latencyNanos)
public void incrementOtherOperations()
public void incrementReceivedEvents()
public void updateIndexStats(Map<String,OnDemandIndexStats> freshIndexStats)
public JsonObject toJson()
toJson
in interface JsonSerializable
public void fromJson(JsonObject json)
fromJson
in interface JsonSerializable
Copyright © 2018 Hazelcast, Inc.. All Rights Reserved.