Storage Qos qos-options endpoint overview
Contributors
Suggest changes
- PDF of this doc site
Collection of separate PDF docs
Creating your file...
This may take a few minutes. Thanks for your patience.
Your file is ready
Quality of Service Options
A QoS option represents a configuration detail that is used by QoS.
Examples
Retrieving a QoS option from the cluster
The following example retrieves the QoS option in the cluster.
curl -X GET "https://<mgmt-ip>/api/storage/qos/qos-options?return_timeout=0" -H "accept: application/json" -H "Content-Type: application/json"
2) Update a QoS option
The following example shows how to modify the background task reserve policy to 40%.
curl -X PATCH "https://<mgmt-ip>/api/storage/qos/qos-options?return_timeout=0" -H "accept: application/json" -H "Content-Type: application/json" -d "{ \"background_task_reserve\": 40 }"
-