hass-core/homeassistant/components/profiler/icons.json
J. Nick Koston 8bfcaf3524
Add service to log all the current asyncio Tasks to the profiler (#116389)
* Add service to log all the current asyncio Tasks to the profiler

I have been helping users look for a task leaks, and need a
way to examine tasks at run time as trying to get someone to
run Home Assistant and attach aiomonitor is too difficult in
many cases.

* cover
2024-04-29 10:03:35 -05:00

16 lines
561 B
JSON

{
"services": {
"start": "mdi:play",
"memory": "mdi:memory",
"start_log_objects": "mdi:invoice-text-plus",
"stop_log_objects": "mdi:invoice-text-remove",
"dump_log_objects": "mdi:invoice-export-outline",
"start_log_object_sources": "mdi:play",
"stop_log_object_sources": "mdi:stop",
"lru_stats": "mdi:chart-areaspline",
"log_current_tasks": "mdi:format-list-bulleted",
"log_thread_frames": "mdi:format-list-bulleted",
"log_event_loop_scheduled": "mdi:calendar-clock",
"set_asyncio_debug": "mdi:bug-check"
}
}