curl --request PUT \
--url https://api.galileo.ai/v2/projects/{project_id}/alerts/{monitor_alert_config_id}/update \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '
{
"conditions": [
{
"field": "<string>",
"aggregation": "count",
"operator": "eq",
"value": 123,
"window": 901,
"filter_value": "<string>",
"filter_operator": "eq",
"condition_type": "metric/numeric/1"
}
],
"filters": [
{
"operator": "eq",
"value": "<string>",
"name": "node_name",
"case_sensitive": true
}
],
"interval": 123,
"active": true,
"processed_by": "<string>",
"last_triggered": "2023-11-07T05:31:56Z",
"last_sent": "2023-11-07T05:31:56Z",
"alert_sent": true,
"counter_since_last_sent": 123,
"counter": 123,
"schema_version": "multi_condition/object/1"
}
'