switch to cc-lib. docs: consistency for list

This commit is contained in:
brinkcoder 2025-03-05 01:37:18 +01:00
parent 9ca34d217a
commit 44ff56d0fe
2 changed files with 6 additions and 6 deletions

View File

@ -6,8 +6,8 @@ import (
"syscall"
"time"
lp "github.com/ClusterCockpit/cc-lib/pkg/ccMessage"
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
lp "github.com/ClusterCockpit/cc-energy-manager/pkg/cc-message"
)
type SelfCollectorConfig struct {

View File

@ -9,10 +9,10 @@
}
```
The `self` collector reads the data from the `runtime` and `syscall` packages, so monitors the execution of the cc-metric-collector itself.
The `self` collector reads the data from the `runtime` and `syscall` packages, so it monitors the execution of the cc-metric-collector itself.
Metrics:
* If `read_mem_stats == true`:
- If `read_mem_stats == true`:
* `total_alloc`: The metric reports cumulative bytes allocated for heap objects.
* `heap_alloc`: The metric reports bytes of allocated heap objects.
* `heap_sys`: The metric reports bytes of heap memory obtained from the OS.
@ -20,11 +20,11 @@ Metrics:
* `heap_inuse`: The metric reports bytes in in-use spans.
* `heap_released`: The metric reports bytes of physical memory returned to the OS.
* `heap_objects`: The metric reports the number of allocated heap objects.
* If `read_goroutines == true`:
- If `read_goroutines == true`:
* `num_goroutines`: The metric reports the number of goroutines that currently exist.
* If `read_cgo_calls == true`:
- If `read_cgo_calls == true`:
* `num_cgo_calls`: The metric reports the number of cgo calls made by the current process.
* If `read_rusage == true`:
- If `read_rusage == true`:
* `rusage_user_time`: The metric reports the amount of time that this process has been scheduled in user mode.
* `rusage_system_time`: The metric reports the amount of time that this process has been scheduled in kernel mode.
* `rusage_vol_ctx_switch`: The metric reports the amount of voluntary context switches.