Update a metrics account soft limit
PUT/v1/account-management/metrics-accounts/:metricsAccountId/soft-limit
Sets the soft limit of a Consumption metrics account.
The soft limit caps the number of unique time series (UTS) the metrics account is allowed to ingest.
Available for Consumption accounts only. If the account is not a Consumption account, the request returns 400.
Please ensure to change the region in the URL to match your account's region.
Request
Path Parameters
metricsAccountId integerrequired
ID of the metrics account.
- application/json
Body
required
softLimitUniqueMetricsConsumption integerrequired
The account's soft limit, in unique time series (UTS). Must not be negative.
Responses
- 200
- 400
OK
- application/json
- Schema
- Example (from schema)
Schema
metricsAccountId integer
ID of the metrics account.
softLimitUniqueMetricsConsumption integer
The account's soft limit, in unique time series (UTS).
{
"metricsAccountId": 0,
"softLimitUniqueMetrics": 0
}
The account is not a Consumption account, or softLimitUniqueMetrics is negative.
Loading...