You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have servers that I am running collection tasks on, and each server is one of several types. Collection tasks could range from <1sec to >5mins each, and the total number of such tasks is dynamic and depends on things like the number of log files in directories, the state of the system and the program's flags enabled more or less options.
I'd like to create progress bars for each group of node types (there could be 1000's of nodes, but <10 node types) with an ETA and a percentage. I'm having trouble figuring out how to use EWMA with a bar total = 0.
Is this something possible, or would you recommend a different approach?
If possible, which example best suites this type of use case?
The text was updated successfully, but these errors were encountered:
I think it's not possible to measure ETA if you don't know total at all. If you get it at a later point then it's ok.
I recommend first to try Average ETA in any case, then if you really need EWMA read their corresponding documentation.
Hello, thank you for your work on this library.
I have servers that I am running collection tasks on, and each server is one of several types. Collection tasks could range from <1sec to >5mins each, and the total number of such tasks is dynamic and depends on things like the number of log files in directories, the state of the system and the program's flags enabled more or less options.
I'd like to create progress bars for each group of node types (there could be 1000's of nodes, but <10 node types) with an ETA and a percentage. I'm having trouble figuring out how to use EWMA with a bar
total = 0
.The text was updated successfully, but these errors were encountered: