notification.deliveries
Purpose
The notification.deliveries dataset tracks the history of notification deliveries within Coralogix's Notification Center. It logs detailed information about each notification delivery attempt, including the status, timestamps, destination, and any errors that occurred. This dataset is invaluable for monitoring the success and failure of notification deliveries, diagnosing issues with notification routing, and auditing the overall performance of your notification system. It helps teams ensure that notifications are delivered reliably and enables troubleshooting when deliveries fail.
Schema description
| Full JSON path | Field data type | Field data example | description |
|---|---|---|---|
notificationCenter | Object | { ... } | Container for Notification Center envelope fields. |
notificationCenter.$l | Object | {"team":"SRE","service":"payments-api","env":"prod"} | Entity labels copied from the originating notification request. |
notificationCenter.$m | Object | { ... } | Metadata block for this delivery event. |
notificationCenter.$m.cxEventId | String (UUID) | "76c411be-6g4d-4fb1-a987-5fce042deaaf" | Unique Coralogix event identifier for this delivery record. |
notificationCenter.$m.timestamp | String (Date) | "2025-08-10T14:23:00Z" | Timestamp when this delivery event was recorded. |
notificationCenter.$m.severity | Enum | "Error" | Delivery severity derived from outcome.status (Info or Error). |
notificationCenter.$m.priorityClass | String | "medium" | Delivery priority classification. |
notificationCenter.$m.entityType | String | "notificationDeliveries" | Fixed entity type marker. |
notificationCenter.$d | Object | { ... } | Delivery-specific identifiers and source linkage. |
notificationCenter.$d.notificationDeliveryId | String | "deliv-01H8F2J7Q0A3" | Unique identifier for this specific delivery attempt/record. |
notificationCenter.$d.source | Object | { ... } | Originating request identifiers and entity context. |
notificationCenter.$d.source.requestDeduplicationId | String (UUID) | "3f2504e0-4f89-11d3-9a0c-0305e82c3301" | Deduplication ID from the originating request. |
notificationCenter.$d.source.notificationId | String (UUID) | "6fa459ea-ee8a-3ca4-894e-db77e160355e" | Notification ID from the originating request. |
notificationCenter.$d.source.requestTimestamp | String (Date) | "2025-08-10T14:20:00Z" | Timestamp of the originating notification request. |
notificationCenter.$d.source.entityType | String | "alert" | Source entity type from the request. |
notificationCenter.$d.source.entitySubType | String | "threshold" | Source entity subtype from the request. |
destination | Object | { "type":"slack", "connectorInfo":{...}, "presetInfo":{...} } | Delivery destination details. |
destination.type | String | "slack" | Destination channel/category (e.g., slack, email, webhook). |
destination.connectorInfo | Object | { "id":"conn-123", "userFacingId":"slack-oncall", "name":"Slack" } | Information about the connector used. |
destination.connectorInfo.id | String | "conn-123" | Internal connector identifier. |
destination.connectorInfo.userFacingId | String | "slack-oncall" | Human-readable identifier shown in the UI. |
destination.connectorInfo.name | String | "Slack" | Connector display name. |
destination.presetInfo | Object | { "id":"preset-9", "userFacingId":"oncall-room", "name":"#oncall" } | Preset configuration details, if used. |
destination.presetInfo.id | String | "preset-9" | Internal preset identifier. |
destination.presetInfo.userFacingId | String | "oncall-room" | Human-readable preset ID shown in the UI. |
destination.presetInfo.name | String | "#oncall" | Preset display name. |
message | String | "Alert: CPU usage is high!" | Optional human-readable message or summary for the delivery. |
content | Object | { "templated": { ... } } | Template inputs used to render message and connector payloads. |
content.templated | Object | { "messageConfig":"Alert: { alert.name }", "connectorConfig":"{ \"channel\":\"#oncall\" }" } | Serialized template inputs. |
content.templated.messageConfig | String | "Alert: { alert.name }" | Message configuration used for templating. |
content.templated.connectorConfig | String | "{ \"channel\":\"#oncall\", \"mention\":\"@oncall\" }" | Connector-specific template inputs. |
rendered | Object | { "messageConfig":"Alert: CPU usage is high!", "connectorConfig":"{ \"channel\":\"#oncall\" }" } | Rendered outputs after template resolution. |
rendered.messageConfig | String | "Alert: CPU usage is high!" | Rendered message payload. |
rendered.connectorConfig | String | "{ \"channel\":\"#oncall\" }" | Rendered connector payload/config. |
renderingErrors | Object | { "messageConfig": { "message": "template var missing" } } | Errors encountered during rendering, if any. |
renderingErrors.messageConfig | Object | { "message":"template var missing: alert.name" } | Message template rendering error details. |
renderingErrors.messageConfig.message | String | "template var missing: alert.name" | Error message from rendering the message template. |
renderingErrors.connectorConfig | Object | { "message":"invalid channel name" } | Connector template rendering error details. |
renderingErrors.connectorConfig.message | String | "invalid channel name" | Error message from rendering the connector template. |
routing | Object | { ... } | Routing metadata used to select destination. |
routing.routerInfo | Object | { "id":"router-01","userFacingId":"primary","name":"Primary Notifications Router" } | Router identification. |
routing.routerInfo.id | String | "router-01" | Router ID used to select the destination. |
routing.routerInfo.userFacingId | String | "primary" | Human-readable router ID shown in the UI. |
routing.routerInfo.name | String | "Primary Notifications Router" | Router name. |
routing.matchingRule | Object | { "name":"pagerduty-high","condition":"severity >= 3" } | The rule that matched for this delivery. |
routing.matchingRule.name | String | "pagerduty-high" | Name of the rule that matched. |
routing.matchingRule.condition | String | "severity >= 3" | Rule condition/expression that evaluated to a match. |
outcome | Object | { ... } | Final outcome and per-attempt details. |
outcome.timestamp | String (Date) | "2025-08-10T14:23:30Z" | Timestamp when the delivery outcome was finalized. |
outcome.durationMs | Number | 500 | Duration of the delivery execution (ms). |
outcome.e2eDuration | Number | 3000 | End-to-end duration from request registration to outcome (ms). |
outcome.protocol | String | "https" | Delivery protocol used (e.g., https, smtp, slack-api). |
outcome.https | Object | { "responseStatusCode": 200 } | HTTPS-specific response details, if applicable. |
outcome.https.responseStatusCode | Number | 200 | HTTP status code returned by the destination. |
outcome.status | Enum | "Success" | Final outcome status: Success, Discarded, Failure, InternalFailure, or Rejected. |
outcome.statusReasons | Object / Array/Object | { "type":"Timeout","message":"Request timed out after 10 seconds" } | Reason(s) for the final status (category + message). |
outcome.statusReasons.type | String | "Timeout" | Machine-friendly reason/category for the status. |
outcome.statusReasons.message | String | "Request timed out after 10 seconds" | Human-readable explanation of the status. |
outcome.attempts | Array/Object | [{"timestamp":"2025-08-10T14:23:05Z","durationMs":300,"status":"Failure","protocol":"https","protocolDetails":{"retryAfterMs":1000}}] | Per-attempt execution details (retries, backoffs, etc.). |
outcome.attempts.timestamp | String (Date) | "2025-08-10T14:23:05Z" | Timestamp for the individual attempt. |
outcome.attempts.durationMs | Number | 300 | Attempt duration in milliseconds. |
outcome.attempts.status | String | "Failure" | Attempt status (often mirrors final outcome.status on last try). |
outcome.attempts.statusReasons | Object / Array/Object | { "type":"Timeout","message":"Request timed out after 10 seconds" } | Reason(s) for the attempt status. |
outcome.attempts.protocol | String | "https" | Protocol used on the attempt. |
outcome.attempts.protocolDetails | Object | { "retryAfterMs": 1000 } | Protocol-specific detail map (e.g., headers, retry hints). |
How the data in this dataset can be used
notification.deliveries schema
The notification.deliveries dataset stores the history of notifications sent or attempted using Coralogix's Notification Center.
notificationCenter$ltype: object
Entity labels copied from the originating notification request.
$mcxEventIdtype: string (format: uuid)
Unique Coralogix event identifier for this delivery record.
timestamptype: string
Timestamp when this delivery event was recorded.
severityEnum: Info, Error
Delivery severity derived from outcome.status.
priorityClasstype: string
Delivery priority classification (e.g., medium).
entityTypetype: string
Fixed entity type marker, e.g., notificationDeliveries.
$dnotificationDeliveryIdtype: string
Unique identifier for this specific delivery attempt/record.
sourcerequestDeduplicationIdtype: string
Deduplication ID from the originating request.
notificationIdtype: string
Notification ID from the originating request.
requestTimestamptype: string
Timestamp of the originating notification request.
entityTypetype: string
Source entity type from the request.
entitySubTypetype: string
Source entity subtype from the request.
destinationtypetype: string
Destination channel/category (e.g., slack, email, webhook).
connectorInfoidtype: string
Internal connector identifier.
userFacingIdtype: string
Human-readable identifier shown in the UI.
nametype: string
Connector display name.
presetInfoidtype: string
Internal preset identifier.
userFacingIdtype: string
Human-readable preset ID shown in the UI.
nametype: string
Preset display name.
messagetype: string
Optional human-readable message or summary for the delivery.
contenttemplatedmessageConfigtype: string
Serialized template inputs for message content.
connectorConfigtype: string
Serialized template inputs for connector-specific options.
renderedmessageConfigtype: string
Rendered message payload after template resolution.
connectorConfigtype: string
Rendered connector payload/config after template resolution.
renderingErrorsmessageConfigmessagetype: string
Error details from rendering the message template.
connectorConfigmessagetype: string
Error details from rendering the connector template.
routingrouterInfoidtype: string
Router ID used to select the destination.
userFacingIdtype: string
Human-readable router ID shown in the UI.
nametype: string
Router name.
matchingRulenametype: string
Name of the rule that matched.
conditiontype: string
Rule condition/expression that evaluated to a match.
outcometimestamptype: string
Timestamp when the delivery outcome was finalized.
durationMstype: number
Duration of the delivery execution (ms).
e2eDurationtype: number
End-to-end duration from request registration to outcome (ms).
protocoltype: string
Delivery protocol used (e.g., https, smtp, slack-api).
httpsresponseStatusCodetype: number
HTTP status code returned by the destination (if applicable).
statusEnum: Success, Discarded, Failure, InternalFailure, Rejected
Final outcome status for this delivery.
statusReasonstypetype: string
Machine-friendly reason/category for the status.
messagetype: string
Human-readable explanation of the status.
attemptstype: array
Per-attempt execution details (retries, backoffs, etc.). { timestamp: string, durationMs: number, status: string, statusReasons: object, protocol: string, protocolDetails: object }