From 44ff56d0fe9f01a76da5557493935ac754a534df Mon Sep 17 00:00:00 2001 From: brinkcoder Date: Wed, 5 Mar 2025 01:37:18 +0100 Subject: [PATCH] switch to cc-lib. docs: consistency for list --- collectors/selfMetric.go | 2 +- collectors/selfMetric.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/collectors/selfMetric.go b/collectors/selfMetric.go index 6dd99db..e89a300 100644 --- a/collectors/selfMetric.go +++ b/collectors/selfMetric.go @@ -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 { diff --git a/collectors/selfMetric.md b/collectors/selfMetric.md index ab8e50b..4f96ff1 100644 --- a/collectors/selfMetric.md +++ b/collectors/selfMetric.md @@ -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.