0

What are the tools available to monitor docker container resource consumption? Recently, application containerization is becoming more popular ever since Docker came. But, it's important to collect resource consumption of containers to benchmark different applications.

Arif A.
  • 933
  • 8
  • 14

3 Answers3

4

My recommedation is cAdvisor that already used by kubernetes node monitoring and OpenShift metrics engines. And Prometheus is also popular, the information is taken easily from searching google.

cAdvisor

[ https://github.com/google/cadvisor ]

Example links

Daein Park
  • 4,393
  • 2
  • 12
  • 21
0

If you want to see the resources consumption of your containers you can execute the command docker stats on your terminal it returns CPU, memory, network usage by container

Brayan Caldera
  • 2,001
  • 2
  • 11
  • 20
0

NexClipper is the simple and easy container monitoring tool which to collects statistics, status, process, network, environment, volume, and log.

https://github.com/TheNexCloud/NexClipper

  • 2
    Generally, links to a tool or library [should be accompanied by usage notes, a specific explanation of how the linked resource is applicable to the problem, or some sample code](http://meta.stackoverflow.com/a/251605/584192), or if possible all of the above. – Samuel Liew Jul 09 '18 at 12:12