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

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

Introduction

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

Prototype

MetricType COUNTER

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

Click Source Link

Document

The measurement values will always increase.

Usage

From source file:admin.jmx.StepExecutionMetrics.java

@ManagedMetric(metricType = MetricType.COUNTER, description = "Step Execution Count")
int getExecutionCount();

From source file:admin.jmx.JobExecutionMetrics.java

@ManagedMetric(metricType = MetricType.COUNTER, description = "Job Execution Count")
int getExecutionCount();

From source file:admin.jmx.StepExecutionMetrics.java

@ManagedMetric(metricType = MetricType.COUNTER, description = "Step Execution Failure Count")
int getFailureCount();

From source file:admin.jmx.JobExecutionMetrics.java

@ManagedMetric(metricType = MetricType.COUNTER, description = "Job Execution Failure Count")
int getFailureCount();

From source file:org.cloudfoundry.identity.uaa.audit.LoggingAuditService.java

@ManagedMetric(metricType = MetricType.COUNTER, displayName = "User Not Found Count")
public int getUserNotFoundCount() {
    return userNotFoundCount.get();
}

From source file:org.cloudfoundry.identity.uaa.audit.LoggingAuditService.java

@ManagedMetric(metricType = MetricType.COUNTER, displayName = "User Successful Authentication Count")
public int getUserAuthenticationCount() {
    return userAuthenticationCount.get();
}

From source file:org.cloudfoundry.identity.uaa.audit.LoggingAuditService.java

@ManagedMetric(metricType = MetricType.COUNTER, displayName = "User Authentication Failure Count")
public int getUserAuthenticationFailureCount() {
    return userAuthenticationFailureCount.get();
}

From source file:com.aol.advertising.qiao.management.metrics.StatisticsStore.java

@ManagedMetric(metricType = MetricType.COUNTER, description = "Input event count")
public long getInputCount() {
    return stats.get(StatsEnum.EVENT_INPUT_COUNT.value()).get();
}

From source file:org.cloudfoundry.identity.uaa.audit.LoggingAuditService.java

@ManagedMetric(metricType = MetricType.COUNTER, displayName = "Principal (non-user) Authentication Failure Count")
public int getPrincipalAuthenticationFailureCount() {
    return principalAuthenticationFailureCount.get();
}

From source file:com.aol.advertising.qiao.management.metrics.StatisticsStore.java

@ManagedMetric(metricType = MetricType.COUNTER, description = "Output event count")
public long getOutputCount() {
    return stats.get(StatsEnum.EVENT_OUTPUT_COUNT.value()).get();
}