1# Copyright (c) 2025 Analog Devices, Inc. 2# 3# SPDX-License-Identifier: Apache-2.0 4 5menuconfig CPU_LOAD_METRIC 6 bool "CPU Load Metric" 7 select EXPERIMENTAL 8 select THREAD_RUNTIME_STATS 9 select SCHED_THREAD_USAGE 10 select SCHED_THREAD_USAGE_ALL 11 select SCHED_THREAD_USAGE_AUTO_ENABLE 12 help 13 Tracking of CPU load statistics. 14 15if CPU_LOAD_METRIC 16 17module = CPU_LOAD 18module-str = CPU Load Metric 19source "subsys/logging/Kconfig.template.log_config" 20 21endif # CPU_LOAD_METRIC 22