List of usage examples for org.springframework.jmx.support MetricType GAUGE
MetricType GAUGE
To view the source code for org.springframework.jmx.support MetricType GAUGE.
Click Source Link
From source file:admin.jmx.JobExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Latest Duration Milliseconds") double getLatestDuration();
From source file:admin.jmx.JobExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Mean Duration Milliseconds") double getMeanDuration();
From source file:admin.jmx.JobExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Max Duration Milliseconds") double getMaxDuration();
From source file:admin.jmx.StepExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Latest Step Execution ID") long getLatestExecutionId();
From source file:admin.jmx.StepExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Latest Read Count") int getLatestReadCount();
From source file:admin.jmx.StepExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Latest Write Count") int getLatestWriteCount();
From source file:admin.jmx.StepExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Latest Filter Count") int getLatestFilterCount();
From source file:admin.jmx.StepExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Latest Skip Count") int getLatestSkipCount();
From source file:admin.jmx.StepExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Latest Commit Count") int getLatestCommitCount();
From source file:admin.jmx.StepExecutionMetrics.java
@ManagedMetric(metricType = MetricType.GAUGE, description = "Latest Rollback Count") int getLatestRollbackCount();