mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 16:57:14 +00:00
34 lines
787 B
TypeScript
34 lines
787 B
TypeScript
// stub
|
|
|
|
export async function fireHealthCheckHealthyAlert(
|
|
orgId: string,
|
|
healthCheckId: number,
|
|
healthCheckName?: string,
|
|
healthCheckTargetId?: number | null,
|
|
extra?: Record<string, unknown>,
|
|
trx?: unknown
|
|
): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
export async function fireHealthCheckUnhealthyAlert(
|
|
orgId: string,
|
|
healthCheckId: number,
|
|
healthCheckName?: string,
|
|
healthCheckTargetId?: number | null,
|
|
extra?: Record<string, unknown>,
|
|
trx?: unknown
|
|
): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
export async function fireHealthCheckUnknownAlert(
|
|
orgId: string,
|
|
healthCheckId: number,
|
|
healthCheckName?: string | null,
|
|
healthCheckTargetId?: number | null,
|
|
extra?: Record<string, unknown>,
|
|
trx?: unknown
|
|
): Promise<void> {
|
|
return;
|
|
} |