Threads¶
Uses the ThreadMXBean provided by the JDK to monitor the number of active threads and threads started.
Getting Started¶
To get information about threads in Spectator, just setup registration of standard MXBeans. Note, if you are building an app at Netflix, then this should happen automatically via the normal platform initialization.
import com.netflix.spectator.jvm.Jmx;
Jmx.registerStandardMXBeans(registry);
Metrics¶
jvm.thread.threadCount¶
Gauge reporting the number of active threads.
Unit: threads
Dimensions:
id
: thread category, eitherdaemon
ornon-daemon
jvm.thread.threadsStarted¶
Counter reporting the number of threads started.
Unit: threads/second
Dimensions:
- None.