I'm running multiple clusters of Kubernetes in GKE. I'm using a heapster + influxdb to get metrics on pods performances. What is the recommended way to get and store cluster wide metrics like:
- number of pods in namespace
- total memory requested/limits per namespace
- total cpu requested/limits per namespace
- total memory requested/limits per node
- total cpu requested/limits per node
- number of pod per state (running, pending, etc)
AFAIK this is out of the scope of heapster but we need to keep an eye on this to understand the state of the cluster.
Thanks!