Example usage for org.springframework.jmx.support MetricType GAUGE

List of usage examples for org.springframework.jmx.support MetricType GAUGE

Introduction

In this page you can find the example usage for org.springframework.jmx.support MetricType GAUGE.

Prototype

MetricType GAUGE

To view the source code for org.springframework.jmx.support MetricType GAUGE.

Click Source Link

Document

The measurement values may go up or down over time.

Usage

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();