Plugin: go.d.plugin Module: powervault
This collector monitors Dell PowerVault ME4 and ME5 storage arrays via the Management Controller Interface (MCI) REST API.
It collects metrics for the following components:
The collector uses the MCI REST API (/api/show/* and /api/show/*-statistics endpoints) to fetch data.
Authentication uses a hash-based login (SHA-256 by default, MD5 for legacy firmware) — the collector
hashes username_password, calls /api/login/<hash>, and uses the returned session key for subsequent requests.
Discovery runs on startup and then every 10 collection cycles to refresh the hardware inventory. Performance statistics (controllers, volumes, ports, PHY) are collected via concurrent API calls each cycle. Hardware health, drive metrics, sensor readings, pool capacity, and system health are computed from the cached discovery data without additional API calls.
This collector is supported on all platforms.
This collector supports collecting metrics from multiple instances of this integration, including remote instances.
A user account on the PowerVault management controller is required. Any role with API read access
is sufficient (e.g., the built-in monitor role). The account does not need write permissions.
The collector does not auto-detect PowerVault arrays. You must configure the management IP address, username, and password explicitly.
The collector makes approximately 14 API calls per collection cycle (10 for discovery when needed, 4 for statistics). With the default 30-second collection interval, this is well within the MCI API’s capabilities. Each API call returns all entities of that type in a single response.
The MCI API is lightweight and read-only. The collector’s impact on the storage array is negligible. Session keys are reused across collection cycles and automatically refreshed on expiry (HTTP 401).
You can configure the powervault collector in two ways:
| Method | Best for | How to |
|---|---|---|
| UI | Fast setup without editing files | Go to Nodes → Configure this node → Collectors → Jobs, search for powervault, then click + to add a job. |
| File | If you prefer configuring via file, or need to automate deployments (e.g., with Ansible) | Edit go.d/powervault.conf and add a job. |
:::important
UI configuration requires paid Netdata Cloud plan.
:::
monitor role is sufficient.PowerVault controllers typically use self-signed TLS certificates. You will likely need to set
tls_skip_verify: yes in the configuration, or provide the controller’s CA certificate via tls_ca.
The following options can be defined globally: update_every, autodetection_retry.
| Group | Option | Description | Default | Required |
|---|---|---|---|---|
| Collection | update_every | Data collection interval (seconds). | 30 | no |
| autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no | |
| Target | url | PowerVault management controller URL. | https://127.0.0.1 | yes |
| timeout | HTTP request timeout (seconds). | 30 | no | |
| HTTP Auth | username | Username for MCI API authentication. | yes | |
| password | Password for MCI API authentication. | yes | ||
| auth_digest | Hash algorithm for authentication. Use sha256 (default) or md5 (legacy ME4 firmware < G280). | sha256 | no | |
| Filtering | volume_selector | Space-separated simple patterns to filter which volumes to monitor. Use * for wildcards, ! prefix to exclude. An empty value monitors all volumes. | no | |
| TLS | tls_skip_verify | Skip TLS certificate and hostname verification (insecure, but often needed for self-signed certs on storage controllers). | no | no |
| tls_ca | Path to CA bundle used to validate the server certificate. | no | ||
| tls_cert | Path to client TLS certificate (for mTLS). | no | ||
| tls_key | Path to client TLS private key (for mTLS). | no | ||
| Proxy | proxy_url | HTTP proxy URL. | no | |
| proxy_username | Username for proxy Basic HTTP authentication. | no | ||
| proxy_password | Password for proxy Basic HTTP authentication. | no | ||
| Request | headers | Additional HTTP headers (one per line as key: value). | no | |
| not_follow_redirects | Do not follow HTTP redirects. | no | no | |
| Virtual Node | vnode | Associates this data collection job with a Virtual Node. | no |
Configure the powervault collector from the Netdata web interface:
The configuration file name for this integration is go.d/powervault.conf.
The file format is YAML. Generally, the structure is:
update_every: 1
autodetection_retry: 0
jobs:
- name: some_name1
- name: some_name2
You can edit the configuration file using the edit-config script from the
Netdata config directory.
cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
sudo ./edit-config go.d/powervault.conf
A minimal configuration connecting to a PowerVault controller with a self-signed certificate.
jobs:
- name: pv-lab
url: https://10.0.0.1
username: monitor
password: monitor123
tls_skip_verify: yes
Monitor only production volumes, excluding temporary and test volumes.
jobs:
- name: pv-prod
url: https://10.0.0.1
username: monitor
password: monitor123
tls_skip_verify: yes
volume_selector: "prod-* !*-temp !*-test"
Connecting to an older ME4 controller that requires MD5 authentication (firmware before G280).
jobs:
- name: pv-legacy
url: https://10.0.0.2
username: manage
password: manage123
auth_digest: md5
tls_skip_verify: yes
Note: When you define multiple jobs, their names must be unique.
Monitoring multiple PowerVault arrays.
jobs:
- name: pv-site-a
url: https://10.0.0.1
username: monitor
password: monitor123
tls_skip_verify: yes
- name: pv-site-b
url: https://10.0.0.2
username: monitor
password: monitor456
tls_skip_verify: yes
Metrics grouped by scope.
The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.
These metrics refer to the entire monitored PowerVault array.
This scope has no labels.
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powervault.system_health | health | status |
| powervault.hw_health_controller | ok, degraded, fault, unknown | controllers |
| powervault.hw_health_drive | ok, degraded, fault, unknown | drives |
| powervault.hw_health_fan | ok, degraded, fault, unknown | fans |
| powervault.hw_health_psu | ok, degraded, fault, unknown | PSUs |
| powervault.hw_health_fru | ok, degraded, fault, unknown | FRUs |
| powervault.hw_health_port | ok, degraded, fault, unknown | ports |
These metrics refer to individual RAID controllers (typically controller_a and controller_b in a dual-controller configuration).
Labels:
| Label | Description |
|---|---|
| controller | Controller durable ID (e.g., controller_a, controller_b). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powervault.controller_iops | iops | ops/s |
| powervault.controller_throughput | throughput | bytes/s |
| powervault.controller_cpu_load | cpu_load | percentage |
| powervault.controller_write_cache_used | write_cache_used | percentage |
| powervault.controller_forwarded_cmds | forwarded | commands |
| powervault.controller_io | read, written | bytes |
| powervault.controller_ops | read, write | ops |
| powervault.controller_cache_hits | read_hits, read_misses, write_hits, write_misses | hits |
These metrics refer to individual storage volumes. Volumes can be filtered using the volume_selector configuration option.
Labels:
| Label | Description |
|---|---|
| volume | Volume name (e.g., prod-db-01). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powervault.volume_iops | iops | ops/s |
| powervault.volume_throughput | throughput | bytes/s |
| powervault.volume_write_cache_percent | write_cache | percentage |
| powervault.volume_io | read, written | bytes |
| powervault.volume_ops | read, write | ops |
| powervault.volume_cache_hits | read_hits, read_misses, write_hits, write_misses | hits |
| powervault.volume_tier_distribution | ssd, sas, sata | percentage |
These metrics refer to individual host ports (SAS/FC ports used for host connectivity).
Labels:
| Label | Description |
|---|---|
| port | Port durable ID (e.g., hostport_A0). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powervault.port_io | read, written | bytes |
| powervault.port_ops | read, write | ops |
| powervault.phy_errors | disparity, lost_dwords, invalid_dwords | errors |
These metrics refer to individual storage pools (also known as disk groups or virtual pools).
Labels:
| Label | Description |
|---|---|
| pool | Pool name (e.g., Pool-A). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powervault.pool_capacity | total, available | bytes |
These metrics refer to individual physical drives (HDDs and SSDs).
Labels:
| Label | Description |
|---|---|
| drive | Drive location (e.g., 0.0 for enclosure 0, slot 0). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powervault.drive_temperature | temperature | Celsius |
| powervault.drive_power_on_hours | power_on_hours | hours |
| powervault.drive_ssd_life_left | life_left | percentage |
These metrics refer to individual hardware sensors. Sensor types include temperature, voltage, current, and charge capacity (supercapacitor/battery backup units).
Labels:
| Label | Description |
|---|---|
| sensor | Sensor durable ID (e.g., sensor_temp_ctrl_A.1). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powervault.sensor_temperature | temperature | Celsius |
| powervault.sensor_voltage | voltage | millivolts |
| powervault.sensor_current | current | milliamps |
| powervault.sensor_charge_capacity | charge_capacity | percentage |
There are no alerts configured by default for this integration.
Important: Debug mode is not supported for data collection jobs created via the UI using the Dyncfg feature.
To troubleshoot issues with the powervault collector, run the go.d.plugin with the debug option enabled. The output
should give you clues as to why the collector isn’t working.
Navigate to the plugins.d directory, usually at /usr/libexec/netdata/plugins.d/. If that’s not the case on
your system, open netdata.conf and look for the plugins setting under [directories].
cd /usr/libexec/netdata/plugins.d/
Switch to the netdata user.
sudo -u netdata -s
Run the go.d.plugin to debug the collector:
./go.d.plugin -d -m powervault
To debug a specific job:
./go.d.plugin -d -m powervault -j jobName
If you’re encountering problems with the powervault collector, follow these steps to retrieve logs and identify potential issues:
Use the following command to view logs generated since the last Netdata service restart:
journalctl _SYSTEMD_INVOCATION_ID="$(systemctl show --value --property=InvocationID netdata)" --namespace=netdata --grep powervault
Locate the collector log file, typically at /var/log/netdata/collector.log, and use grep to filter for collector’s name:
grep powervault /var/log/netdata/collector.log
Note: This method shows logs from all restarts. Focus on the latest entries for troubleshooting current issues.
If your Netdata runs in a Docker container named “netdata” (replace if different), use this command:
docker logs netdata 2>&1 | grep powervault
If the collector fails with login: authentication failed:
auth_digest setting. ME4 firmware before G280 requires auth_digest: md5.
ME5 and newer ME4 firmware use sha256 (the default).If the collector fails with connection errors:
url points to the management controller IP (not a data port).timeout if the controller is on a high-latency link.PowerVault controllers ship with self-signed certificates. If you see TLS errors:
tls_skip_verify: yes in the configuration (most common solution).tls_ca.Want a personalised demo of Netdata for your use case?