Metrics
The Ruby agent tracks various system and application metrics. These metrics will be sent regularly to the APM Server and from there to Elasticsearch. You can adjust the interval by setting metrics_interval
.
The metrics will be stored in the apm-*
index and have the processor.event
property set to metric
.
Note: Metrics from the Ruby agent are Linux only for now.
- Type: Float
- Format: Percent
The percentage of CPU time in states other than Idle and IOWait, normalised by the number of cores.
- Type: Long
- Format: Bytes
The total memory of the system in bytes.
- Type: Long
- Format: Bytes
Free memory of the system in bytes.
- Type: Float
- Format: Percent
The percentage of CPU time spent by the process since the last event. This value is normalized by the number of CPU cores and it ranges from 0 to 100%.
- Type: Long
- Format: Bytes
The total virtual memory the process has.
- Type: Long
- Format: Bytes
The Resident Set Size, the amount of memory the process occupies in main memory (RAM).
- Type: Integer
- Format: Count
The number of Garbage Collection runs since the process started.
- Type: Integer
- Format: Count
The number of threads belonging to the current process.
- Type: Integer
- Format: Slots
Current amount of heap slots that are live.
NB: Not currently supported on JRuby.
- Type: Integer
- Format: Slots
Current amount of heap slots that are free.
NB: Not currently supported on JRuby.
- Type: Integer
- Format: Objects
Current amount of allocated objects on the heap.
NB: Not currently supported on JRuby.
- Type: Float
- Format: Seconds
The total time spent in garbage collection.
NB: You need to enable Ruby’s GC Profiler for this to get reported. You can do this at any time when your application boots by calling GC::Profiler.enable
.
The following metrics are available when using JRuby. They use the ruby java API to gather metrics via MXBean.
- Type: Long
- Format: Bytes
The amount of used heap memory in bytes.
- Type: Long
- Format: Bytes
The amount of heap memory in bytes that is committed for the Java virtual machine to use. This amount of memory is guaranteed for the Java virtual machine to use.
- Type: Long
- Format: Bytes
The amount of heap memory in bytes that is committed for the Java virtual machine to use. This amount of memory is guaranteed for the Java virtual machine to use.
- Type: Long
- Format: Bytes
The amount of used non-heap memory in bytes.
- Type: Long
- Format: Bytes
The amount of non-heap memory in bytes that is committed for the Java virtual machine to use. This amount of memory is guaranteed for the Java virtual machine to use.
- Type: Long
- Format: Bytes
The maximum amount of non-heap memory in bytes that can be used for memory management. If the maximum memory size is undefined, the value is -1.
- Type: Long
- Format: Bytes
The amount of used memory in bytes of the memory pool.
- Type: Long
- Format: Bytes
The amount of memory in bytes that is committed for the memory pool. This amount of memory is guaranteed for this specific pool.
- Type: Long
- Format: Bytes
The maximum amount of memory in bytes that can be used for the memory pool.