mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-18 15:56:35 +00:00
Add stub
This commit is contained in:
19
server/lib/alerts/events/healthCheckEvents.ts
Normal file
19
server/lib/alerts/events/healthCheckEvents.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
// stub
|
||||
|
||||
export async function fireHealthCheckHealthyAlert(
|
||||
orgId: string,
|
||||
healthCheckId: number,
|
||||
healthCheckName?: string,
|
||||
extra?: Record<string, unknown>
|
||||
): Promise<void> {
|
||||
return;
|
||||
}
|
||||
|
||||
export async function fireHealthCheckNotHealthyAlert(
|
||||
orgId: string,
|
||||
healthCheckId: number,
|
||||
healthCheckName?: string,
|
||||
extra?: Record<string, unknown>
|
||||
): Promise<void> {
|
||||
return;
|
||||
}
|
||||
Reference in New Issue
Block a user