Authorizations
API key authentication
Query Parameters
Filter configuration for incidents
- Incident group by
- Incident group by
Pagination parameters for list requests
curl --request GET \
--url https://api.coralogix.com/mgmt/openapi/latest/incidents/incidents/v1/aggregations \
--header 'Authorization: <api-key>'{
"incidentAggs": [
{
"aggAssignmentsCount": [
{
"assignedTo": {
"userId": "user_id"
},
"count": 10
}
],
"aggMetaLabelsCount": [
{
"count": 10,
"metaLabel": {
"key": "key",
"value": "value"
}
}
],
"aggSeverityCount": [
{
"count": 10,
"severity": "INCIDENT_SEVERITY_UNSPECIFIED"
}
],
"aggStateCount": [
{
"count": 10,
"state": "INCIDENT_STATE_UNSPECIFIED"
}
],
"aggStatusCount": [
{
"count": 10,
"status": "INCIDENT_STATUS_UNSPECIFIED"
}
],
"allValuesCount": 123,
"firstCreatedAt": "2023-11-07T05:31:56Z",
"groupBysValue": [
{
"incidentField": {
"applicationName": "<string>"
}
}
],
"lastClosedAt": "2023-11-07T05:31:56Z",
"lastStateUpdateTime": "2023-11-07T05:31:56Z",
"listIncidentsId": [
"<string>"
]
}
],
"pagination": {
"nextPageToken": "next_page_token",
"totalSize": 100
}
}Retrieve aggregated incident data with support for grouping and filtering.
Requires the following permissions:
incidents:readcurl --request GET \
--url https://api.coralogix.com/mgmt/openapi/latest/incidents/incidents/v1/aggregations \
--header 'Authorization: <api-key>'{
"incidentAggs": [
{
"aggAssignmentsCount": [
{
"assignedTo": {
"userId": "user_id"
},
"count": 10
}
],
"aggMetaLabelsCount": [
{
"count": 10,
"metaLabel": {
"key": "key",
"value": "value"
}
}
],
"aggSeverityCount": [
{
"count": 10,
"severity": "INCIDENT_SEVERITY_UNSPECIFIED"
}
],
"aggStateCount": [
{
"count": 10,
"state": "INCIDENT_STATE_UNSPECIFIED"
}
],
"aggStatusCount": [
{
"count": 10,
"status": "INCIDENT_STATUS_UNSPECIFIED"
}
],
"allValuesCount": 123,
"firstCreatedAt": "2023-11-07T05:31:56Z",
"groupBysValue": [
{
"incidentField": {
"applicationName": "<string>"
}
}
],
"lastClosedAt": "2023-11-07T05:31:56Z",
"lastStateUpdateTime": "2023-11-07T05:31:56Z",
"listIncidentsId": [
"<string>"
]
}
],
"pagination": {
"nextPageToken": "next_page_token",
"totalSize": 100
}
}API key authentication
Filter configuration for incidents
Show child attributes
Show child attributes
Pagination parameters for list requests
Show child attributes
Was this page helpful?