public interface DataRegionMetrics
DataStorageConfiguration
.
Since there are can be several memory regions configured with DataRegionConfiguration
on an individual
Apache Ignite node, the metrics for every region will be collected and obtained separately.
There are two ways to get the metrics of an Apache Ignite node.
Ignite.dataRegionMetrics()
method. Note that
the method returns data region metrics snapshots rather than just in time memory state.
DataRegionMetrics
of a local Apache Ignite node are visible through JMX interface. Refer to
DataRegionMetricsMXBean
for more details.
Data region metrics collection is not a free operation and might affect performance of an application. This is the reason
why the metrics are turned off by default. To enable the collection you can use both
DataRegionConfiguration.setMetricsEnabled(boolean)
configuration property or
DataRegionMetricsMXBean.enableMetrics()
method of a respective JMX bean.
Modifier and Type | Method and Description |
---|---|
float |
getAllocationRate()
Gets pages allocation rate of a memory region.
|
long |
getCheckpointBufferSize()
Gets checkpoint buffer size in bytes.
|
long |
getDirtyPages()
Gets the number of dirty pages (pages which contents is different from the current persistent storage state).
|
float |
getEvictionRate()
Gets eviction rate of a given memory region.
|
float |
getLargeEntriesPagesPercentage()
Gets percentage of pages that are fully occupied by large entries that go beyond page size.
|
String |
getName()
A name of a memory region the metrics are collected for.
|
long |
getOffHeapSize()
Total offheap size in bytes.
|
long |
getOffheapUsedSize()
Total used offheap size in bytes.
|
float |
getPagesFillFactor()
Gets the percentage of the used space.
|
int |
getPageSize()
Gets memory page size.
|
long |
getPagesRead()
The number of read pages from last restart.
|
float |
getPagesReplaceAge()
Gets average age (in milliseconds) for the pages being replaced from the disk storage.
|
long |
getPagesReplaced()
The number of replaced pages from last restart .
|
float |
getPagesReplaceRate()
Gets rate (pages per second) at which pages get replaced with other pages from persistent storage.
|
long |
getPagesWritten()
The number of written pages from last restart.
|
long |
getPhysicalMemoryPages()
Gets total number of pages currently loaded to the RAM.
|
long |
getPhysicalMemorySize()
Gets total size of pages loaded to the RAM.
|
long |
getTotalAllocatedPages()
Gets a total number of allocated pages related to the data region.
|
long |
getTotalAllocatedSize()
Gets a total size of memory allocated in the data region.
|
long |
getUsedCheckpointBufferPages()
Gets used checkpoint buffer size in pages.
|
long |
getUsedCheckpointBufferSize()
Gets used checkpoint buffer size in bytes.
|
String getName()
long getTotalAllocatedPages()
long getTotalAllocatedSize()
float getAllocationRate()
float getEvictionRate()
float getLargeEntriesPagesPercentage()
float getPagesFillFactor()
long getDirtyPages()
float getPagesReplaceRate()
float getPagesReplaceAge()
long getPhysicalMemoryPages()
getTotalAllocatedPages()
.long getPhysicalMemorySize()
getTotalAllocatedSize()
.long getUsedCheckpointBufferPages()
long getUsedCheckpointBufferSize()
long getCheckpointBufferSize()
int getPageSize()
long getPagesRead()
long getPagesWritten()
long getPagesReplaced()
long getOffHeapSize()
long getOffheapUsedSize()
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.7.2 Release Date : February 6 2019