Add executor, hostname, and queue columns to TaskInstances page#55922
Conversation
dheerajturaga
commented
Sep 20, 2025
- Add executor column to display task instance executor information
- Add hostname column to show where task instance ran
- Add queue column to display task instance queue assignment
- Add executor column to display task instance executor information - Add hostname column to show where task instance ran - Add queue column to display task instance queue assignment
jscheffl
left a comment
There was a problem hiding this comment.
Thanks for adding these columns. I think these are useful also in my use cases.
Unfortuantely the table by this is grwoing in width such that even a FHD screen in the browser is not sufficient anymore to display all columns w/o a horizontal scrollbar. So I think these columns should be added only optional (and one or two existing might also need to be flagged optional) - meaning rendered on demand only.
Can you add a flag such that the three columns are only displayed when selected and not per default?
|
@jscheffl, yes I can do that! In a follow up PR, I want to add search by queue/hostname aswell. My need is to be able to monitor tasks which are landing on specific machines and queues I guess with these the edge jobs page may become redundant |
|
@jscheffl , I disabled these columns by default
|
jscheffl
left a comment
There was a problem hiding this comment.
Thanks for the extension and the re-work!
In a follow up PR, I want to add search by queue/hostname aswell.
Be careful adding this - the columns queue and hostname have NO index on the DB per default, so if you have millions of tasks and you make a "naive" search for any hostname, it will be a full-table-scan over all task instances.
* Add executor, hostname, and queue columns to TaskInstances page - Add executor column to display task instance executor information - Add hostname column to show where task instance ran - Add queue column to display task instance queue assignment * Disable new columns by default (cherry picked from commit 62cccb9)
