netapp.storagegrid.na_sg_grid_metrics module – NetApp StorageGRID grab metrics.
Note
This module is part of the netapp.storagegrid collection (version 21.16.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install netapp.storagegrid.
To use it in a playbook, specify: netapp.storagegrid.na_sg_grid_metrics.
New in netapp.storagegrid 21.16.0
Synopsis
Get metrics on NetApp StorageGRID.
Parameters
Parameter |
Comments |
|---|---|
The url to the StorageGRID Admin Node REST API. |
|
The authorization token for the API request |
|
End time for the query range. |
|
Prometheus query string to execute. |
|
Step width/interval duration for the query range. |
|
Evaluation time for the query. If not provided, default current time(date-time) is used. Use it as |
|
Timeout duration for the query execution. |
|
Should https certificates be validated? Choices:
|
Notes
Note
The modules prefixed with
na_sgare built to manage NetApp StorageGRID.
Examples
- name: Query metrics
netapp.storagegrid.na_sg_grid_metrics:
api_url: "https://<storagegrid-endpoint-url>"
auth_token: "storagegrid-auth-token"
validate_certs: false
query: storagegrid_storage_utilization_usable_space_bytes
time: 2025-08-01T00:00:00.000Z
timeout: 30s
register: sg_metric
- name: Query metrics over range of time
netapp.storagegrid.na_sg_grid_metrics:
api_url: "https://<storagegrid-endpoint-url>"
auth_token: "storagegrid-auth-token"
validate_certs: false
query: storagegrid_storage_utilization_usable_space_bytes{site_name="site1"}
start_time: 2025-08-27T10:10:58.668Z
end_time: 2025-08-27T10:11:59.668Z
step: 60s
timeout: 30s
register: sg_metric
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
Returns information about the StorageGRID metrics. Returned: always Sample: |