Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
284 Bytes
-- name: NoticeUnackedAlertsByService :one
SELECT
count(*),
(
SELECT
max
FROM
config_limits
WHERE
id = 'unacked_alerts_per_service'
)
FROM
alerts
WHERE
service_id = $1::uuid
AND status = 'triggered';