Documentation ¶ Index ¶ Constants Variables type Config type Filter type SortBy Constants ¶ View Source const ( KUBECONFIG_ENV_NAME = "kubeconfig" ) Variables ¶ View Source var ( DefaultRefreshInterval = time.Second * 5 ) Functions ¶ This section is empty. Types ¶ type Config ¶ type Config struct { RefreshInterval time.Duration Filters Filter SortBy SortBy Kubeconfig string } type Filter ¶ type Filter struct { // filter by namespace Namespace string // filter by pod Pod string // filter by container Container string } type SortBy ¶ type SortBy struct { // sort by cpu Cpu bool // sort by cpu utilization CpuUtilization bool // sort by memory Mem bool // sort by memory utilization MemUtilization bool // sort by pod name PodName bool } Source Files ¶ View all Source files config.go Click to show internal directories. Click to hide internal directories.