:orphan: .. title:: CONFIG_THREAD_ANALYZER_AUTO_INTERVAL .. kconfig:: CONFIG_THREAD_ANALYZER_AUTO_INTERVAL CONFIG_THREAD_ANALYZER_AUTO_INTERVAL #################################### *Thread analysis interval* Type: ``int`` Help ==== .. code-block:: none The time in seconds to call thread analyzer periodic printing function. Direct dependencies =================== \ :kconfig:`THREAD_ANALYZER_AUTO ` && \ :kconfig:`THREAD_ANALYZER ` *(Includes any dependencies from ifs and menus.)* Default ======= - 60 Kconfig definition ================== At ``/debug/Kconfig:70`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:17`` Menu path: (Top) → Sub Systems and OS Services → System Monitoring Options → Enable Thread analyzer → Run periodic thread analysis in a thread .. code-block:: kconfig config THREAD_ANALYZER_AUTO_INTERVAL int "Thread analysis interval" range 5 3600 default 60 depends on THREAD_ANALYZER_AUTO && THREAD_ANALYZER help The time in seconds to call thread analyzer periodic printing function. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*