Skip to main content

Storage Qos qos-options endpoint overview

Contributors

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 }"

-