I want to display pod details in the following format using promql/Prometheus.
Furthermore, I want to display CPU and memory utilization of application/component in below format using promql
promql query: sum(container_memory_working_set_bytes) by (pod)
I can get the consumed memory by pod using above query.
How to calculate percentage of memory used ? I am not able to fetch memory limit of stateful pod using promql Could you please suggest any query/API details ?

