Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MONITOR (0.22 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	actionLabel := monitor.ActionLabelNone
    	start := time.Now()
    	defer func() {
    		errorLabel := monitor.ErrorLabelNone
    		if retErr != nil {
    			// In case of error, set "internal" as default.
    			errorLabel = monitor.ErrorLabelInternal
    		}
    		if errors.Is(retErr, errSpec) {
    			errorLabel = monitor.ErrorLabelSpec
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

            $custom_plugin_monitors += @("${npd_dir}\config\windows-defender-monitor.json")
    
            # System Stats Monitors
            $system_stats_monitors += @("${npd_dir}\config\windows-system-stats-monitor.json")
    
            # NPD Configuration for CRI monitor
            $system_log_monitors += @("${npd_dir}\config\windows-containerd-monitor-filelog.json")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    	// We pass syncPeriod to ipt.Monitor, which will call us only if it needs to.
    	// We need to pass *some* maxInterval to NewBoundedFrequencyRunner anyway though.
    	// time.Hour is arbitrary.
    	proxier.syncRunner = async.NewBoundedFrequencyRunner("sync-runner", proxier.syncProxyRules, minSyncPeriod, time.Hour, burstSyncs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    	"--namespace-sync-period=10m",
    	"--node-cidr-mask-size=48",
    	"--node-cidr-mask-size-ipv4=48",
    	"--node-cidr-mask-size-ipv6=108",
    	"--node-eviction-rate=0.2",
    	"--node-monitor-grace-period=30s",
    	"--node-monitor-period=10s",
    	"--node-startup-grace-period=30s",
    	"--profiling=false",
    	"--pv-recycler-increment-timeout-nfs=45",
    	"--pv-recycler-minimum-timeout-hostpath=45",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// nodeMonitorGracePeriod.
    	// TODO: Change node health monitor to watch based.
    	nodeMonitorPeriod time.Duration
    
    	// When node is just created, e.g. cluster bootstrap or node creation, we give
    	// a longer grace period.
    	nodeStartupGracePeriod time.Duration
    
    	// Controller will not proactively sync node health, but will monitor node
    	// health signal updated from kubelet. There are 2 kinds of node healthiness
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		result = append(result, prevTriggerValue)
    	}
    	return result, true
    }
    
    func (c *Cacher) processEvent(event *watchCacheEvent) {
    	if curLen := int64(len(c.incoming)); c.incomingHWM.Update(curLen) {
    		// Monitor if this gets backed up, and how much.
    		klog.V(1).Infof("cacher (%v): %v objects queued in incoming channel.", c.groupResource.String(), curLen)
    	}
    	c.incoming <- *event
    }
    
    func (c *Cacher) dispatchEvents() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top