diff --git a/README.md b/README.md index effca34c..983a250d 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ diskstats | Exposes disk I/O statistics. | Darwin, Linux, OpenBSD edac | Exposes error detection and correction statistics. | Linux entropy | Exposes available entropy. | Linux exec | Exposes execution statistics. | Dragonfly, FreeBSD +fibrechannel | Exposes fibre channel information and statistics from `/sys/class/fc_host/`. | Linux filefd | Exposes file descriptor statistics from `/proc/sys/fs/file-nr`. | Linux filesystem | Exposes filesystem statistics, such as disk space used. | Darwin, Dragonfly, FreeBSD, Linux, OpenBSD hwmon | Expose hardware monitoring and sensor data from `/sys/class/hwmon/`. | Linux diff --git a/collector/fibrechannel_linux.go b/collector/fibrechannel_linux.go index 1db0f1e6..9c7edf68 100644 --- a/collector/fibrechannel_linux.go +++ b/collector/fibrechannel_linux.go @@ -87,7 +87,7 @@ func NewFibreChannelCollector(logger log.Logger) (Collector, error) { i.metricDescs[metricName] = prometheus.NewDesc( prometheus.BuildFQName(namespace, i.subsystem, metricName), description, - []string{"host"}, + []string{"fc_host"}, nil, ) }