Skip to main content
Version: 2.2.6

JMX Monitoring

Riak exposes monitoring data via JMX. To enable JMX monitoring, edit the app.config associated with your Riak installation and set the enabled property of the riak_jmx section to true as shown below. The TCP port on which the JMX provider listens is also configurable in this section (the default JMX port is 41110).

{riak_jmx, [
{enabled, true},
{port, 41110}
]}

To view JMX data---assuming that you have the Sun JDK installed---launch JConsole as follows:

$ jconsole <hostname_to_monitor>:<jmx_port>

Once connected, click on the MBeans tab, expand the com.basho.riak tree view, and select Attributes. The attributes listed in the table below will be displayed.

Riak JMX has been tested with the Sun JRE 1.6.0_12 and 1.6.0_20. Some older/non-Sun JREs do not work (e.g. the default java-gcj JRE installed on Debian lenny). If you have problems with JMX or see the message below, please try upgrading to the Sun JRE:

 =INFO REPORT==== 9-Jun-2010::08:14:57 ===
JMX server monitor <pid> exited with code <non-zero>.

Exported JMX Attributes

AttributeTypeDescription
CPUNProcsintNumber of running processes
CpuAvg1int1 minute load average
CpuAvg5int5 minute load average
CpuAvg15int15 minute load average
NodeGetFsmTime95float95th percentile GET time (microseconds)
NodeGetFsmTime99float99th percentile GET time (microseconds)
NodeGetFsmTimeMaxfloatMaximum GET time (microseconds)
NodeGetFsmTimeMeanfloatMean GET time (microseconds)
NodeGetFsmTimeMedianfloatMedian GET time (microseconds)
NodeGetsintNumber of GETs in past minute
NodeGetsTotalintNumber of GETs since node start
NodeNamestringNode name
NodePutFsmTime95float95th percentile PUT time (microseconds)
NodePutFsmTime99float99th percentile PUT time (microseconds)
NodePutFsmTimeMaxfloatMaximum PUT time (microseconds)
NodePutFsmTimeMeanfloatMean PUT time (microseconds)
NodePutFsmTimeMedianfloatMedian PUT time (microseconds)
NodePutsintNumber of PUTs in past minute
NodePutsTotalintNumber of PUTs since node start
PBCActiveintNumber of active Protocol Buffers connections
PBCConnectsintNumber of Protocol Buffers connections in past minute
PBCConnectsTotalintNumber of Protocol Buffers connections since node start
RingCreationSizeintNumber of partitions in Riak ring
VnodeGetsintNumber of vnode-level GETs in past minute
VnodeGetsTotalintNumber of vnode-level GETs since node start
VnodePutsintNumber of vnode-level PUTs in past minute
InodePutsTotalintNumber of vnode-level PUTs since node start