Is there any good way to see what worker a task is...
# prefect-cloud
j
Is there any good way to see what worker a task is running on, and how many tasks a worker is running?
so my current approach is to tag a task with the host name:
Copy code
async def monitor_page_flow(url: str):
    host = socket.gethostname()
    with tags(host):
        await monitor_page(url)
But interestingly, while this tag will show next to the task run, the tag doesn't populate the filter. It seems only tags that are in the attributes of the task will be shown in the UI filter.
image.png