Class ClusterMetricsImpl
- java.lang.Object
-
- org.apache.ignite.internal.managers.discovery.ClusterMetricsImpl
-
- All Implemented Interfaces:
ClusterMetrics
public class ClusterMetricsImpl extends Object implements ClusterMetrics
Cluster metrics proxy.
-
-
Constructor Summary
Constructors Constructor Description ClusterMetricsImpl(GridKernalContext ctx, long nodeStartTime)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatgetAverageActiveJobs()Gets average number of active jobs concurrently executing on the node.floatgetAverageCancelledJobs()Gets average number of cancelled jobs this node ever had running concurrently.doublegetAverageCpuLoad()Gets average of CPU load values over all metrics kept in the history.doublegetAverageJobExecuteTime()Gets average time a job takes to execute on the node.doublegetAverageJobWaitTime()Gets average time jobs spend waiting in the queue to be executed.floatgetAverageRejectedJobs()Gets average number of jobs this node rejects during collision resolution operations.floatgetAverageWaitingJobs()Gets average number of waiting jobs this node had queued.floatgetBusyTimePercentage()Gets percentage of time this node is busy executing jobs vs. idling.intgetCurrentActiveJobs()Gets number of currently active jobs concurrently executing on the node.intgetCurrentCancelledJobs()Gets number of cancelled jobs that are still running.doublegetCurrentCpuLoad()Returns the CPU usage in[0, 1]range.intgetCurrentDaemonThreadCount()Returns the current number of live daemon threads.doublegetCurrentGcCpuLoad()Returns average time spent in CG since the last update.longgetCurrentIdleTime()Gets time this node spend idling since executing last job.longgetCurrentJobExecuteTime()Gets longest time a current job has been executing for.longgetCurrentJobWaitTime()Gets current time an oldest jobs has spent waiting to be executed.longgetCurrentPmeDuration()Gets execution duration for current partition map exchange in milliseconds.intgetCurrentRejectedJobs()Gets number of jobs rejected after more recent collision resolution operation.intgetCurrentThreadCount()Returns the current number of live threads including both daemon and non-daemon threads.intgetCurrentWaitingJobs()Gets number of queued jobs currently waiting to be executed.longgetHeapMemoryCommitted()Returns the amount of heap memory in bytes that is committed for the JVM to use.longgetHeapMemoryInitialized()Returns the amount of heap memory in bytes that the JVM initially requests from the operating system for memory management.longgetHeapMemoryMaximum()Returns the maximum amount of heap memory in bytes that can be used for memory management.longgetHeapMemoryTotal()Returns the total amount of heap memory in bytes.longgetHeapMemoryUsed()Returns the current heap size that is used for object allocation.floatgetIdleTimePercentage()Gets percentage of time this node is idling vs. executing jobs.longgetLastDataVersion()In-Memory Data Grid assigns incremental versions to all cache operations.longgetLastUpdateTime()Gets last update time of this node metrics.intgetMaximumActiveJobs()Gets maximum number of jobs that ever ran concurrently on this node.intgetMaximumCancelledJobs()Gets maximum number of cancelled jobs this node ever had running concurrently.longgetMaximumJobExecuteTime()Gets time it took to execute the longest job on the node.longgetMaximumJobWaitTime()Gets maximum time a job ever spent waiting in a queue to be executed.intgetMaximumRejectedJobs()Gets maximum number of jobs rejected at once during a single collision resolution operation.intgetMaximumThreadCount()Returns the maximum live thread count since the JVM started or peak was reset.intgetMaximumWaitingJobs()Gets maximum number of waiting jobs this node had.longgetNodeStartTime()Returns the start time of grid node in milliseconds.longgetNonHeapMemoryCommitted()Returns the amount of non-heap memory in bytes that is committed for the JVM to use.longgetNonHeapMemoryInitialized()Returns the amount of non-heap memory in bytes that the JVM initially requests from the operating system for memory management.longgetNonHeapMemoryMaximum()Returns the maximum amount of non-heap memory in bytes that can be used for memory management.longgetNonHeapMemoryTotal()Returns the total amount of non-heap memory in bytes that can be used for memory management.longgetNonHeapMemoryUsed()Returns the current non-heap memory size that is used by Java VM.intgetOutboundMessagesQueueSize()Gets outbound messages queue size.longgetReceivedBytesCount()Gets received bytes count.intgetReceivedMessagesCount()Gets received messages count.longgetSentBytesCount()Gets sent bytes count.intgetSentMessagesCount()Gets sent messages count.longgetStartTime()Returns the start time of the JVM in milliseconds.longgetTotalBusyTime()Gets total time this node spent executing jobs.intgetTotalCancelledJobs()Gets number of cancelled jobs since node startup.intgetTotalCpus()Returns the number of CPUs available to the Java Virtual Machine.intgetTotalExecutedJobs()Gets total number of jobs handled by the node since node startup.intgetTotalExecutedTasks()Gets total number of tasks handled by the node.longgetTotalIdleTime()Gets total time this node spent idling (not executing any jobs).longgetTotalJobsExecutionTime()Gets total time all finished jobs takes to execute on the node since node startup.intgetTotalNodes()Gets total number of nodes.intgetTotalRejectedJobs()Gets total number of jobs this node rejects during collision resolution operations since node startup.longgetTotalStartedThreadCount()Returns the total number of threads created and also started since the JVM started.longgetUpTime()Returns the uptime of the JVM in milliseconds.GridJobMetricsjobMetrics()Job metrics
-
-
-
Constructor Detail
-
ClusterMetricsImpl
public ClusterMetricsImpl(GridKernalContext ctx, long nodeStartTime)
- Parameters:
ctx- Kernel context.nodeStartTime- Node start time.
-
-
Method Detail
-
getLastUpdateTime
public long getLastUpdateTime()
Gets last update time of this node metrics.- Specified by:
getLastUpdateTimein interfaceClusterMetrics- Returns:
- Last update time.
-
getMaximumActiveJobs
public int getMaximumActiveJobs()
Gets maximum number of jobs that ever ran concurrently on this node. Note that this different fromClusterMetrics.getTotalExecutedJobs()metric and only reflects maximum number of jobs that ran at the same time.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getMaximumActiveJobsin interfaceClusterMetrics- Returns:
- Maximum number of jobs that ever ran concurrently on this node.
-
getCurrentActiveJobs
public int getCurrentActiveJobs()
Gets number of currently active jobs concurrently executing on the node.- Specified by:
getCurrentActiveJobsin interfaceClusterMetrics- Returns:
- Number of currently active jobs concurrently executing on the node.
-
getAverageActiveJobs
public float getAverageActiveJobs()
Gets average number of active jobs concurrently executing on the node.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getAverageActiveJobsin interfaceClusterMetrics- Returns:
- Average number of active jobs.
-
getMaximumWaitingJobs
public int getMaximumWaitingJobs()
Gets maximum number of waiting jobs this node had.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getMaximumWaitingJobsin interfaceClusterMetrics- Returns:
- Maximum number of waiting jobs.
-
getCurrentWaitingJobs
public int getCurrentWaitingJobs()
Gets number of queued jobs currently waiting to be executed.- Specified by:
getCurrentWaitingJobsin interfaceClusterMetrics- Returns:
- Number of queued jobs currently waiting to be executed.
-
getAverageWaitingJobs
public float getAverageWaitingJobs()
Gets average number of waiting jobs this node had queued.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getAverageWaitingJobsin interfaceClusterMetrics- Returns:
- Average number of waiting jobs.
-
getMaximumRejectedJobs
public int getMaximumRejectedJobs()
Gets maximum number of jobs rejected at once during a single collision resolution operation.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getMaximumRejectedJobsin interfaceClusterMetrics- Returns:
- Maximum number of jobs rejected at once.
-
getCurrentRejectedJobs
public int getCurrentRejectedJobs()
Gets number of jobs rejected after more recent collision resolution operation.- Specified by:
getCurrentRejectedJobsin interfaceClusterMetrics- Returns:
- Number of jobs rejected after more recent collision resolution operation.
-
getAverageRejectedJobs
public float getAverageRejectedJobs()
Gets average number of jobs this node rejects during collision resolution operations.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of grid configuration settings:
- Specified by:
getAverageRejectedJobsin interfaceClusterMetrics- Returns:
- Average number of jobs this node rejects during collision resolution operations.
-
getTotalRejectedJobs
public int getTotalRejectedJobs()
Gets total number of jobs this node rejects during collision resolution operations since node startup.Note: Unlike most of other aggregation metrics this metric is not calculated over history but over the entire node life.
- Specified by:
getTotalRejectedJobsin interfaceClusterMetrics- Returns:
- Total number of jobs this node rejects during collision resolution operations since node startup.
-
getMaximumCancelledJobs
public int getMaximumCancelledJobs()
Gets maximum number of cancelled jobs this node ever had running concurrently.- Specified by:
getMaximumCancelledJobsin interfaceClusterMetrics- Returns:
- Maximum number of cancelled jobs.
-
getCurrentCancelledJobs
public int getCurrentCancelledJobs()
Gets number of cancelled jobs that are still running. Just like regular java threads, jobs will receive cancel notification, but it's ultimately up to the job itself to gracefully exit.- Specified by:
getCurrentCancelledJobsin interfaceClusterMetrics- Returns:
- Number of cancelled jobs that are still running.
-
getAverageCancelledJobs
public float getAverageCancelledJobs()
Gets average number of cancelled jobs this node ever had running concurrently.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getAverageCancelledJobsin interfaceClusterMetrics- Returns:
- Average number of cancelled jobs.
-
getTotalCancelledJobs
public int getTotalCancelledJobs()
Gets number of cancelled jobs since node startup.Note: Unlike most of other aggregation metrics this metric is not calculated over history but over the entire node life.
- Specified by:
getTotalCancelledJobsin interfaceClusterMetrics- Returns:
- Total number of cancelled jobs since node startup.
-
getTotalExecutedJobs
public int getTotalExecutedJobs()
Gets total number of jobs handled by the node since node startup.Note: Unlike most of other aggregation metrics this metric is not calculated over history but over the entire node life.
- Specified by:
getTotalExecutedJobsin interfaceClusterMetrics- Returns:
- Total number of jobs handled by the node since node startup.
-
getTotalJobsExecutionTime
public long getTotalJobsExecutionTime()
Gets total time all finished jobs takes to execute on the node since node startup.Note: Unlike most of other aggregation metrics this metric is not calculated over history but over the entire node life.
- Specified by:
getTotalJobsExecutionTimein interfaceClusterMetrics- Returns:
- Total jobs execution time.
-
getMaximumJobWaitTime
public long getMaximumJobWaitTime()
Gets maximum time a job ever spent waiting in a queue to be executed.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getMaximumJobWaitTimein interfaceClusterMetrics- Returns:
- Maximum waiting time.
-
getCurrentJobWaitTime
public long getCurrentJobWaitTime()
Gets current time an oldest jobs has spent waiting to be executed.- Specified by:
getCurrentJobWaitTimein interfaceClusterMetrics- Returns:
- Current wait time of oldest job.
-
getAverageJobWaitTime
public double getAverageJobWaitTime()
Gets average time jobs spend waiting in the queue to be executed.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getAverageJobWaitTimein interfaceClusterMetrics- Returns:
- Average job wait time.
-
getMaximumJobExecuteTime
public long getMaximumJobExecuteTime()
Gets time it took to execute the longest job on the node.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getMaximumJobExecuteTimein interfaceClusterMetrics- Returns:
- Time it took to execute the longest job on the node.
-
getCurrentJobExecuteTime
public long getCurrentJobExecuteTime()
Gets longest time a current job has been executing for.- Specified by:
getCurrentJobExecuteTimein interfaceClusterMetrics- Returns:
- Longest time a current job has been executing for.
-
getAverageJobExecuteTime
public double getAverageJobExecuteTime()
Gets average time a job takes to execute on the node.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getAverageJobExecuteTimein interfaceClusterMetrics- Returns:
- Average job execution time.
-
getTotalExecutedTasks
public int getTotalExecutedTasks()
Gets total number of tasks handled by the node.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getTotalExecutedTasksin interfaceClusterMetrics- Returns:
- Total number of jobs handled by the node.
-
getTotalBusyTime
public long getTotalBusyTime()
Gets total time this node spent executing jobs.- Specified by:
getTotalBusyTimein interfaceClusterMetrics- Returns:
- Total time this node spent executing jobs.
-
getTotalIdleTime
public long getTotalIdleTime()
Gets total time this node spent idling (not executing any jobs).- Specified by:
getTotalIdleTimein interfaceClusterMetrics- Returns:
- Gets total time this node spent idling.
-
getCurrentIdleTime
public long getCurrentIdleTime()
Gets time this node spend idling since executing last job.- Specified by:
getCurrentIdleTimein interfaceClusterMetrics- Returns:
- Time this node spend idling since executing last job.
-
getBusyTimePercentage
public float getBusyTimePercentage()
Gets percentage of time this node is busy executing jobs vs. idling.- Specified by:
getBusyTimePercentagein interfaceClusterMetrics- Returns:
- Percentage of time this node is busy (value is less than
or equal to
1and greater than or equal to0)
-
getIdleTimePercentage
public float getIdleTimePercentage()
Gets percentage of time this node is idling vs. executing jobs.- Specified by:
getIdleTimePercentagein interfaceClusterMetrics- Returns:
- Percentage of time this node is idle (value is less than
or equal to
1and greater than or equal to0)
-
getTotalCpus
public int getTotalCpus()
Returns the number of CPUs available to the Java Virtual Machine. This method is equivalent to theRuntime.availableProcessors()method.Note that this value may change during successive invocations of the virtual machine.
- Specified by:
getTotalCpusin interfaceClusterMetrics- Returns:
- The number of processors available to the virtual machine, never smaller than one.
-
getCurrentCpuLoad
public double getCurrentCpuLoad()
Returns the CPU usage in[0, 1]range. The exact way how this number is calculated depends on SPI implementation.If the CPU usage is not available, a negative value is returned.
This method is designed to provide a hint about the system load and may be queried frequently. The load average may be unavailable on some platform where it is expensive to implement this method.
- Specified by:
getCurrentCpuLoadin interfaceClusterMetrics- Returns:
- The estimated CPU usage in
[0, 1]range. Negative value if not available.
-
getAverageCpuLoad
public double getAverageCpuLoad()
Gets average of CPU load values over all metrics kept in the history.Note: all aggregated metrics like average, minimum, maximum, total, count are calculated over all the metrics kept in history. The history size is set via either one or both of configuration settings:
- Specified by:
getAverageCpuLoadin interfaceClusterMetrics- Returns:
- Average of CPU load value in
[0, 1]range over all metrics kept in the history.
-
getCurrentGcCpuLoad
public double getCurrentGcCpuLoad()
Returns average time spent in CG since the last update.- Specified by:
getCurrentGcCpuLoadin interfaceClusterMetrics- Returns:
- Average time spent in CG since the last update.
-
getHeapMemoryInitialized
public long getHeapMemoryInitialized()
Returns the amount of heap memory in bytes that the JVM initially requests from the operating system for memory management. This method returns-1if the initial memory size is undefined.This value represents a setting of the heap memory for Java VM and is not a sum of all initial heap values for all memory pools.
Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getHeapMemoryInitializedin interfaceClusterMetrics- Returns:
- The initial size of memory in bytes;
-1if undefined.
-
getHeapMemoryUsed
public long getHeapMemoryUsed()
Returns the current heap size that is used for object allocation. The heap consists of one or more memory pools. This value is the sum ofusedheap memory values of all heap memory pools.The amount of used memory in the returned is the amount of memory occupied by both live objects and garbage objects that have not been collected, if any.
Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getHeapMemoryUsedin interfaceClusterMetrics- Returns:
- Amount of heap memory used.
-
getHeapMemoryCommitted
public long getHeapMemoryCommitted()
Returns the amount of heap memory in bytes that is committed for the JVM to use. This amount of memory is guaranteed for the JVM to use. The heap consists of one or more memory pools. This value is the sum ofcommittedheap memory values of all heap memory pools.Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getHeapMemoryCommittedin interfaceClusterMetrics- Returns:
- The amount of committed memory in bytes.
-
getHeapMemoryMaximum
public long getHeapMemoryMaximum()
Returns the maximum amount of heap memory in bytes that can be used for memory management. This method returns-1if the maximum memory size is undefined.This amount of memory is not guaranteed to be available for memory management if it is greater than the amount of committed memory. The JVM may fail to allocate memory even if the amount of used memory does not exceed this maximum size.
This value represents a setting of the heap memory for Java VM and is not a sum of all initial heap values for all memory pools.
Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getHeapMemoryMaximumin interfaceClusterMetrics- Returns:
- The maximum amount of memory in bytes;
-1if undefined.
-
getHeapMemoryTotal
public long getHeapMemoryTotal()
Returns the total amount of heap memory in bytes. This method returns-1if the total memory size is undefined.This amount of memory is not guaranteed to be available for memory management if it is greater than the amount of committed memory. The JVM may fail to allocate memory even if the amount of used memory does not exceed this maximum size.
This value represents a setting of the heap memory for Java VM and is not a sum of all initial heap values for all memory pools.
Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getHeapMemoryTotalin interfaceClusterMetrics- Returns:
- The total amount of memory in bytes;
-1if undefined.
-
getNonHeapMemoryInitialized
public long getNonHeapMemoryInitialized()
Returns the amount of non-heap memory in bytes that the JVM initially requests from the operating system for memory management. This method returns-1if the initial memory size is undefined.This value represents a setting of non-heap memory for Java VM and is not a sum of all initial heap values for all memory pools.
Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getNonHeapMemoryInitializedin interfaceClusterMetrics- Returns:
- The initial size of memory in bytes;
-1if undefined.
-
getNonHeapMemoryUsed
public long getNonHeapMemoryUsed()
Returns the current non-heap memory size that is used by Java VM. The non-heap memory consists of one or more memory pools. This value is the sum ofusednon-heap memory values of all non-heap memory pools.Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getNonHeapMemoryUsedin interfaceClusterMetrics- Returns:
- Amount of none-heap memory used.
-
getNonHeapMemoryCommitted
public long getNonHeapMemoryCommitted()
Returns the amount of non-heap memory in bytes that is committed for the JVM to use. This amount of memory is guaranteed for the JVM to use. The non-heap memory consists of one or more memory pools. This value is the sum ofcommittednon-heap memory values of all non-heap memory pools.Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getNonHeapMemoryCommittedin interfaceClusterMetrics- Returns:
- The amount of committed memory in bytes.
-
getNonHeapMemoryMaximum
public long getNonHeapMemoryMaximum()
Returns the maximum amount of non-heap memory in bytes that can be used for memory management. This method returns-1if the maximum memory size is undefined.This amount of memory is not guaranteed to be available for memory management if it is greater than the amount of committed memory. The JVM may fail to allocate memory even if the amount of used memory does not exceed this maximum size.
This value represents a setting of the non-heap memory for Java VM and is not a sum of all initial non-heap values for all memory pools.
Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getNonHeapMemoryMaximumin interfaceClusterMetrics- Returns:
- The maximum amount of memory in bytes;
-1if undefined.
-
getNonHeapMemoryTotal
public long getNonHeapMemoryTotal()
Returns the total amount of non-heap memory in bytes that can be used for memory management. This method returns-1if the total memory size is undefined.This amount of memory is not guaranteed to be available for memory management if it is greater than the amount of committed memory. The JVM may fail to allocate memory even if the amount of used memory does not exceed this maximum size.
This value represents a setting of the non-heap memory for Java VM and is not a sum of all initial non-heap values for all memory pools.
Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getNonHeapMemoryTotalin interfaceClusterMetrics- Returns:
- The total amount of memory in bytes;
-1if undefined.
-
getUpTime
public long getUpTime()
Returns the uptime of the JVM in milliseconds.- Specified by:
getUpTimein interfaceClusterMetrics- Returns:
- Uptime of the JVM in milliseconds.
-
getStartTime
public long getStartTime()
Returns the start time of the JVM in milliseconds. This method returns the approximate time when the Java virtual machine started.- Specified by:
getStartTimein interfaceClusterMetrics- Returns:
- Start time of the JVM in milliseconds.
-
getNodeStartTime
public long getNodeStartTime()
Returns the start time of grid node in milliseconds. There can be several grid nodes started in one JVM, so JVM start time will be the same for all of them, but node start time will be different.- Specified by:
getNodeStartTimein interfaceClusterMetrics- Returns:
- Start time of the grid node in milliseconds.
-
getCurrentThreadCount
public int getCurrentThreadCount()
Returns the current number of live threads including both daemon and non-daemon threads.- Specified by:
getCurrentThreadCountin interfaceClusterMetrics- Returns:
- Current number of live threads.
-
getMaximumThreadCount
public int getMaximumThreadCount()
Returns the maximum live thread count since the JVM started or peak was reset.Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getMaximumThreadCountin interfaceClusterMetrics- Returns:
- The peak live thread count.
-
getTotalStartedThreadCount
public long getTotalStartedThreadCount()
Returns the total number of threads created and also started since the JVM started.Note: this is not an aggregated metric and it's calculated from the time of the node's startup.
- Specified by:
getTotalStartedThreadCountin interfaceClusterMetrics- Returns:
- The total number of threads started.
-
getCurrentDaemonThreadCount
public int getCurrentDaemonThreadCount()
Returns the current number of live daemon threads.- Specified by:
getCurrentDaemonThreadCountin interfaceClusterMetrics- Returns:
- Current number of live daemon threads.
-
getLastDataVersion
public long getLastDataVersion()
In-Memory Data Grid assigns incremental versions to all cache operations. This method provides the latest data version on the node.- Specified by:
getLastDataVersionin interfaceClusterMetrics- Returns:
- Last data version.
-
getSentMessagesCount
public int getSentMessagesCount()
Gets sent messages count.- Specified by:
getSentMessagesCountin interfaceClusterMetrics- Returns:
- Sent messages count.
-
getSentBytesCount
public long getSentBytesCount()
Gets sent bytes count.- Specified by:
getSentBytesCountin interfaceClusterMetrics- Returns:
- Sent bytes count.
-
getReceivedMessagesCount
public int getReceivedMessagesCount()
Gets received messages count.- Specified by:
getReceivedMessagesCountin interfaceClusterMetrics- Returns:
- Received messages count.
-
getReceivedBytesCount
public long getReceivedBytesCount()
Gets received bytes count.- Specified by:
getReceivedBytesCountin interfaceClusterMetrics- Returns:
- Received bytes count.
-
getOutboundMessagesQueueSize
public int getOutboundMessagesQueueSize()
Gets outbound messages queue size.- Specified by:
getOutboundMessagesQueueSizein interfaceClusterMetrics- Returns:
- Outbound messages queue size.
-
getTotalNodes
public int getTotalNodes()
Gets total number of nodes.- Specified by:
getTotalNodesin interfaceClusterMetrics- Returns:
- Total number of nodes.
-
getCurrentPmeDuration
public long getCurrentPmeDuration()
Gets execution duration for current partition map exchange in milliseconds.- Specified by:
getCurrentPmeDurationin interfaceClusterMetrics- Returns:
- Gets execution duration for current partition map exchange in milliseconds.
0if there is no running PME.
-
jobMetrics
public GridJobMetrics jobMetrics()
Job metrics
-
-