dockerstats
dockerstats copied to clipboard
Monitor Docker container statistics, including memory and CPU usage, from Go!
Currently stats are retrieved by polling the `docker stats` CLI command. This is slow and expensive, requiring the Docker CLI to load up, fetch stats, and shut down each time....
I'm using MacOS, and Docker path is different from package default. Instead of just passing configuration, I need to create Monitor and CliCommunicator instance by myself. Also, I'm not able...
In addition to the Container ID, it would be nice to get also container name
When running multiple containers it can get pretty noisy having a constant stream of stats you may not care about. One potential solution is to provide a specific container ID...