mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-27 22:29:02 +03:00
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / Jetson Jetpack 6 (push) Waiting to run
* Pin ruff * Add python upgrade fixes This enables python upgrade checks in ruff to look for deprecated types and patterns. This namely fixes: - usage of deprecated `Typing` which is now built in - some specific exceptions which are caught and have new aliases Some specific UP checks were also ignored as they are stylistic / unimportant and likely to cause bugs * Remove async blocking calls Use asyncio.to_thread on two remaining blocking calls to fix hanging event thread loop. Enable this specific rule to block it in the future. * Use proper logging mechanism * Correctly format logs * Raise with context When raising an exception include the from context to improve debugging * Cleanup
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
from pydantic import Field
|
|
|
|
from .base import FrigateBaseModel
|
|
|
|
__all__ = ["TelemetryConfig", "StatsConfig"]
|
|
|
|
|
|
class StatsConfig(FrigateBaseModel):
|
|
amd_gpu_stats: bool = Field(
|
|
default=True,
|
|
title="AMD GPU stats",
|
|
description="Enable collection of AMD GPU statistics if an AMD GPU is present.",
|
|
)
|
|
intel_gpu_stats: bool = Field(
|
|
default=True,
|
|
title="Intel GPU stats",
|
|
description="Enable collection of Intel GPU statistics if an Intel GPU is present.",
|
|
)
|
|
network_bandwidth: bool = Field(
|
|
default=False,
|
|
title="Network bandwidth",
|
|
description="Enable per-process network bandwidth monitoring for camera ffmpeg processes and detectors (requires capabilities).",
|
|
)
|
|
intel_gpu_device: str | None = Field(
|
|
default=None,
|
|
title="Intel GPU device",
|
|
description="PCI bus address or DRM device path (e.g. /dev/dri/card1) used to pin Intel GPU stats to a specific device when multiple are present.",
|
|
)
|
|
|
|
|
|
class TelemetryConfig(FrigateBaseModel):
|
|
network_interfaces: list[str] = Field(
|
|
default=[],
|
|
title="Network interfaces",
|
|
description="List of network interface name prefixes to monitor for bandwidth statistics.",
|
|
)
|
|
stats: StatsConfig = Field(
|
|
default_factory=StatsConfig,
|
|
title="System stats",
|
|
description="Options to enable/disable collection of various system and GPU statistics.",
|
|
)
|
|
version_check: bool = Field(
|
|
default=True,
|
|
title="Version check",
|
|
description="Enable an outbound check to detect if a newer Frigate version is available.",
|
|
)
|