mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-09-24 18:26:51 +03:00
* refactor notices * show startup message for enrichments in health pane * tweaks
93 lines
2.0 KiB
TypeScript
93 lines
2.0 KiB
TypeScript
/**
|
|
* FrigateStats factory for E2E tests.
|
|
*/
|
|
|
|
import { deepMerge, type DeepPartial } from "./config";
|
|
|
|
function cameraStats(_name: string) {
|
|
return {
|
|
audio_dBFPS: 0,
|
|
audio_rms: 0,
|
|
camera_fps: 5.0,
|
|
capture_pid: 100,
|
|
detection_enabled: 1,
|
|
detection_fps: 5.0,
|
|
ffmpeg_pid: 101,
|
|
pid: 102,
|
|
process_fps: 5.0,
|
|
skipped_fps: 0,
|
|
skipped_pct: 0,
|
|
connection_quality: "excellent" as const,
|
|
expected_fps: 5,
|
|
reconnects_last_hour: 0,
|
|
stalls_last_hour: 0,
|
|
};
|
|
}
|
|
|
|
export const BASE_STATS = {
|
|
cameras: {
|
|
front_door: cameraStats("front_door"),
|
|
backyard: cameraStats("backyard"),
|
|
garage: cameraStats("garage"),
|
|
},
|
|
cpu_usages: {
|
|
"1": { cmdline: "frigate.app", cpu: "5.0", cpu_average: "4.5", mem: "2.1" },
|
|
},
|
|
detectors: {
|
|
cpu: {
|
|
detection_start: 0,
|
|
inference_speed: 75.5,
|
|
pid: 200,
|
|
},
|
|
},
|
|
gpu_usages: {},
|
|
npu_usages: {},
|
|
embeddings: {
|
|
image_embedding_speed: 0,
|
|
face_embedding_speed: 0,
|
|
plate_recognition_speed: 0,
|
|
text_embedding_speed: 0,
|
|
devices: {} as Record<string, string>,
|
|
},
|
|
processes: {},
|
|
service: {
|
|
last_updated: Date.now() / 1000,
|
|
storage: {
|
|
"/media/frigate/recordings": {
|
|
free: 50000000000,
|
|
total: 100000000000,
|
|
used: 50000000000,
|
|
mount_type: "ext4",
|
|
},
|
|
"/tmp/cache": {
|
|
free: 500000000,
|
|
total: 1000000000,
|
|
used: 500000000,
|
|
mount_type: "tmpfs",
|
|
},
|
|
"/dev/shm": {
|
|
free: 98,
|
|
total: 128,
|
|
used: 30,
|
|
mount_type: "tmpfs",
|
|
min_shm: 64,
|
|
},
|
|
},
|
|
uptime: 86400,
|
|
latest_version: "0.15.0",
|
|
version: "0.15.0-test",
|
|
retention_unmet: false,
|
|
},
|
|
camera_fps: 15.0,
|
|
process_fps: 15.0,
|
|
skipped_fps: 0,
|
|
detection_fps: 15.0,
|
|
};
|
|
|
|
export function statsFactory(
|
|
overrides?: DeepPartial<typeof BASE_STATS>,
|
|
): typeof BASE_STATS {
|
|
if (!overrides) return BASE_STATS;
|
|
return deepMerge(BASE_STATS, overrides) as typeof BASE_STATS;
|
|
}
|