Commit c2b40adc authored by Simon Pasquier's avatar Simon Pasquier

instrumenting: add process_virtual_memory_max_bytes

Signed-off-by: 's avatarSimon Pasquier <spasquie@redhat.com>
parent ddc8274b
...@@ -333,15 +333,16 @@ These exports should have the prefix `process_`. If a language or runtime ...@@ -333,15 +333,16 @@ These exports should have the prefix `process_`. If a language or runtime
doesn't expose one of the variables it'd just not export it. All memory values doesn't expose one of the variables it'd just not export it. All memory values
in bytes, all times in unixtime/seconds. in bytes, all times in unixtime/seconds.
| Metric name | Help string | Unit | | Metric name | Help string | Unit |
| ------------------------------- | ------------------------------------------------------ | --------------- | | ---------------------------------- | ------------------------------------------------------ | --------------- |
| `process_cpu_seconds_total` | Total user and system CPU time spent in seconds. | seconds | | `process_cpu_seconds_total` | Total user and system CPU time spent in seconds. | seconds |
| `process_open_fds` | Number of open file descriptors. | file descriptors | | `process_open_fds` | Number of open file descriptors. | file descriptors |
| `process_max_fds` | Maximum number of open file descriptors. | file descriptors | | `process_max_fds` | Maximum number of open file descriptors. | file descriptors |
| `process_virtual_memory_bytes` | Virtual memory size in bytes. | bytes | | `process_virtual_memory_bytes` | Virtual memory size in bytes. | bytes |
| `process_resident_memory_bytes` | Resident memory size in bytes. | bytes | | `process_virtual_memory_max_bytes` | Maximum amount of virtual memory available in bytes. | bytes |
| `process_heap_bytes` | Process heap size in bytes. | bytes | | `process_resident_memory_bytes` | Resident memory size in bytes. | bytes |
| `process_start_time_seconds` | Start time of the process since unix epoch in seconds. | seconds | | `process_heap_bytes` | Process heap size in bytes. | bytes |
| `process_start_time_seconds` | Start time of the process since unix epoch in seconds. | seconds |
### Runtime metrics ### Runtime metrics
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment