Improve efficiency of log and metrics pages (#11622)

* Rework stats pages

* Handle limited data case

* Handle page and arrow keys

* Adjust sizing
This commit is contained in:
Nicolas Mowen
2024-05-29 12:05:39 -06:00
committed by GitHub
parent f1c0422d5e
commit 9245c5cb56
9 changed files with 523 additions and 423 deletions

View File

@@ -11,3 +11,6 @@ export type LogLine = {
section: string;
content: string;
};
export const logTypes = ["frigate", "go2rtc", "nginx"] as const;
export type LogType = (typeof logTypes)[number];