// if the long duration is persistent either because of slow
// disk or lots of containers.
longOp=longOp+time.Second
klog.V(2).Infof("du and find on following dirs took %v: %v; will not log again for this container unless duration exceeds %v",duration,[]string{fh.rootfs,fh.extraDir},longOp)
klog.V(2).Infof("fs: disk usage and inodes count on following dirs took %v: %v; will not log again for this container unless duration exceeds %v",duration,[]string{fh.rootfs,fh.extraDir},longOp)
// The raw factory can handle any container. If --docker_only is set to false, non-docker containers are ignored.
// The raw factory can handle any container. If --docker_only is set to true, non-docker containers are ignored except for "/" and those whitelisted by raw_cgroup_prefix_whitelist flag.
varglobalHousekeepingInterval=flag.Duration("global_housekeeping_interval",1*time.Minute,"Interval between global housekeepings")
varupdateMachineInfoInterval=flag.Duration("update_machine_info_interval",5*time.Minute,"Interval between machine info updates.")
varlogCadvisorUsage=flag.Bool("log_cadvisor_usage",false,"Whether to log the usage of the cAdvisor container")
vareventStorageAgeLimit=flag.String("event_storage_age_limit","default=24h","Max length of time for which to store events (per type). Value is a comma separated list of key values, where the keys are event types (e.g.: creation, oom) or \"default\" and the value is a duration. Default is applied to all non-specified event types")
vareventStorageEventLimit=flag.String("event_storage_event_limit","default=100000","Max number of events to store (per type). Value is a comma separated list of key values, where the keys are event types (e.g.: creation, oom) or \"default\" and the value is an integer. Default is applied to all non-specified event types")