mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-05 21:25:55 +02:00
change to ccMessage
This commit is contained in:
parent
a389a5476b
commit
6845098fec
@ -11,7 +11,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
||||||
lp "github.com/ClusterCockpit/cc-energy-manager/pkg/cc-message"
|
lp "github.com/ClusterCockpit/cc-lib/ccMessage"
|
||||||
)
|
)
|
||||||
|
|
||||||
type NUMAStatsCollectorConfig struct {
|
type NUMAStatsCollectorConfig struct {
|
||||||
@ -100,6 +100,7 @@ func (m *NUMAStatsCollector) Init(config json.RawMessage) error {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Initialized
|
||||||
cclog.ComponentDebug(m.name, "initialized", len(m.topology), "NUMA domains")
|
cclog.ComponentDebug(m.name, "initialized", len(m.topology), "NUMA domains")
|
||||||
m.init = true
|
m.init = true
|
||||||
return nil
|
return nil
|
||||||
@ -114,7 +115,8 @@ func (m *NUMAStatsCollector) Read(interval time.Duration, output chan lp.CCMessa
|
|||||||
timeDiff := now.Sub(m.lastTimestamp).Seconds()
|
timeDiff := now.Sub(m.lastTimestamp).Seconds()
|
||||||
m.lastTimestamp = now
|
m.lastTimestamp = now
|
||||||
|
|
||||||
for i := range m.topology {
|
for i := range m.topology {i
|
||||||
|
// Loop for all NUMA domains
|
||||||
t := &m.topology[i]
|
t := &m.topology[i]
|
||||||
|
|
||||||
file, err := os.Open(t.file)
|
file, err := os.Open(t.file)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user