Usage Limit Update¶
POST /api/v1/workspace/{workspace_uuid}/usage_limit/update
Overview¶
Route Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
workspace_uuid | string | Y | Workspace UUID |
Body Request Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
config | json | Y | Usage limit configuration for each type, metric "Metrics", network "Network", rum "RUM", logging "LOG", tracing "APM Trace", profile "APM Profile", dialing "Synthetic Tests" Example: {rum: {openLimit: false, value: 0},logging: {openLimit: false, value: 0} Allow empty: False |
Parameter Additional Information¶
Request Body Structure Description
Parameter Name | Type | Description |
---|---|---|
config | json | Daily usage limit for specific types in the workspace |
config structure example:
{
"rum": {"openLimit": false, "value": 0},
"logging": {"openLimit": false, "value": 0},
"tracing": {"openLimit": true, "value": 10000},
"metric": {"openLimit": false, "value": 0},
"network": {"openLimit": false, "value": 0},
"profile": {"openLimit": false, "value": 0},
"dialing": {"openLimit": false, "value": 0},
"session_replay": {"openLimit": false, "value": 0},
"keyevent": {"openLimit": false, "value": 0},
"siem": {"openLimit": false, "value": 0},
"backup_log": {"openLimit": false, "value": 0},
"data_forwarding": {"openLimit": false, "value": 0},
}