com.codahale.metrics.jvm.ThreadStatesGaugeSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-jvm Show documentation
Show all versions of metrics-jvm Show documentation
A set of classes which allow you to monitor critical aspects of your Java Virtual Machine
using Metrics.
The newest version!
package com.codahale.metrics.jvm;
import com.codahale.metrics.Gauge;
import com.codahale.metrics.Metric;
import com.codahale.metrics.MetricSet;
import java.lang.management.ManagementFactory;
import java.lang.management.ThreadInfo;
import java.lang.management.ThreadMXBean;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import static com.codahale.metrics.MetricRegistry.name;
/**
* A set of gauges for the number of threads in their various states and deadlock detection.
*/
public class ThreadStatesGaugeSet implements MetricSet {
// do not compute stack traces.
private final static int STACK_TRACE_DEPTH = 0;
private final ThreadMXBean threads;
private final ThreadDeadlockDetector deadlockDetector;
/**
* Creates a new set of gauges using the default MXBeans.
*/
public ThreadStatesGaugeSet() {
this(ManagementFactory.getThreadMXBean(), new ThreadDeadlockDetector());
}
/**
* Creates a new set of gauges using the given MXBean and detector.
*
* @param threads a thread MXBean
* @param deadlockDetector a deadlock detector
*/
public ThreadStatesGaugeSet(ThreadMXBean threads,
ThreadDeadlockDetector deadlockDetector) {
this.threads = threads;
this.deadlockDetector = deadlockDetector;
}
@Override
public Map getMetrics() {
final Map gauges = new HashMap<>();
for (final Thread.State state : Thread.State.values()) {
gauges.put(name(state.toString().toLowerCase(), "count"),
(Gauge
© 2015 - 2024 Weber Informatics LLC | Privacy Policy