Files
troubleshoot/pkg/collect/host_cpu.go
Evans Mungai ebeed77287 chore: Upgrade gopsutil to v3 (#927)
* Add host collector tests related to gopsutil upgrade

* Upgrade gopsutil to v3
2022-12-24 13:42:13 +13:00

57 lines
1.3 KiB
Go

package collect
import (
"bytes"
"encoding/json"
"github.com/pkg/errors"
troubleshootv1beta2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2"
"github.com/shirou/gopsutil/v3/cpu"
)
type CPUInfo struct {
LogicalCount int `json:"logicalCount"`
PhysicalCount int `json:"physicalCount"`
}
const HostCPUPath = `host-collectors/system/cpu.json`
type CollectHostCPU struct {
hostCollector *troubleshootv1beta2.CPU
BundlePath string
}
func (c *CollectHostCPU) Title() string {
return hostCollectorTitleOrDefault(c.hostCollector.HostCollectorMeta, "CPU Info")
}
func (c *CollectHostCPU) IsExcluded() (bool, error) {
return isExcluded(c.hostCollector.Exclude)
}
func (c *CollectHostCPU) Collect(progressChan chan<- interface{}) (map[string][]byte, error) {
cpuInfo := CPUInfo{}
logicalCount, err := cpu.Counts(true)
if err != nil {
return nil, errors.Wrap(err, "failed to count logical cpus")
}
cpuInfo.LogicalCount = logicalCount
physicalCount, err := cpu.Counts(false)
if err != nil {
return nil, errors.Wrap(err, "failed to count physical cpus")
}
cpuInfo.PhysicalCount = physicalCount
b, err := json.Marshal(cpuInfo)
if err != nil {
return nil, errors.Wrap(err, "failed to marshal cpu info")
}
output := NewResult()
output.SaveResult(c.BundlePath, HostCPUPath, bytes.NewBuffer(b))
return output, nil
}