AlarmGroupedCounts
Alarm Grouped Counts
Provides a hierarchical grouping of alarm instances, first by category and then by severity. This structure allows for flexible analysis of alarm distribution across different organizational dimensions (features, event types) while maintaining the severity-level breakdown.
JSON Example
{
"categories": [
{
"category": "string",
"severity_counts": {
"severity_counts": [
{
"severity": "CRITICAL",
"count": 1
}
]
}
}
]
}
array of
SeverityCountsByCategory
categories
Optional
List of severity counts grouped by category. Each entry contains the counts for a specific category (like a feature or event type) broken down by severity.