mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	Show coral temps on system page if available (#11026)
This commit is contained in:
		
							parent
							
								
									03e25b3f94
								
							
						
					
					
						commit
						0bad001ac9
					
				@ -18,6 +18,11 @@ export const InferenceThreshold = {
 | 
			
		||||
  error: 100,
 | 
			
		||||
} as Threshold;
 | 
			
		||||
 | 
			
		||||
export const DetectorTempThreshold = {
 | 
			
		||||
  warning: 72,
 | 
			
		||||
  error: 80,
 | 
			
		||||
} as Threshold;
 | 
			
		||||
 | 
			
		||||
export const DetectorCpuThreshold = {
 | 
			
		||||
  warning: 25,
 | 
			
		||||
  error: 50,
 | 
			
		||||
 | 
			
		||||
@ -5,6 +5,7 @@ import { useFrigateStats } from "@/api/ws";
 | 
			
		||||
import {
 | 
			
		||||
  DetectorCpuThreshold,
 | 
			
		||||
  DetectorMemThreshold,
 | 
			
		||||
  DetectorTempThreshold,
 | 
			
		||||
  GPUMemThreshold,
 | 
			
		||||
  GPUUsageThreshold,
 | 
			
		||||
  InferenceThreshold,
 | 
			
		||||
@ -105,6 +106,44 @@ export default function GeneralMetrics({
 | 
			
		||||
    return Object.values(series);
 | 
			
		||||
  }, [statsHistory]);
 | 
			
		||||
 | 
			
		||||
  const detTempSeries = useMemo(() => {
 | 
			
		||||
    if (!statsHistory) {
 | 
			
		||||
      return [];
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (
 | 
			
		||||
      statsHistory.length > 0 &&
 | 
			
		||||
      Object.keys(statsHistory[0].service.temperatures).length == 0
 | 
			
		||||
    ) {
 | 
			
		||||
      return undefined;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    const series: {
 | 
			
		||||
      [key: string]: { name: string; data: { x: number; y: number }[] };
 | 
			
		||||
    } = {};
 | 
			
		||||
 | 
			
		||||
    statsHistory.forEach((stats, statsIdx) => {
 | 
			
		||||
      if (!stats) {
 | 
			
		||||
        return;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      Object.entries(stats.detectors).forEach(([key], cIdx) => {
 | 
			
		||||
        if (cIdx <= Object.keys(stats.service.temperatures).length) {
 | 
			
		||||
          if (!(key in series)) {
 | 
			
		||||
            series[key] = {
 | 
			
		||||
              name: key,
 | 
			
		||||
              data: [],
 | 
			
		||||
            };
 | 
			
		||||
          }
 | 
			
		||||
 | 
			
		||||
          const temp = Object.values(stats.service.temperatures)[cIdx];
 | 
			
		||||
          series[key].data.push({ x: statsIdx + 1, y: Math.round(temp) });
 | 
			
		||||
        }
 | 
			
		||||
      });
 | 
			
		||||
    });
 | 
			
		||||
    return Object.values(series);
 | 
			
		||||
  }, [statsHistory]);
 | 
			
		||||
 | 
			
		||||
  const detCpuSeries = useMemo(() => {
 | 
			
		||||
    if (!statsHistory) {
 | 
			
		||||
      return [];
 | 
			
		||||
@ -291,7 +330,9 @@ export default function GeneralMetrics({
 | 
			
		||||
        <div className="text-muted-foreground text-sm font-medium">
 | 
			
		||||
          Detectors
 | 
			
		||||
        </div>
 | 
			
		||||
        <div className="w-full mt-4 grid grid-cols-1 sm:grid-cols-3 gap-2">
 | 
			
		||||
        <div
 | 
			
		||||
          className={`w-full mt-4 grid grid-cols-1 gap-2 ${detTempSeries == undefined ? "sm:grid-cols-3" : "sm:grid-cols-4"}`}
 | 
			
		||||
        >
 | 
			
		||||
          {statsHistory.length != 0 ? (
 | 
			
		||||
            <div className="p-2.5 bg-background_alt rounded-2xl">
 | 
			
		||||
              <div className="mb-5">Detector Inference Speed</div>
 | 
			
		||||
@ -310,6 +351,28 @@ export default function GeneralMetrics({
 | 
			
		||||
          ) : (
 | 
			
		||||
            <Skeleton className="w-full aspect-video" />
 | 
			
		||||
          )}
 | 
			
		||||
          {statsHistory.length != 0 ? (
 | 
			
		||||
            <>
 | 
			
		||||
              {detTempSeries && (
 | 
			
		||||
                <div className="p-2.5 bg-background_alt rounded-2xl">
 | 
			
		||||
                  <div className="mb-5">Detector Temperature</div>
 | 
			
		||||
                  {detTempSeries.map((series) => (
 | 
			
		||||
                    <ThresholdBarGraph
 | 
			
		||||
                      key={series.name}
 | 
			
		||||
                      graphId={`${series.name}-temp`}
 | 
			
		||||
                      name={series.name}
 | 
			
		||||
                      unit="°C"
 | 
			
		||||
                      threshold={DetectorTempThreshold}
 | 
			
		||||
                      updateTimes={updateTimes}
 | 
			
		||||
                      data={[series]}
 | 
			
		||||
                    />
 | 
			
		||||
                  ))}
 | 
			
		||||
                </div>
 | 
			
		||||
              )}
 | 
			
		||||
            </>
 | 
			
		||||
          ) : (
 | 
			
		||||
            <Skeleton className="w-full aspect-video" />
 | 
			
		||||
          )}
 | 
			
		||||
          {statsHistory.length != 0 ? (
 | 
			
		||||
            <div className="p-2.5 bg-background_alt rounded-2xl">
 | 
			
		||||
              <div className="mb-5">Detector CPU Usage</div>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user