Plugin: go.d.plugin Module: powerstore
This collector monitors Dell PowerStore storage arrays via the PowerStore REST API.
It collects metrics for the following components:
The collector uses the PowerStore REST API (/api/rest/* endpoints) to fetch data.
Authentication uses HTTP Basic Auth — the collector calls /api/rest/login_session to obtain
a session cookie and a DELL-EMC-TOKEN CSRF token, which are reused for subsequent requests.
Sessions are automatically refreshed on HTTP 403 (token expiry).
Discovery runs on startup and then every 5 collection cycles to refresh the hardware inventory, appliances, volumes, nodes, ports, file systems, and NAS servers.
Performance and space metrics are collected via the /api/rest/metrics/generate endpoint using
the PowerStore metrics generation API. The collector requests Five_Mins interval data for
performance metrics and One_Day for cluster space metrics, taking the most recent data point.
Discovery API calls use pagination (2000 items per page, HTTP 206 for partial results). Performance metrics for different entities are collected concurrently (up to 10 parallel 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 PowerStore array is required. Any role with API read access
is sufficient (e.g., the built-in Operator role). The account does not need write permissions.
The collector does not auto-detect PowerStore arrays. You must configure the management IP address, username, and password explicitly.
The collector makes multiple API calls per collection cycle: discovery calls (once every 5 cycles) plus per-entity metrics calls (appliances, volumes, nodes, ports, file systems, drives, and replication — one API call per entity). With many volumes or ports, the number of API calls scales linearly. The default 30-second collection interval provides ample headroom.
The PowerStore REST API is lightweight and read-only. The collector uses the metrics generation API which returns pre-aggregated data, imposing minimal load on the array. Session tokens and CSRF tokens are cached across collection cycles.
You can configure the powerstore 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 powerstore, 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/powerstore.conf and add a job. |
:::important
UI configuration requires paid Netdata Cloud plan.
:::
Operator role is sufficient.PowerStore arrays typically use self-signed TLS certificates. You will likely need to set
tls_skip_verify: yes in the configuration, or provide the array’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 | PowerStore management URL. | https://127.0.0.1 | yes |
| timeout | HTTP request timeout (seconds). | 30 | no | |
| HTTP Auth | username | Username for PowerStore API authentication. | yes | |
| password | Password for PowerStore API authentication. | yes | ||
| Filtering | volume_selector | Space-separated simple patterns to filter which volumes to monitor. Use * for wildcards, ! prefix to exclude. An empty value or * monitors all volumes. | * | no |
| TLS | tls_skip_verify | Skip TLS certificate and hostname verification (insecure, but often needed for self-signed certs on storage arrays). | 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 powerstore collector from the Netdata web interface:
The configuration file name for this integration is go.d/powerstore.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/powerstore.conf
A minimal configuration connecting to a PowerStore array with a self-signed certificate.
jobs:
- name: ps-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: ps-prod
url: https://10.0.0.1
username: monitor
password: monitor123
tls_skip_verify: yes
volume_selector: "prod-* !*-temp !*-test"
Note: When you define multiple jobs, their names must be unique.
Monitoring multiple PowerStore arrays.
jobs:
- name: ps-site-a
url: https://10.0.0.1
username: monitor
password: monitor123
tls_skip_verify: yes
- name: ps-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 PowerStore cluster.
This scope has no labels.
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powerstore.cluster_space_usage | used, total | bytes |
| powerstore.cluster_space_logical | provisioned, used, data_physical, shared | bytes |
| powerstore.cluster_space_efficiency | efficiency, data_reduction, snapshot_savings, thin_savings | ratio |
| powerstore.hardware_health_fan | ok, degraded, failed, unknown | fans |
| powerstore.hardware_health_psu | ok, degraded, failed, unknown | PSUs |
| powerstore.hardware_health_drive | ok, degraded, failed, unknown | drives |
| powerstore.hardware_health_battery | ok, degraded, failed, unknown | batteries |
| powerstore.hardware_health_node | ok, degraded, failed, unknown | nodes |
| powerstore.alerts_active | critical, major, minor, info | alerts |
| powerstore.nas_server_status | started, stopped, degraded, unknown | servers |
| powerstore.copy_data | remaining, transferred | bytes |
| powerstore.copy_transfer_rate | rate | bytes/s |
These metrics refer to individual PowerStore appliances.
Labels:
| Label | Description |
|---|---|
| appliance | Appliance name (e.g., Appliance-WX-D8031). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powerstore.appliance_iops | read, write | ops/s |
| powerstore.appliance_bandwidth | read, write | bytes/s |
| powerstore.appliance_latency | read, write, avg | microseconds |
| powerstore.appliance_cpu | utilization | percentage |
| powerstore.appliance_space | used, total | bytes |
| powerstore.appliance_space_logical | provisioned, used, data_physical, shared | bytes |
| powerstore.appliance_space_efficiency | efficiency, data_reduction, snapshot_savings, thin_savings | ratio |
These metrics refer to individual PowerStore 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 |
|---|---|---|
| powerstore.volume_iops | read, write | ops/s |
| powerstore.volume_bandwidth | read, write | bytes/s |
| powerstore.volume_latency | read, write, avg | microseconds |
| powerstore.volume_space | provisioned, used | bytes |
| powerstore.volume_space_savings | thin_savings | ratio |
These metrics refer to individual PowerStore nodes within an appliance.
Labels:
| Label | Description |
|---|---|
| node | Node name (e.g., Appliance-WX-D8031-node-A). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powerstore.node_iops | read, write | ops/s |
| powerstore.node_bandwidth | read, write | bytes/s |
| powerstore.node_latency | read, write, avg | microseconds |
| powerstore.node_logins | logins | logins |
These metrics refer to individual Fibre Channel ports used for host connectivity.
Labels:
| Label | Description |
|---|---|
| fc_port | FC port name (e.g., Appliance-WX-D8031-node-A-Port-0). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powerstore.fc_port_iops | read, write | ops/s |
| powerstore.fc_port_bandwidth | read, write | bytes/s |
| powerstore.fc_port_latency | read, write, avg | microseconds |
| powerstore.fc_port_link_status | up | status |
These metrics refer to individual Ethernet ports (management and iSCSI connectivity).
Labels:
| Label | Description |
|---|---|
| eth_port | Ethernet port name (e.g., Appliance-WX-D8031-node-A-Port-eth0). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powerstore.eth_port_bytes | received, sent | bytes/s |
| powerstore.eth_port_packets | received, sent | packets/s |
| powerstore.eth_port_errors | rx_crc, rx_no_buffer, tx_error | errors/s |
| powerstore.eth_port_link_status | up | status |
These metrics refer to individual file systems (NFS/SMB shares).
Labels:
| Label | Description |
|---|---|
| filesystem | File system name (e.g., nfs-share-01). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powerstore.filesystem_iops | read, write | ops/s |
| powerstore.filesystem_bandwidth | read, write | bytes/s |
| powerstore.filesystem_latency | read, write, avg | microseconds |
These metrics refer to individual physical drives (SSDs).
Labels:
| Label | Description |
|---|---|
| drive | Drive name (e.g., Drive_0_0_25). |
Metrics:
| Metric | Dimensions | Unit |
|---|---|---|
| powerstore.drive_endurance | remaining | 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 powerstore 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 powerstore
To debug a specific job:
./go.d.plugin -d -m powerstore -j jobName
If you’re encountering problems with the powerstore 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 powerstore
Locate the collector log file, typically at /var/log/netdata/collector.log, and use grep to filter for collector’s name:
grep powerstore /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 powerstore
If the collector fails with login failed:
Operator role privileges.If the collector fails with connection errors:
url points to the management IP of the PowerStore array.timeout if the array is on a high-latency link.PowerStore arrays ship with self-signed certificates. If you see TLS errors:
tls_skip_verify: yes in the configuration (most common solution).tls_ca.PowerStore returns HTTP 403 when the session/CSRF token is stale. The collector automatically re-authenticates on 403, but if you see persistent 403 errors:
Want a personalised demo of Netdata for your use case?