2021-09-21 10:18:34 +00:00
|
|
|
// Copyright 2021 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-07-25 14:17:57 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path"
|
|
|
|
"time"
|
|
|
|
|
2021-09-21 12:44:11 +00:00
|
|
|
"github.com/go-kit/log/level"
|
2017-07-25 14:17:57 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2021-05-19 21:27:29 +00:00
|
|
|
|
2021-09-21 10:18:34 +00:00
|
|
|
"github.com/prometheus-community/ipmi_exporter/freeipmi"
|
2017-07-25 14:17:57 +00:00
|
|
|
)
|
|
|
|
|
2018-09-21 09:41:59 +00:00
|
|
|
const (
|
|
|
|
namespace = "ipmi"
|
|
|
|
targetLocal = ""
|
|
|
|
)
|
2018-08-03 14:23:35 +00:00
|
|
|
|
2021-05-19 21:27:29 +00:00
|
|
|
type collector interface {
|
|
|
|
Name() CollectorName
|
|
|
|
Cmd() string
|
|
|
|
Args() []string
|
|
|
|
Collect(output freeipmi.Result, ch chan<- prometheus.Metric, target ipmiTarget) (int, error)
|
|
|
|
}
|
2017-07-25 14:17:57 +00:00
|
|
|
|
2021-05-19 21:27:29 +00:00
|
|
|
type metaCollector struct {
|
2017-07-25 14:17:57 +00:00
|
|
|
target string
|
2018-09-21 19:50:30 +00:00
|
|
|
module string
|
2017-07-25 14:17:57 +00:00
|
|
|
config *SafeConfig
|
|
|
|
}
|
|
|
|
|
2018-09-21 19:50:30 +00:00
|
|
|
type ipmiTarget struct {
|
|
|
|
host string
|
|
|
|
config IPMIConfig
|
2018-08-03 14:23:35 +00:00
|
|
|
}
|
|
|
|
|
2017-07-25 14:17:57 +00:00
|
|
|
var (
|
|
|
|
upDesc = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(namespace, "", "up"),
|
|
|
|
"'1' if a scrape of the IPMI device was successful, '0' otherwise.",
|
2018-07-30 10:32:54 +00:00
|
|
|
[]string{"collector"},
|
2017-07-25 14:17:57 +00:00
|
|
|
nil,
|
|
|
|
)
|
|
|
|
|
|
|
|
durationDesc = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(namespace, "scrape_duration", "seconds"),
|
|
|
|
"Returns how long the scrape took to complete in seconds.",
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
// Describe implements Prometheus.Collector.
|
2021-05-19 21:27:29 +00:00
|
|
|
func (c metaCollector) Describe(ch chan<- *prometheus.Desc) {
|
|
|
|
// all metrics are described ad-hoc
|
2020-04-22 20:21:25 +00:00
|
|
|
}
|
|
|
|
|
2018-09-21 19:50:30 +00:00
|
|
|
func markCollectorUp(ch chan<- prometheus.Metric, name string, up int) {
|
2018-07-30 10:32:54 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
upDesc,
|
|
|
|
prometheus.GaugeValue,
|
2018-09-21 19:50:30 +00:00
|
|
|
float64(up),
|
|
|
|
name,
|
2017-07-25 14:17:57 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect implements Prometheus.Collector.
|
2021-05-19 21:27:29 +00:00
|
|
|
func (c metaCollector) Collect(ch chan<- prometheus.Metric) {
|
2017-07-25 14:17:57 +00:00
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
duration := time.Since(start).Seconds()
|
2022-02-22 13:55:27 +00:00
|
|
|
level.Debug(logger).Log("msg", "Scrape duration", "target", targetName(c.target), "duration", duration)
|
2017-07-25 14:17:57 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
durationDesc,
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
duration,
|
|
|
|
)
|
|
|
|
}()
|
|
|
|
|
2018-09-21 19:50:30 +00:00
|
|
|
config := c.config.ConfigForTarget(c.target, c.module)
|
|
|
|
target := ipmiTarget{
|
|
|
|
host: c.target,
|
|
|
|
config: config,
|
|
|
|
}
|
2018-08-03 14:23:35 +00:00
|
|
|
|
2021-05-19 21:27:29 +00:00
|
|
|
for _, collector := range config.GetCollectors() {
|
2018-09-21 19:50:30 +00:00
|
|
|
var up int
|
2022-02-22 13:55:27 +00:00
|
|
|
level.Debug(logger).Log("msg", "Running collector", "target", target.host, "collector", collector.Name())
|
2017-07-25 14:17:57 +00:00
|
|
|
|
2021-05-19 21:27:29 +00:00
|
|
|
fqcmd := path.Join(*executablesPath, collector.Cmd())
|
|
|
|
args := collector.Args()
|
|
|
|
cfg := config.GetFreeipmiConfig()
|
|
|
|
|
2021-09-21 12:44:11 +00:00
|
|
|
result := freeipmi.Execute(fqcmd, args, cfg, target.host, logger)
|
2018-08-03 14:23:35 +00:00
|
|
|
|
2021-05-19 21:27:29 +00:00
|
|
|
up, _ = collector.Collect(result, ch, target)
|
|
|
|
markCollectorUp(ch, string(collector.Name()), up)
|
|
|
|
}
|
2019-04-15 09:01:59 +00:00
|
|
|
}
|
|
|
|
|
2018-08-03 14:23:35 +00:00
|
|
|
func targetName(target string) string {
|
2021-05-19 21:27:29 +00:00
|
|
|
if target == targetLocal {
|
2018-08-03 14:23:35 +00:00
|
|
|
return "[local]"
|
|
|
|
}
|
|
|
|
return target
|
|
|
|
}
|