You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although we have pod level detail within k8s, there are times it may be necessary to understanding the process level utilisation of CPU and memory within the pod/container to assess inefficiencies.
At present, one would need to instruct the customer to access the pod to run various commands which can be prone to error.
Describe the solution you'd like
The objective of this issue is to explore collecting pod specific process information such as ps output, memory etc.
The text was updated successfully, but these errors were encountered:
Some of the commands that have been asked to run are below, it would be nice to have all of this in the support package if needed. cat /sys/fs/cgroup/memory.stat from within a Ingress Controller pod for p in $(pidof nginx nginx-ingress); do sudo pmap ${p} -X; done from the k8s node running the Ingress Controller pods for p in $(pidof nginx nginx-ingress); do cat /proc/${p}/status; done since azure was unable to run the command above
Collect the following information from the API endpoint from the pods:
Although we have pod level detail within k8s, there are times it may be necessary to understanding the process level utilisation of CPU and memory within the pod/container to assess inefficiencies.
At present, one would need to instruct the customer to access the pod to run various commands which can be prone to error.
Describe the solution you'd like
The objective of this issue is to explore collecting pod specific process information such as ps output, memory etc.
The text was updated successfully, but these errors were encountered: