mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-03-02 16:46:35 +00:00
Merge pull request #1095 from 6fears7/master
Add Win32_DiskDrive Collector
This commit is contained in:
208
collector/diskdrive.go
Normal file
208
collector/diskdrive.go
Normal file
@@ -0,0 +1,208 @@
|
|||||||
|
//go:build windows
|
||||||
|
// +build windows
|
||||||
|
|
||||||
|
package collector
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/StackExchange/wmi"
|
||||||
|
"github.com/prometheus-community/windows_exporter/log"
|
||||||
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
registerCollector("disk_drive", newDiskDriveInfoCollector)
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
win32DiskQuery = "SELECT DeviceID, Model, Caption, Name, Partitions, Size, Status, Availability FROM WIN32_DiskDrive"
|
||||||
|
)
|
||||||
|
|
||||||
|
// A DiskDriveInfoCollector is a Prometheus collector for a few WMI metrics in Win32_DiskDrive
|
||||||
|
type DiskDriveInfoCollector struct {
|
||||||
|
DiskInfo *prometheus.Desc
|
||||||
|
Status *prometheus.Desc
|
||||||
|
Size *prometheus.Desc
|
||||||
|
Partitions *prometheus.Desc
|
||||||
|
Availability *prometheus.Desc
|
||||||
|
}
|
||||||
|
|
||||||
|
func newDiskDriveInfoCollector() (Collector, error) {
|
||||||
|
const subsystem = "disk_drive"
|
||||||
|
|
||||||
|
return &DiskDriveInfoCollector{
|
||||||
|
DiskInfo: prometheus.NewDesc(
|
||||||
|
prometheus.BuildFQName(Namespace, subsystem, "info"),
|
||||||
|
"General drive information",
|
||||||
|
[]string{
|
||||||
|
"device_id",
|
||||||
|
"model",
|
||||||
|
"caption",
|
||||||
|
"name",
|
||||||
|
},
|
||||||
|
nil,
|
||||||
|
),
|
||||||
|
|
||||||
|
Status: prometheus.NewDesc(
|
||||||
|
prometheus.BuildFQName(Namespace, subsystem, "status"),
|
||||||
|
"Status of the drive",
|
||||||
|
[]string{
|
||||||
|
"name", "status"},
|
||||||
|
nil,
|
||||||
|
),
|
||||||
|
|
||||||
|
Size: prometheus.NewDesc(
|
||||||
|
prometheus.BuildFQName(Namespace, subsystem, "size"),
|
||||||
|
"Size of the disk drive. It is calculated by multiplying the total number of cylinders, tracks in each cylinder, sectors in each track, and bytes in each sector.",
|
||||||
|
[]string{"name"},
|
||||||
|
nil,
|
||||||
|
),
|
||||||
|
|
||||||
|
Partitions: prometheus.NewDesc(
|
||||||
|
prometheus.BuildFQName(Namespace, subsystem, "partitions"),
|
||||||
|
"Number of partitions",
|
||||||
|
[]string{"name"},
|
||||||
|
nil,
|
||||||
|
),
|
||||||
|
|
||||||
|
Availability: prometheus.NewDesc(
|
||||||
|
prometheus.BuildFQName(Namespace, subsystem, "availability"),
|
||||||
|
"Availability Status",
|
||||||
|
[]string{
|
||||||
|
"name", "availability"},
|
||||||
|
nil,
|
||||||
|
),
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type Win32_DiskDrive struct {
|
||||||
|
DeviceID string
|
||||||
|
Model string
|
||||||
|
Size uint64
|
||||||
|
Name string
|
||||||
|
Caption string
|
||||||
|
Partitions uint32
|
||||||
|
Status string
|
||||||
|
Availability uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
allDiskStatus = []string{
|
||||||
|
"OK",
|
||||||
|
"Error",
|
||||||
|
"Degraded",
|
||||||
|
"Unknown",
|
||||||
|
"Pred fail",
|
||||||
|
"Starting",
|
||||||
|
"Stopping",
|
||||||
|
"Service",
|
||||||
|
"Stressed",
|
||||||
|
"Nonrecover",
|
||||||
|
"No Contact",
|
||||||
|
"Lost Comm",
|
||||||
|
}
|
||||||
|
|
||||||
|
availMap = map[int]string{
|
||||||
|
|
||||||
|
1: "Other",
|
||||||
|
2: "Unknown",
|
||||||
|
3: "Running / Full Power",
|
||||||
|
4: "Warning",
|
||||||
|
5: "In Test",
|
||||||
|
6: "Not Applicable",
|
||||||
|
7: "Power Off",
|
||||||
|
8: "Off line",
|
||||||
|
9: "Off Duty",
|
||||||
|
10: "Degraded",
|
||||||
|
11: "Not Installed",
|
||||||
|
12: "Install Error",
|
||||||
|
13: "Power Save - Unknown",
|
||||||
|
14: "Power Save - Low Power Mode",
|
||||||
|
15: "Power Save - Standby",
|
||||||
|
16: "Power Cycle",
|
||||||
|
17: "Power Save - Warning",
|
||||||
|
18: "Paused",
|
||||||
|
19: "Not Ready",
|
||||||
|
20: "Not Configured",
|
||||||
|
21: "Quiesced",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// Collect sends the metric values for each metric to the provided prometheus Metric channel.
|
||||||
|
func (c *DiskDriveInfoCollector) Collect(ctx *ScrapeContext, ch chan<- prometheus.Metric) error {
|
||||||
|
if desc, err := c.collect(ch); err != nil {
|
||||||
|
log.Error("failed collecting disk_drive_info metrics:", desc, err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *DiskDriveInfoCollector) collect(ch chan<- prometheus.Metric) (*prometheus.Desc, error) {
|
||||||
|
var dst []Win32_DiskDrive
|
||||||
|
|
||||||
|
if err := wmi.Query(win32DiskQuery, &dst); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if len(dst) == 0 {
|
||||||
|
return nil, errors.New("WMI query returned empty result set")
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, disk := range dst {
|
||||||
|
ch <- prometheus.MustNewConstMetric(
|
||||||
|
c.DiskInfo,
|
||||||
|
prometheus.GaugeValue,
|
||||||
|
1.0,
|
||||||
|
strings.Trim(disk.DeviceID, "\\.\\"),
|
||||||
|
strings.TrimRight(disk.Model, " "),
|
||||||
|
strings.TrimRight(disk.Caption, " "),
|
||||||
|
strings.TrimRight(disk.Name, "\\.\\"),
|
||||||
|
)
|
||||||
|
|
||||||
|
for _, status := range allDiskStatus {
|
||||||
|
isCurrentState := 0.0
|
||||||
|
if status == disk.Status {
|
||||||
|
isCurrentState = 1.0
|
||||||
|
}
|
||||||
|
|
||||||
|
ch <- prometheus.MustNewConstMetric(
|
||||||
|
c.Status,
|
||||||
|
prometheus.GaugeValue,
|
||||||
|
isCurrentState,
|
||||||
|
strings.Trim(disk.Name, "\\.\\"),
|
||||||
|
status,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
ch <- prometheus.MustNewConstMetric(
|
||||||
|
c.Size,
|
||||||
|
prometheus.GaugeValue,
|
||||||
|
float64(disk.Size),
|
||||||
|
strings.Trim(disk.Name, "\\.\\"),
|
||||||
|
)
|
||||||
|
|
||||||
|
ch <- prometheus.MustNewConstMetric(
|
||||||
|
c.Partitions,
|
||||||
|
prometheus.GaugeValue,
|
||||||
|
float64(disk.Partitions),
|
||||||
|
strings.Trim(disk.Name, "\\.\\"),
|
||||||
|
)
|
||||||
|
|
||||||
|
for availNum, val := range availMap {
|
||||||
|
isCurrentState := 0.0
|
||||||
|
if availNum == int(disk.Availability) {
|
||||||
|
isCurrentState = 1.0
|
||||||
|
}
|
||||||
|
ch <- prometheus.MustNewConstMetric(
|
||||||
|
c.Availability,
|
||||||
|
prometheus.GaugeValue,
|
||||||
|
isCurrentState,
|
||||||
|
strings.Trim(disk.Name, "\\.\\"),
|
||||||
|
val,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
9
collector/diskdrive_test.go
Normal file
9
collector/diskdrive_test.go
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
package collector
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func BenchmarkDiskDriveCollector(b *testing.B) {
|
||||||
|
benchmarkCollector(b, "disk_drive", newDiskDriveInfoCollector)
|
||||||
|
}
|
||||||
@@ -6,6 +6,7 @@ This directory contains documentation of the collectors in the windows_exporter,
|
|||||||
- [`adfs`](collector.adfs.md)
|
- [`adfs`](collector.adfs.md)
|
||||||
- [`cpu`](collector.cpu.md)
|
- [`cpu`](collector.cpu.md)
|
||||||
- [`cs`](collector.cs.md)
|
- [`cs`](collector.cs.md)
|
||||||
|
- [`diskdrive`](collector.diskdrive.md)]
|
||||||
- [`dfsr`](collector.dfsr.md)
|
- [`dfsr`](collector.dfsr.md)
|
||||||
- [`dhcp`](collector.dhcp.md)
|
- [`dhcp`](collector.dhcp.md)
|
||||||
- [`dns`](collector.dns.md)
|
- [`dns`](collector.dns.md)
|
||||||
|
|||||||
41
docs/collector.diskdrive.md
Normal file
41
docs/collector.diskdrive.md
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
# diskdrive collector
|
||||||
|
|
||||||
|
The diskdrive collector exposes metrics about physical disks
|
||||||
|
|
||||||
|
| | |
|
||||||
|
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||||
|
| Metric name prefix | `diskdrive` |
|
||||||
|
| Classes | [`Win32_PerfRawData_DNS_DNS`] (https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-diskdrive) |
|
||||||
|
| Enabled by default? | No |
|
||||||
|
|
||||||
|
## Flags
|
||||||
|
|
||||||
|
None
|
||||||
|
|
||||||
|
## Metrics
|
||||||
|
|
||||||
|
| Name | Description | Type | Labels |
|
||||||
|
| ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ------ |
|
||||||
|
| `disk_drive_info` | General identifiable information about the disk drive | gauge | None |
|
||||||
|
| `disk_drive_availability` | The disk drive's current availability | counter | None |
|
||||||
|
| `disk_drive_partitions` | Number of partitions on the drive | gauge | None |
|
||||||
|
| `disk_drive_size` | Size of the disk drive. It is calculated by multiplying the total number of cylinders, tracks in each cylinder, sectors in each track, and bytes in each sector. | gauge | None |
|
||||||
|
| `disk_drive_status` | Operational status of the drive | counter | None |
|
||||||
|
|
||||||
|
## Alerting examples
|
||||||
|
**prometheus.rules**
|
||||||
|
```yaml
|
||||||
|
groups:
|
||||||
|
- name: Windows Disk Alerts
|
||||||
|
rules:
|
||||||
|
|
||||||
|
# Sends an alert when disk space usage is above 95%
|
||||||
|
- alert: Drive_Status
|
||||||
|
expr: windows_disk_drive_status{status="OK"} != 1
|
||||||
|
for: 10m
|
||||||
|
labels:
|
||||||
|
severity: high
|
||||||
|
annotations:
|
||||||
|
summary: "Instance: {{ $labels.instance }} has drive status: {{ $labels.status }} on disk {{ $labels.name }}"
|
||||||
|
description: "Drive Status Unhealthy"
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user