package collectors import ( "encoding/json" "fmt" "io/ioutil" "path/filepath" "strconv" "strings" "time" cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger" lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric" "golang.org/x/sys/unix" ) type CPUFreqCollectorTopology struct { processor string // logical processor number (continuous, starting at 0) coreID string // socket local core ID coreID_int int64 physicalPackageID string // socket / package ID physicalPackageID_int int64 numPhysicalPackages string // number of sockets / packages numPhysicalPackages_int int64 isHT bool numNonHT string // number of non hyperthreading processors numNonHT_int int64 scalingCurFreqFile string tagSet map[string]string } // // CPUFreqCollector // a metric collector to measure the current frequency of the CPUs // as obtained from the hardware (in KHz) // Only measure on the first hyper thread // // See: https://www.kernel.org/doc/html/latest/admin-guide/pm/cpufreq.html // type CPUFreqCollector struct { metricCollector topology []CPUFreqCollectorTopology config struct { ExcludeMetrics []string `json:"exclude_metrics,omitempty"` } } func (m *CPUFreqCollector) Init(config json.RawMessage) error { // Check if already initialized if m.init { return nil } m.name = "CPUFreqCollector" m.setup() m.parallel = true if len(config) > 0 { err := json.Unmarshal(config, &m.config) if err != nil { return err } } m.meta = map[string]string{ "source": m.name, "group": "CPU", "unit": "MHz", } // Loop for all CPU directories baseDir := "/sys/devices/system/cpu" globPattern := filepath.Join(baseDir, "cpu[0-9]*") cpuDirs, err := filepath.Glob(globPattern) if err != nil { return fmt.Errorf("unable to glob files with pattern '%s': %v", globPattern, err) } if cpuDirs == nil { return fmt.Errorf("unable to find any files with pattern '%s'", globPattern) } // Initialize CPU topology m.topology = make([]CPUFreqCollectorTopology, len(cpuDirs)) for _, cpuDir := range cpuDirs { processor := strings.TrimPrefix(cpuDir, "/sys/devices/system/cpu/cpu") processor_int, err := strconv.ParseInt(processor, 10, 64) if err != nil { return fmt.Errorf("unable to convert cpuID '%s' to int64: %v", processor, err) } // Read package ID physicalPackageIDFile := filepath.Join(cpuDir, "topology", "physical_package_id") line, err := ioutil.ReadFile(physicalPackageIDFile) if err != nil { return fmt.Errorf("unable to read physical package ID from file '%s': %v", physicalPackageIDFile, err) } physicalPackageID := strings.TrimSpace(string(line)) physicalPackageID_int, err := strconv.ParseInt(physicalPackageID, 10, 64) if err != nil { return fmt.Errorf("unable to convert packageID '%s' to int64: %v", physicalPackageID, err) } // Read core ID coreIDFile := filepath.Join(cpuDir, "topology", "core_id") line, err = ioutil.ReadFile(coreIDFile) if err != nil { return fmt.Errorf("unable to read core ID from file '%s': %v", coreIDFile, err) } coreID := strings.TrimSpace(string(line)) coreID_int, err := strconv.ParseInt(coreID, 10, 64) if err != nil { return fmt.Errorf("unable to convert coreID '%s' to int64: %v", coreID, err) } // Check access to current frequency file scalingCurFreqFile := filepath.Join(cpuDir, "cpufreq", "scaling_cur_freq") err = unix.Access(scalingCurFreqFile, unix.R_OK) if err != nil { return fmt.Errorf("unable to access file '%s': %v", scalingCurFreqFile, err) } t := &m.topology[processor_int] t.processor = processor t.physicalPackageID = physicalPackageID t.physicalPackageID_int = physicalPackageID_int t.coreID = coreID t.coreID_int = coreID_int t.scalingCurFreqFile = scalingCurFreqFile } // is processor a hyperthread? coreSeenBefore := make(map[string]bool) for i := range m.topology { t := &m.topology[i] globalID := t.physicalPackageID + ":" + t.coreID t.isHT = coreSeenBefore[globalID] coreSeenBefore[globalID] = true } // number of non hyper thread cores and packages / sockets var numNonHT_int int64 = 0 var maxPhysicalPackageID int64 = 0 for i := range m.topology { t := &m.topology[i] // Update maxPackageID if t.physicalPackageID_int > maxPhysicalPackageID { maxPhysicalPackageID = t.physicalPackageID_int } if !t.isHT { numNonHT_int++ } } numPhysicalPackageID_int := maxPhysicalPackageID + 1 numPhysicalPackageID := fmt.Sprint(numPhysicalPackageID_int) numNonHT := fmt.Sprint(numNonHT_int) for i := range m.topology { t := &m.topology[i] t.numPhysicalPackages = numPhysicalPackageID t.numPhysicalPackages_int = numPhysicalPackageID_int t.numNonHT = numNonHT t.numNonHT_int = numNonHT_int t.tagSet = map[string]string{ "type": "hwthread", "type-id": t.processor, "package_id": t.physicalPackageID, } } m.init = true return nil } func (m *CPUFreqCollector) Read(interval time.Duration, output chan lp.CCMetric) { // Check if already initialized if !m.init { return } now := time.Now() for i := range m.topology { t := &m.topology[i] // skip hyperthreads if t.isHT { continue } // Read current frequency line, err := ioutil.ReadFile(t.scalingCurFreqFile) if err != nil { cclog.ComponentError( m.name, fmt.Sprintf("Read(): Failed to read file '%s': %v", t.scalingCurFreqFile, err)) continue } cpuFreq, err := strconv.ParseInt(strings.TrimSpace(string(line)), 10, 64) if err != nil { cclog.ComponentError( m.name, fmt.Sprintf("Read(): Failed to convert CPU frequency '%s' to int64: %v", line, err)) continue } if y, err := lp.New("cpufreq", t.tagSet, m.meta, map[string]interface{}{"value": cpuFreq}, now); err == nil { output <- y } } } func (m *CPUFreqCollector) Close() { m.init = false }