Arif A.
Arif A.

Reputation: 993

Docker container health monitoring

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.

Upvotes: 0

Views: 4449

Answers (3)

jhhwang
jhhwang

Reputation: 1

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

Upvotes: 0

Brayan Caldera
Brayan Caldera

Reputation: 2199

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

Upvotes: 0

Daein Park
Daein Park

Reputation: 4693

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

Upvotes: 4

Related Questions