netdata / helmchart

Helm chart for kubernetes deployments
GNU General Public License v3.0
167 stars 75 forks source link

GPU Monitoring #144

Closed woojeonghoon closed 4 years ago

woojeonghoon commented 4 years ago

When running with docker

docker run -d --name=netdata \ -p 19999:19999 \ -v /proc:/host/proc:ro \ -v /sys:/host/sys:ro \ -v /var/run/docker.sock:/var/run/docker.sock:ro \ -e PGID=999 \ -e NVIDIA_VISIBLE_DEVICES=all \ -e DO_NOT_TRACK= \ --cap-add SYS_PTRACE \ --security-opt apparmor=unconfined \ d34dc3n73r/netdata-glibc

I was able to see the GPU usage with the command "NVIDIA_VISIBLE_DEVICES=all".

image

In Kubernetes environment How can I check the GPU status?

ncmans commented 4 years ago

GPU monitoring for prometheus as a guide on how to support this:

https://github.com/yahoojapan/gpu-monitoring-exporter

woojeonghoon commented 4 years ago

I solved it by correcting the image