diff --git a/frontend-modern/src/components/Alerts/ThresholdsTableAgentsResourcesSection.tsx b/frontend-modern/src/components/Alerts/ThresholdsTableAgentsResourcesSection.tsx
index df6c44a23..c1444f699 100644
--- a/frontend-modern/src/components/Alerts/ThresholdsTableAgentsResourcesSection.tsx
+++ b/frontend-modern/src/components/Alerts/ThresholdsTableAgentsResourcesSection.tsx
@@ -1,9 +1,16 @@
-import { Show } from 'solid-js';
+import { For, Show } from 'solid-js';
+import { Card } from '@/components/shared/Card';
import { ResourceTable } from './ResourceTable';
import { formatMetricValue } from '@/features/alerts/thresholds/helpers';
import type { ThresholdsTableSectionProps } from '@/features/alerts/thresholds/thresholdsTableSectionProps';
+const DISK_TEMP_TYPE_FIELDS: readonly { key: string; label: string }[] = [
+ { key: 'nvme', label: 'NVMe' },
+ { key: 'sas', label: 'SAS' },
+ { key: 'sata', label: 'SATA' },
+];
+
export function ThresholdsTableAgentsResourcesSection(props: ThresholdsTableSectionProps) {
const { state, tableProps } = props;
@@ -51,6 +58,47 @@ export function ThresholdsTableAgentsResourcesSection(props: ThresholdsTableSect
factoryDefaults={tableProps.factoryAgentDefaults}
onResetDefaults={tableProps.resetAgentDefaults}
/>
+
+
+
Disk temperature by type
+
+ Alert trigger in °C for each disk type. Warning colors start 5°C below the trigger.
+ Setting a Disk Temp override on a host above replaces these for all of that host's
+ disks.
+