On Monday, 31 August 2020 11:31:39 UTC+1, Redneck_prm wrote: > > disk is some network storage >
Meaning what exactly: block storage like iSCSI for example? Prometheus does not work well with NFS storage. I am curious why ps and top slow inside the container? What they need? > In that case, it's clearly not a prometheus problem, it's something to do with your container or your k8s environment. Try using strace to see the system calls, e.g. strace -s 128 -f ps ....etc... 2>strace.out then go through the calls in strace.out. Adding "-ttt" can give you better timestamps. Some possibilities: a problem with DNS; a problem with uid/gid resolution in nsswitch (especially if you're using something like an LDAP backend); a problem with one of your filesystems. -- You received this message because you are subscribed to the Google Groups "Prometheus Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/1cb052ce-7e0a-4fc6-a0bb-4e23a2b91d92o%40googlegroups.com.

