mirror of
https://github.com/esphome/esphome.git
synced 2025-09-14 01:02:19 +01:00
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
"""
|
|
Runtime statistics component for ESPHome.
|
|
"""
|
|
|
|
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_ID
|
|
|
|
DEPENDENCIES = []
|
|
|
|
CONF_LOG_INTERVAL = "log_interval"
|
|
|
|
runtime_stats_ns = cg.esphome_ns.namespace("runtime_stats")
|
|
RuntimeStatsCollector = runtime_stats_ns.class_("RuntimeStatsCollector")
|
|
|
|
CONFIG_SCHEMA = cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(RuntimeStatsCollector),
|
|
cv.Optional(
|
|
CONF_LOG_INTERVAL, default=60000
|
|
): cv.positive_time_period_milliseconds,
|
|
}
|
|
)
|
|
|
|
|
|
def FILTER_SOURCE_FILES() -> list[str]:
|
|
"""Filter out runtime_stats.cpp when not enabled."""
|
|
# When runtime_stats component is not included in the configuration,
|
|
# we don't want to compile runtime_stats.cpp
|
|
# This function is called when the component IS included, so we return
|
|
# an empty list to include all source files
|
|
return []
|
|
|
|
|
|
async def to_code(config):
|
|
"""Generate code for the runtime statistics component."""
|
|
# Define USE_RUNTIME_STATS when this component is used
|
|
cg.add_define("USE_RUNTIME_STATS")
|
|
|
|
# Create the runtime stats instance (constructor sets global_runtime_stats)
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
|
|
cg.add(var.set_log_interval(config[CONF_LOG_INTERVAL]))
|