mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-30 09:41:51 +00:00
21 lines
546 B
TypeScript
21 lines
546 B
TypeScript
export async function fireResourceHealthyAlert(
|
|
orgId: string,
|
|
resourceId: number,
|
|
resourceName?: string | null,
|
|
extra?: Record<string, unknown>
|
|
): Promise<void> {}
|
|
|
|
export async function fireResourceUnhealthyAlert(
|
|
orgId: string,
|
|
resourceId: number,
|
|
resourceName?: string | null,
|
|
extra?: Record<string, unknown>
|
|
): Promise<void> {}
|
|
|
|
export async function fireResourceToggleAlert(
|
|
orgId: string,
|
|
resourceId: number,
|
|
resourceName?: string | null,
|
|
extra?: Record<string, unknown>
|
|
): Promise<void> {}
|