2016-12-06 11:22:26 -08:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2016-12-08 07:06:53 -08:00
|
|
|
// +build linux
|
2016-02-25 04:55:02 -08:00
|
|
|
// +build !nozfs
|
|
|
|
|
2016-12-08 07:06:53 -08:00
|
|
|
package collector
|
|
|
|
|
2016-02-25 04:55:02 -08:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"strings"
|
|
|
|
|
2019-12-31 08:19:37 -08:00
|
|
|
"github.com/go-kit/kit/log"
|
|
|
|
"github.com/go-kit/kit/log/level"
|
2016-02-25 04:55:02 -08:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
2017-02-28 08:44:53 -08:00
|
|
|
var errZFSNotAvailable = errors.New("ZFS / ZFS statistics are not available")
|
2016-02-25 04:55:02 -08:00
|
|
|
|
|
|
|
type zfsSysctl string
|
|
|
|
|
|
|
|
func init() {
|
2017-09-28 06:06:26 -07:00
|
|
|
registerCollector("zfs", defaultEnabled, NewZFSCollector)
|
2016-02-25 04:55:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
type zfsCollector struct {
|
2017-01-25 19:47:48 -08:00
|
|
|
linuxProcpathBase string
|
2017-02-01 15:32:26 -08:00
|
|
|
linuxZpoolIoPath string
|
2017-01-25 19:47:48 -08:00
|
|
|
linuxPathMap map[string]string
|
2019-12-31 08:19:37 -08:00
|
|
|
logger log.Logger
|
2016-02-25 04:55:02 -08:00
|
|
|
}
|
|
|
|
|
2017-02-28 08:44:53 -08:00
|
|
|
// NewZFSCollector returns a new Collector exposing ZFS statistics.
|
2019-12-31 08:19:37 -08:00
|
|
|
func NewZFSCollector(logger log.Logger) (Collector, error) {
|
2017-02-28 12:36:35 -08:00
|
|
|
return &zfsCollector{
|
|
|
|
linuxProcpathBase: "spl/kstat/zfs",
|
|
|
|
linuxZpoolIoPath: "/*/io",
|
|
|
|
linuxPathMap: map[string]string{
|
2018-02-16 06:46:31 -08:00
|
|
|
"zfs_abd": "abdstats",
|
|
|
|
"zfs_arc": "arcstats",
|
|
|
|
"zfs_dbuf": "dbuf_stats",
|
|
|
|
"zfs_dmu_tx": "dmu_tx",
|
|
|
|
"zfs_dnode": "dnodestats",
|
|
|
|
"zfs_fm": "fm",
|
|
|
|
"zfs_vdev_cache": "vdev_cache_stats", // vdev_cache is deprecated
|
|
|
|
"zfs_vdev_mirror": "vdev_mirror_stats",
|
|
|
|
"zfs_xuio": "xuio_stats", // no known consumers of the XUIO interface on Linux exist
|
|
|
|
"zfs_zfetch": "zfetchstats",
|
|
|
|
"zfs_zil": "zil",
|
2017-02-28 12:36:35 -08:00
|
|
|
},
|
2019-12-31 08:19:37 -08:00
|
|
|
logger: logger,
|
2017-02-28 12:36:35 -08:00
|
|
|
}, nil
|
2016-02-25 04:55:02 -08:00
|
|
|
}
|
|
|
|
|
2017-02-28 08:44:53 -08:00
|
|
|
func (c *zfsCollector) Update(ch chan<- prometheus.Metric) error {
|
2017-01-25 19:47:48 -08:00
|
|
|
for subsystem := range c.linuxPathMap {
|
2017-02-28 08:44:53 -08:00
|
|
|
if err := c.updateZfsStats(subsystem, ch); err != nil {
|
|
|
|
if err == errZFSNotAvailable {
|
2019-12-31 08:19:37 -08:00
|
|
|
level.Debug(c.logger).Log("err", err)
|
2018-02-16 06:46:31 -08:00
|
|
|
// ZFS /proc files are added as new features to ZFS arrive, it is ok to continue
|
|
|
|
continue
|
2017-02-28 08:44:53 -08:00
|
|
|
}
|
2017-01-25 19:47:48 -08:00
|
|
|
return err
|
|
|
|
}
|
2017-01-23 10:56:43 -08:00
|
|
|
}
|
2017-01-23 10:45:36 -08:00
|
|
|
|
2016-02-25 04:55:02 -08:00
|
|
|
// Pool stats
|
|
|
|
return c.updatePoolStats(ch)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s zfsSysctl) metricName() string {
|
|
|
|
parts := strings.Split(string(s), ".")
|
2017-01-31 12:11:56 -08:00
|
|
|
return strings.Replace(parts[len(parts)-1], "-", "_", -1)
|
2016-02-25 04:55:02 -08:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:36:55 -08:00
|
|
|
func (c *zfsCollector) constSysctlMetric(subsystem string, sysctl zfsSysctl, value uint64) prometheus.Metric {
|
2016-02-25 04:55:02 -08:00
|
|
|
metricName := sysctl.metricName()
|
|
|
|
|
|
|
|
return prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2017-09-28 06:06:26 -07:00
|
|
|
prometheus.BuildFQName(namespace, subsystem, metricName),
|
2016-02-25 04:55:02 -08:00
|
|
|
string(sysctl),
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
prometheus.UntypedValue,
|
|
|
|
float64(value),
|
|
|
|
)
|
|
|
|
}
|
2017-02-01 15:32:26 -08:00
|
|
|
|
2018-01-06 03:36:55 -08:00
|
|
|
func (c *zfsCollector) constPoolMetric(poolName string, sysctl zfsSysctl, value uint64) prometheus.Metric {
|
2017-02-01 15:32:26 -08:00
|
|
|
metricName := sysctl.metricName()
|
|
|
|
|
|
|
|
return prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
2017-09-28 06:06:26 -07:00
|
|
|
prometheus.BuildFQName(namespace, "zfs_zpool", metricName),
|
2017-02-01 15:32:26 -08:00
|
|
|
string(sysctl),
|
|
|
|
[]string{"zpool"},
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
prometheus.UntypedValue,
|
|
|
|
float64(value),
|
|
|
|
poolName,
|
|
|
|
)
|
|
|
|
}
|