Metrics
The Node.js 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 metricsInterval
.
The metrics will be stored in the apm-*
index and have the processor.event
property set to metric
.
- Type: Float
- Format: Percent
The percentage of CPU time in states other than Idle and IOWait, normalized 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 Resident Set Size, the amount of memory the process occupies in main memory (RAM).
- Type: Long
- Format: Counter
The number of active libuv handles, likely held open by currently running I/O operations.
- Type: Long
- Format: Counter
The number of active libuv requests, likely waiting for a response to an I/O operation.
- Type: Long
- Format: Counter
The number of CPU cycles spent executing application code.
- Type: Long
- Format: Counter
The number of CPU cycles spent executing kernel code as a result of application activity.
- Type: Float
- Format: Milliseconds
The number of milliseconds of event loop delay. Event loop delay is sampled every 10 milliseconds. Delays shorter than 10ms may not be observed, for example if a blocking operation starts and ends within the same sampling period.
- Type: Long
- Format: Bytes
The current allocated heap size in bytes.
- Type: Long
- Format: Bytes
The currently used heap size in bytes.
- Type: Long
- Format: Bytes
Memory usage of C++ objects bound to JavaScript objects managed by V8.
- Type: Long
- Format: Bytes
Memory allocated for ArrayBuffers and SharedArrayBuffers, including all Node.js Buffers. This is also included in the nodejs.memory.external.bytes
value.
- Type: Long
- Format: Milliseconds
The sum of all span self-times in milliseconds since the last report (the delta). The span.self_time.*
metrics are referred to as "breakdown metrics".
You can filter and group by these dimensions:
transaction.name
: The name of the transactiontransaction.type
: The type of the transaction, for examplerequest
span.type
: The type of the span, for exampleapp
,template
ordb
span.subtype
: The sub-type of the span, for examplemysql
(optional)
- Type: Long
- Format: Counter
You can filter and group by these dimensions:
transaction.name
: The name of the transactiontransaction.type
: The type of the transaction, for examplerequest
span.type
: The type of the span, for exampleapp
,template
ordb
span.subtype
: The sub-type of the span, for examplemysql
(optional)