File size: 3,736 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
-- name: Alert_LockOneAlertService :one
-- Locks the service associated with the alert.
SELECT
maintenance_expires_at NOTNULL::bool AS is_maint_mode,
alerts.status
FROM
services svc
JOIN alerts ON alerts.service_id = svc.id
WHERE
alerts.id = $1
FOR UPDATE;
-- name: Alert_RequestAlertEscalationByTime :one
-- Returns the alert ID and the escalation policy ID for the alert that should be escalated based on the provided time.
UPDATE
escalation_policy_state
SET
force_escalation = TRUE
WHERE
alert_id = $1
AND (last_escalation <= $2::timestamptz
OR last_escalation IS NULL)
RETURNING
TRUE;
-- name: Alert_AlertHasEPState :one
-- Returns true if the alert has an escalation policy state.
SELECT
EXISTS (
SELECT
1
FROM
escalation_policy_state
WHERE
alert_id = $1) AS has_ep_state;
-- name: Alert_GetAlertFeedback :many
-- Returns the noise reason for the alert.
SELECT
alert_id,
noise_reason
FROM
alert_feedback
WHERE
alert_id = ANY ($1::int[]);
-- name: Alert_SetAlertFeedback :exec
-- Sets the noise reason for the alert.
INSERT INTO alert_feedback(alert_id, noise_reason)
VALUES ($1, $2)
ON CONFLICT (alert_id)
DO UPDATE SET
noise_reason = $2
WHERE
alert_feedback.alert_id = $1;
-- name: Alert_SetManyAlertFeedback :many
-- Sets the noise reason for many alerts.
INSERT INTO alert_feedback(alert_id, noise_reason)
VALUES (unnest(@alert_ids::bigint[]), @noise_reason)
ON CONFLICT (alert_id)
DO UPDATE SET
noise_reason = excluded.noise_reason
WHERE
alert_feedback.alert_id = excluded.alert_id
RETURNING
alert_id;
-- name: Alert_GetAlertMetadata :one
-- Returns the metadata for the alert.
SELECT
metadata
FROM
alert_data
WHERE
alert_id = $1;
-- name: Alert_GetAlertManyMetadata :many
-- Returns the metadata for many alerts.
SELECT
alert_id,
metadata
FROM
alert_data
WHERE
alert_id = ANY (@alert_ids::bigint[]);
-- name: Alert_SetAlertMetadata :execrows
-- Sets the metadata for the alert.
INSERT INTO alert_data(alert_id, metadata)
SELECT
a.id,
$2
FROM
alerts a
WHERE
a.id = $1
AND a.status != 'closed'
AND (a.service_id = $3
OR $3 IS NULL) -- ensure the alert is associated with the service, if coming from an integration
ON CONFLICT (alert_id)
DO UPDATE SET
metadata = $2
WHERE
alert_data.alert_id = $1;
-- name: Alert_ServiceEPHasSteps :one
-- Returns true if the Escalation Policy for the provided service has at least one step.
SELECT
EXISTS (
SELECT
1
FROM
escalation_policy_steps step
JOIN services svc ON step.escalation_policy_id = svc.escalation_policy_id
WHERE
svc.id = @service_id);
-- name: Alert_LockService :exec
-- Locks the service associated with the alert.
SELECT
1
FROM
services
WHERE
id = @service_id
FOR UPDATE;
-- name: Alert_LockManyAlertServices :exec
-- Locks the service(s) associated with the specified alerts.
SELECT
1
FROM
alerts a
JOIN services s ON a.service_id = s.id
WHERE
a.id = ANY (@alert_ids::bigint[])
FOR UPDATE;
-- name: Alert_GetStatusAndLockService :one
-- Returns the status of the alert and locks the service associated with the alert.
SELECT
a.status
FROM
alerts a
JOIN services svc ON svc.id = a.service_id
WHERE
a.id = @id::bigint
FOR UPDATE;
-- name: Alert_GetEscalationPolicyID :one
-- Returns the escalation policy ID associated with the alert.
SELECT
escalation_policy_id
FROM
alerts a
JOIN services svc ON svc.id = a.service_id
WHERE
a.id = @id::bigint;
|