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

@@ -1,6 +1,6 @@
import SettingsSectionTitle from "@app/components/SettingsSectionTitle";
import AlertingRulesTable from "@app/components/AlertingRulesTable";
import StandaloneHealthChecksTable from "@app/components/StandaloneHealthChecksTable";
import HealthChecksTable from "@app/components/HealthChecksTable";
import { HorizontalTabs, TabItem } from "@app/components/HorizontalTabs";
import { getTranslations } from "next-intl/server";
@@ -27,8 +27,8 @@ export default async function AlertingPage(props: AlertingPageProps) {
/>
<HorizontalTabs items={tabs} clientSide>
<AlertingRulesTable orgId={params.orgId} />
<StandaloneHealthChecksTable orgId={params.orgId} />
<HealthChecksTable orgId={params.orgId} />
</HorizontalTabs>
</>
);
}
}

View File

@@ -640,10 +640,10 @@ function ProxyResourceTargetsForm({
hcInterval: null,
hcTimeout: null,
hcHeaders: null,
hcFollowRedirects: null,
hcScheme: null,
hcHostname: null,
hcPort: null,
hcFollowRedirects: null,
hcHealth: "unknown",
hcStatus: null,
hcMode: null,