mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
20 lines
486 B
TypeScript
20 lines
486 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const telemetry: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
sectionDocs: "/configuration/reference",
|
||
|
|
restartRequired: [
|
||
|
|
"network_interfaces",
|
||
|
|
"stats.amd_gpu_stats",
|
||
|
|
"stats.intel_gpu_stats",
|
||
|
|
"stats.intel_gpu_device",
|
||
|
|
"stats.network_bandwidth",
|
||
|
|
"version_check",
|
||
|
|
],
|
||
|
|
fieldOrder: ["network_interfaces", "stats", "version_check"],
|
||
|
|
advancedFields: [],
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default telemetry;
|