-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New column with item's processing time in a task (#1904) #1907
Conversation
Thank you @tc-wleite! Wouldn't it be better to use evidence ID or evidence object instance itself instead of its path to check if the evidence changed? |
Yes, I will make this change. |
I changed to use the item ID, concatenated with the task name. |
A while ago I realized this may not work so well with CarverTask because it pauses processing the parent item and process carved items immediately in the same Worker, so the new stat of parent items would be reset several times. Not sure if it is a real problem since the goal is to detect long frozen times executing the exact same job. What do you think @tc-wleite? |
The idea was to present some information about how long a task is running for a given item, without adding any control overhead or modifications in tasks' code. |
Agreed, seems fine to me too given the goal!
I noticed this implementation approach (just local changes) and liked it very much! Thank you @tc-wleite! |
Closes #1904.