Working on alerting

This commit is contained in:
Owen
2026-04-16 11:49:48 -07:00
parent 1a1d1cfb83
commit 57579e635c
11 changed files with 572 additions and 1255 deletions

View File

@@ -32,7 +32,7 @@ import { processAlerts } from "../processAlerts";
export async function fireHealthCheckHealthyAlert(
orgId: string,
healthCheckId: number,
healthCheckName?: string,
healthCheckName?: string | null,
extra?: Record<string, unknown>
): Promise<void> {
try {
@@ -68,7 +68,7 @@ export async function fireHealthCheckHealthyAlert(
export async function fireHealthCheckNotHealthyAlert(
orgId: string,
healthCheckId: number,
healthCheckName?: string,
healthCheckName?: string | null,
extra?: Record<string, unknown>
): Promise<void> {
try {
@@ -88,4 +88,4 @@ export async function fireHealthCheckNotHealthyAlert(
err
);
}
}
}