mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-29 17:23:11 +00:00
27 lines
681 B
TypeScript
27 lines
681 B
TypeScript
export async function fireResourceHealthyAlert(
|
|
orgId: string,
|
|
resourceId: number,
|
|
resourceName?: string | null,
|
|
extra?: Record<string, unknown>,
|
|
send: boolean = true,
|
|
trx?: unknown
|
|
): Promise<void> {}
|
|
|
|
export async function fireResourceUnhealthyAlert(
|
|
orgId: string,
|
|
resourceId: number,
|
|
resourceName?: string | null,
|
|
extra?: Record<string, unknown>,
|
|
send: boolean = true,
|
|
trx?: unknown
|
|
): Promise<void> {}
|
|
|
|
export async function fireResourceToggleAlert(
|
|
orgId: string,
|
|
resourceId: number,
|
|
resourceName?: string | null,
|
|
extra?: Record<string, unknown>,
|
|
send: boolean = true,
|
|
trx?: unknown
|
|
): Promise<void> {}
|