Skip to main content
Alerting & Response/Alert Events

GetAlertEventDetail

Get detailed information about a specific alert event including comments and timeline

GET/api/v1/alerting/events/{eventId}

Operation ID

GetAlertEventDetail

Since

1.0.0

Execution Mode

Synchronous

Auth Context

Auth Required

Auth Context

Send these values as request headers when calling this API.

AuthorizationstringRequired

Bearer Token

X-Tenant-IDstring

X-Tenant-ID

Request Inputs

Path Parameters

  • eventId
    StringRequired

    Event identifier to retrieve details for

Responses

200 OK
200 OK

On success, this API returns the following response structure.

  • alert
    Object

    The alert event

    • uuid
      String

      Unique identifier of the alert event

      Example: event-001

    • ruleUuid
      String

      UUID of the rule that generated this event

      Example: rule-abc123

    • ruleName
      String

      Name of the rule that generated this event

      Example: High CPU Usage

    • resourceType
      String

      Type of monitored resource

      Example: vm

    • resourceUuid
      String

      UUID of the specific resource

      Example: res-abc123

    • metricName
      String

      Metric name that was evaluated

      Example: cpu_usage_percent

    • currentValue
      Long

      Current metric value at the time of the event

      Example: 95.3

    • threshold
      Long

      Threshold that was exceeded

      Example: 90

    • operator
      String

      Comparison operator used

      Example: >

    • severity
      String

      Severity level of the event

      Example: critical

    • state
      String

      Current state: firing, acknowledged, or resolved

      Example: firing

    • message
      String

      Human-readable event message

      Example: CPU usage is 95.3%

    • fingerprint
      String

      Unique fingerprint for deduplication

      Example: fp-abc123

    • source
      String

      Source system that generated the event

      Example: prometheus

    • notifiedAt
      String

      Timestamp when the notification was sent

      Example: 2026-01-15T08:00:00Z

    • resolvedAt
      String

      Timestamp when the event was resolved

      Example: 2026-01-15T08:00:00Z

    • acknowledgedBy
      String

      User who acknowledged this event

      Example: admin

    • acknowledgedAt
      String

      Timestamp when the event was acknowledged

      Example: 2026-01-15T08:00:00Z

    • createDate
      String

      Timestamp when the event was created

      Example: 2026-01-15T08:00:00Z

    • alertInstanceUuid
      String

      Alert instance uuid for this resource

      Example: value

    • lifecycleState
      String

      Lifecycle state for this resource

      Example: value

    • ackState
      String

      Ack state for this resource

      Example: value

    • silenceState
      String

      Silence state for this resource

      Example: value

    • productType
      String

      Product type for this resource

      Example: value

    • sourceSystem
      String

      Source system for this resource

      Example: value

    • regionId
      String

      Region id for this resource

      Example: value

    • repeatCount
      Integer

      Repeat count for this resource

      Example: 10

  • comments
    List

    Comments on the alert event

    Example: (nested array)

    • uuid
      String

      Unique identifier of the comment

      Example: comment-001

    • alertUuid
      String

      Alert event UUID this comment belongs to

      Example: event-001

    • author
      String

      Author of the comment

      Example: admin

    • content
      String

      Comment content text

      Example: Investigating high CPU on db-01

    • createDate
      String

      Timestamp when the comment was created

      Example: 2026-01-15T08:00:00Z

  • timeline
    List

    Timeline of actions on the alert event

    Example: (nested array)

    • uuid
      String

      Unique identifier of the timeline entry

      Example: timeline-001

    • alertUuid
      String

      Alert event UUID this entry belongs to

      Example: event-001

    • action
      String

      Action performed (created, acknowledged, resolved, commented)

      Example: acknowledged

    • actor
      String

      User who performed the action

      Example: admin

    • detail
      String

      Additional detail about the action

      Example: Alert acknowledged by admin

    • createDate
      String

      Timestamp of the action

      Example: 2026-01-15T08:00:00Z

  • deliveryRecords
    List

    Notification delivery records for this alert event

    Example: (nested array)

    • uuid
      String

      Unique identifier of this resource

      Example: value

    • notificationGroupId
      String

      Notification group id for this resource

      Example: value

    • alertInstanceIds
      List

      Alert instance ids for this resource

      Example: item1,item2

    • alertInstanceUuid
      String

      Alert instance uuid for this resource

      Example: value

    • policyUuid
      String

      Policy uuid for this resource

      Example: value

    • channelUuid
      String

      Channel uuid for this resource

      Example: value

    • channelType
      String

      Channel type for this resource

      Example: value

    • templateUuid
      String

      Template uuid for this resource

      Example: value

    • targetMasked
      String

      Target masked for this resource

      Example: value

    • status
      String

      Status for this resource

      Example: value

    • attempt
      Integer

      Attempt for this resource

      Example: 10

    • maxAttempts
      Integer

      Max attempts for this resource

      Example: 10

    • errorCode
      String

      Error code for this resource

      Example: value

    • errorMessage
      String

      Error message for this resource

      Example: value

    • durationMs
      Integer

      Duration ms for this resource

      Example: 10

    • createdAt
      String

      Created at for this resource

      Example: 2026-01-15T08:00:00Z

    • lastAttemptAt
      String

      Last attempt at for this resource

      Example: 2026-01-15T08:00:00Z

    • nextRetryAt
      String

      Next retry at for this resource

      Example: 2026-01-15T08:00:00Z

  • Change Time

    AddedResponse fields ackState, alertInstanceIds, alertInstanceUuid...
    View API