Alerting & Response/Alert Events
POSTAlertingSince 1.0SynchronousAuth Required
SubmitAlertNoiseAnalysis
Submit a noise analysis job to identify noisy and redundant alert rules
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Request Inputs
Body Fields
timeRangeStringRequiredTime range for analysis (e.g. 7d, 30d)
Example: 7d
topKIntegerRequiredNumber of top noisy rules to return
Example: 10
groupByListRequiredFields to group analysis results by
Example: item1,item2
tenantIdStringRequiredTenant identifier for scoped analysis
Example: 1
Responses
Endpoint
POST/api/v1/alerting/noise-analysis
/api/v1/alerting/noise-analysis
Request Example
curl -X POST '{host}/api/v1/alerting/noise-analysis' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"timeRange":"7d","topK":10,"groupBy":"item1,item2","tenantId":1}'
Response Example
200{
"jobId": "job-001",
"status": "completed",
"timeRange": "7d",
"topK": 10,
"groupBy": [],
"tenantId": 1,
"report": {},
"createdAt": "example"
}Change History
This API has no change history records yet.
