Fix some golint issues (#927)
* collector/cpu_*: rename nodeCpuSecondsDesc to nodeCPUSecondsDesc Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com> * collector/qdisc_linux.go: add NewQdiscStatCollector comment Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com> * collector/cpu_linux.go: rename core_map to coreMap Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
This commit is contained in:
parent
7073dcdcb5
commit
c9f421d0dd
|
@ -24,7 +24,7 @@ const (
|
|||
)
|
||||
|
||||
var (
|
||||
nodeCpuSecondsDesc = prometheus.NewDesc(
|
||||
nodeCPUSecondsDesc = prometheus.NewDesc(
|
||||
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "seconds_total"),
|
||||
"Seconds the cpus spent in each mode.",
|
||||
[]string{"cpu", "mode"}, nil,
|
||||
|
|
|
@ -59,7 +59,7 @@ func init() {
|
|||
// NewCPUCollector returns a new Collector exposing CPU stats.
|
||||
func NewCPUCollector() (Collector, error) {
|
||||
return &statCollector{
|
||||
cpu: nodeCpuSecondsDesc,
|
||||
cpu: nodeCPUSecondsDesc,
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@ func init() {
|
|||
// NewStatCollector returns a new Collector exposing CPU stats.
|
||||
func NewStatCollector() (Collector, error) {
|
||||
return &statCollector{
|
||||
cpu: nodeCpuSecondsDesc,
|
||||
cpu: nodeCPUSecondsDesc,
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@ func init() {
|
|||
// NewStatCollector returns a new Collector exposing CPU stats.
|
||||
func NewStatCollector() (Collector, error) {
|
||||
return &statCollector{
|
||||
cpu: typedDesc{nodeCpuSecondsDesc, prometheus.CounterValue},
|
||||
cpu: typedDesc{nodeCPUSecondsDesc, prometheus.CounterValue},
|
||||
temp: typedDesc{prometheus.NewDesc(
|
||||
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "temperature_celsius"),
|
||||
"CPU temperature",
|
||||
|
|
|
@ -49,7 +49,7 @@ func init() {
|
|||
// NewCPUCollector returns a new Collector exposing kernel/system statistics.
|
||||
func NewCPUCollector() (Collector, error) {
|
||||
return &cpuCollector{
|
||||
cpu: nodeCpuSecondsDesc,
|
||||
cpu: nodeCPUSecondsDesc,
|
||||
cpuGuest: prometheus.NewDesc(
|
||||
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "guest_seconds_total"),
|
||||
"Seconds the cpus spent in guests (VMs) for each mode.",
|
||||
|
@ -185,8 +185,8 @@ func (c *cpuCollector) updateCPUfreq(ch chan<- prometheus.Metric) error {
|
|||
strconv.FormatUint(physicalPackageID, 10))
|
||||
}
|
||||
|
||||
for physicalPackageID, core_map := range packageCoreThrottles {
|
||||
for coreID, coreThrottleCount := range core_map {
|
||||
for physicalPackageID, coreMap := range packageCoreThrottles {
|
||||
for coreID, coreThrottleCount := range coreMap {
|
||||
ch <- prometheus.MustNewConstMetric(c.cpuCoreThrottle,
|
||||
prometheus.CounterValue,
|
||||
float64(coreThrottleCount),
|
||||
|
|
|
@ -39,7 +39,7 @@ func init() {
|
|||
|
||||
func NewCpuCollector() (Collector, error) {
|
||||
return &cpuCollector{
|
||||
cpu: typedDesc{nodeCpuSecondsDesc, prometheus.CounterValue},
|
||||
cpu: typedDesc{nodeCPUSecondsDesc, prometheus.CounterValue},
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
|
|
@ -41,6 +41,7 @@ func init() {
|
|||
registerCollector("qdisc", defaultDisabled, NewQdiscStatCollector)
|
||||
}
|
||||
|
||||
// NewQdiscStatCollector returns a new Collector exposing queuing discipline statistics.
|
||||
func NewQdiscStatCollector() (Collector, error) {
|
||||
return &qdiscStatCollector{
|
||||
bytes: typedDesc{prometheus.NewDesc(
|
||||
|
|
Loading…
Reference in New Issue