cURL
curl --request PUT \
--url https://{tenant}.chronosphere.io/api/v1/config/consumption-config \
--header 'API-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'{
"consumption_config": {
"created_at": "2023-11-07T05:31:56Z",
"partitions": [
{
"filters": [
{
"conditions": [
{
"dataset_slug": "<string>",
"log_filter": {
"query": "<string>"
},
"metric_filters": [
{
"name": "job",
"value_glob": "myservice*"
}
],
"trace_filter": {
"scope_filter": {
"span_scopes": [
{
"duration": {
"max_secs": 123,
"min_secs": 123
},
"error": {
"value": true
},
"is_root_span": {
"value": true
},
"operation": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"parent_operation": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"parent_service": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"service": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"span_count": {
"max": 123,
"min": 123
},
"tags": [
{
"key": "<string>",
"numeric_value": {
"value": 123
},
"value": {
"in_values": [
"<string>"
],
"value": "<string>"
}
}
]
}
]
},
"span": [
{
"duration": {
"max_secs": 123,
"min_secs": 123
},
"error": {
"value": true
},
"is_root_span": {
"value": true
},
"operation": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"parent_operation": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"parent_service": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"service": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"span_count": {
"max": 123,
"min": 123
},
"tags": [
{
"key": "<string>",
"numeric_value": {
"value": 123
},
"value": {
"in_values": [
"<string>"
],
"value": "<string>"
}
}
]
}
],
"trace": {
"duration": {
"max_secs": 123,
"min_secs": 123
},
"error": {
"value": true
}
}
}
}
]
}
],
"name": "<string>",
"partitions": "<array>",
"slug": "<string>"
}
],
"updated_at": "2023-11-07T05:31:56Z"
}
}UpdateConsumptionConfig
PUT
/
api
/
v1
/
config
/
consumption-config
cURL
curl --request PUT \
--url https://{tenant}.chronosphere.io/api/v1/config/consumption-config \
--header 'API-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'{
"consumption_config": {
"created_at": "2023-11-07T05:31:56Z",
"partitions": [
{
"filters": [
{
"conditions": [
{
"dataset_slug": "<string>",
"log_filter": {
"query": "<string>"
},
"metric_filters": [
{
"name": "job",
"value_glob": "myservice*"
}
],
"trace_filter": {
"scope_filter": {
"span_scopes": [
{
"duration": {
"max_secs": 123,
"min_secs": 123
},
"error": {
"value": true
},
"is_root_span": {
"value": true
},
"operation": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"parent_operation": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"parent_service": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"service": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"span_count": {
"max": 123,
"min": 123
},
"tags": [
{
"key": "<string>",
"numeric_value": {
"value": 123
},
"value": {
"in_values": [
"<string>"
],
"value": "<string>"
}
}
]
}
]
},
"span": [
{
"duration": {
"max_secs": 123,
"min_secs": 123
},
"error": {
"value": true
},
"is_root_span": {
"value": true
},
"operation": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"parent_operation": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"parent_service": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"service": {
"in_values": [
"<string>"
],
"value": "<string>"
},
"span_count": {
"max": 123,
"min": 123
},
"tags": [
{
"key": "<string>",
"numeric_value": {
"value": 123
},
"value": {
"in_values": [
"<string>"
],
"value": "<string>"
}
}
]
}
],
"trace": {
"duration": {
"max_secs": 123,
"min_secs": 123
},
"error": {
"value": true
}
}
}
}
]
}
],
"name": "<string>",
"partitions": "<array>",
"slug": "<string>"
}
],
"updated_at": "2023-11-07T05:31:56Z"
}
}Authorizations
Chronosphere API token
Body
application/json
The ConsumptionConfig to update.
Show child attributes
Show child attributes
If true, the ConsumptionConfig will be created if it does not already exist. If false, an error will be returned if the ConsumptionConfig does not already exist.
If true, validates the specified configuration without creating or updating the ConsumptionConfig. If the specified configuration is valid, the endpoint returns a partial response without the ConsumptionConfig. If the specified configuration is invalid, the endpoint returns an error.
Response
A successful response containing the updated ConsumptionConfig.
Show child attributes
Show child attributes
⌘I

