minimumGCAge=flag.Duration("minimum_container_ttl_duration",0,"Minimum age for a finished container before it is garbage collected. Examples: '300ms', '10s' or '2h45m'")
maxContainerCount=flag.Int("maximum_dead_containers_per_container",5,"Maximum number of old instances of a container to retain per container. Each container takes up some disk space. Default: 5.")
authPath=flag.String("auth_path","","Path to .kubernetes_auth file, specifying how to authenticate to API server.")
cAdvisorPort=flag.Uint("cadvisor_port",4194,"The port of the localhost cAdvisor endpoint")
Heapster enables monitoring of Kubernetes Clusters using [cAdvisor](https://github.com/google/cadvisor). Detailed information about heapster can be found [here](https://github.com/GoogleCloudPlatform/heapster).
Heapster enables monitoring of Kubernetes Clusters using [cAdvisor](https://github.com/google/cadvisor). The kubelet will communicate with an instance of cAdvisor running on localhost and proxy container stats to Heapster. Kubelet will attempt to connect to cAdvisor on port 4194 by default but this port can be configured with kubelet's `-cadvisor_port` run flag. Detailed information about heapster can be found [here](https://github.com/GoogleCloudPlatform/heapster).