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.
- Is this something possible, or would you recommend a different approach?
- If possible, which example best suites this type of use case?
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.