Work continues on the fork https://github.com/swisspush/mod-metrics
A vert.x mod to try and expose stats over JMX using the Metrics library.
Default config:
{
address : "com.bloidonia.metrics"
}
Deploy with:
vertx.deployModule( 'com.bloidonia~mod-metrics~1.0.0', config, 1, function() {} ) ;
You should then be able to point jconsole (or jvisualvm with the jmx plugin) at the machine running this module and see stats appear as they are populated.
The mod accepts the messages below.
- if a metric with the specified name does not exist, then a metric of the related type is created.
- if you try to call an invalid method on an already existing metric (ie: call
set
on a metric already constructed withinc
) then I suspect things will blow up in (not so) interesting ways.
Gauges (see here)
NB: Only accepts Integer values
{
name : "gauge.name",
action : "set",
n : 128
}
Counters (see here)
{
name : "counter.name",
action : "inc",
n : 1 // Optional, defaults to 1
}
{
name : "counter.name",
action : "dec",
n : 1 // Optional, defaults to 1
}
Meters (see here)
{
name : "meter.name",
action : "mark"
}
Histograms (see here)
{
name : "histogram.name",
action : "update",
n : 10
}
Timers (see here)
If you start a timer, then the Context
for that timer is stored in a Map
. Not
stopping the timer will cause this Context to persist in-perpetuity.
Timers are also of questionable use as you are also going to be timing the event bus propagation time and any Vert.x internals between your sending the message and it being processed by this module. However if you take that to be a constant, you could say that they will show you something. It just arguable whether that something is trustworthy or consistent ;-)
{
name : "timer.name",
action : "start"
}
{
name : "timer.name",
action : "stop"
}
If you want to remove a metric from the system, just send the message:
{
name : "metric.name",
action : "remove"
}
{
action : "counters"
}
Example response:
{
status : "ok"
countername : {
count: 10
},
countername2 : {
count: 15
}
}
{
action : "gauges"
}
Example response:
{
status : "ok"
gaugename : {
value: 4
},
gaugename2 : {
value: 15
}
}
{
action : "histograms"
}
Example response:
{
status : "ok"
hist1 : {
count : 10,
min : 3,
max : 100,
median : 23.5,
mean : 32.4,
stddev : 2.8,
size : 23,
75th : 34.5,
95th : 24.5,
98th : 14.5,
99th : 11.5,
999th : 10.2
}
}
{
action : "meters"
}
Example response:
{
status : "ok"
meter1 : {
1m : 2.4,
5m : 3.8,
15m : 4.2,
count : 120,
mean : 3.2
}
}
{
action : "timers"
}
Example response:
{
status : "ok"
timer1 : {
1m : 2.4,
5m : 3.8,
15m : 4.2,
count : 120,
mean : 3.2,
count : 10,
min : 3,
max : 100,
median : 23.5,
mean : 32.4,
stddev : 2.8,
size : 10,
75th : 34.5,
95th : 24.5,
98th : 14.5,
99th : 11.5,
999th : 10.2
}
}