Power Monitoring for a Docker Container
nee1k opened this issue · 3 comments
nee1k commented
Is there a way to monitor the power consumption of Docker containers running on Jetson devices using jtop.
I would like jtop to include container-specific power monitoring for CPU and GPU usage.
This feature would help users monitor power usage for containerized AI or edge applications on Jetson devices more efficiently.
rbonghi commented
Hi @nee1k
You can run jtop from Docker
You can try this test:
- Install jetson-stats on your host
- Install jetson-stats on your container as well
- Pass to your container /run/jtop.sock:/run/jtop.sock
docker run --rm -it -v /run/jtop.sock:/run/jtop.sock rbonghi/jetson_stats:latest
More details are here: https://rnext.it/jetson_stats/docker.html
nee1k commented
Thank you for replying.
Does the above method measure the power consumption of the entire jetson or just the docker container?