Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 207 for MONITOR (0.13 sec)

  1. pkg/controller/podautoscaler/monitor/monitor.go

    )
    
    // Monitor records some metrics so that people can monitor HPA controller.
    type Monitor interface {
    	ObserveReconciliationResult(action ActionLabel, err ErrorLabel, duration time.Duration)
    	ObserveMetricComputationResult(action ActionLabel, err ErrorLabel, duration time.Duration, metricType v2.MetricSourceType)
    }
    
    type monitor struct{}
    
    func New() Monitor {
    	return &monitor{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:47:24 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Monitor.java

        @Weak final Monitor monitor;
        final Condition condition;
    
        @GuardedBy("monitor.lock")
        int waiterCount = 0;
    
        /** The next active guard */
        @GuardedBy("monitor.lock")
        @CheckForNull
        Guard next;
    
        protected Guard(Monitor monitor) {
          this.monitor = checkNotNull(monitor, "monitor");
          this.condition = monitor.lock.newCondition();
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/memory/monitor.go

    	sync bool
    }
    
    // NewMonitor returns new Monitor implementation with a default event buffer size.
    func NewMonitor(store model.ConfigStore) Monitor {
    	return newBufferedMonitor(store, BufferSize, false)
    }
    
    // NewMonitor returns new Monitor implementation which will process events synchronously
    func NewSyncMonitor(store model.ConfigStore) Monitor {
    	return newBufferedMonitor(store, BufferSize, true)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/monitor/monitor.go

    }
    
    var log = istiolog.RegisterScope("monitor", "file configuration monitor")
    
    // NewMonitor creates a Monitor and will delegate to a passed in controller.
    // The controller holds a reference to the actual store.
    // Any func that returns a []*model.Config can be used with the Monitor
    func NewMonitor(name string, delegateStore model.ConfigStore, getSnapshotFunc func() ([]*config.Config, error), root string) *Monitor {
    	monitor := &Monitor{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/Monitor.java

        @Weak final Monitor monitor;
        final Condition condition;
    
        @GuardedBy("monitor.lock")
        int waiterCount = 0;
    
        /** The next active guard */
        @GuardedBy("monitor.lock")
        @CheckForNull
        Guard next;
    
        protected Guard(Monitor monitor) {
          this.monitor = checkNotNull(monitor, "monitor");
          this.condition = monitor.lock.newCondition();
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	// every extra conditional branch creates a risk that the
    	// recursively executed child program will behave not like the
    	// monitor but like the application. If the child process
    	// exits before calling Start, then the parent application
    	// will not have a monitor, and its crash reports will be
    	// discarded (written in to a pipe that is never read).
    	//
    	// So for now, we use this constant string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. internal/bucket/bandwidth/monitor.go

    import (
    	"context"
    	"sync"
    	"time"
    
    	"golang.org/x/time/rate"
    )
    
    //msgp:ignore bucketThrottle Monitor
    
    type bucketThrottle struct {
    	*rate.Limiter
    	NodeBandwidthPerSec int64
    }
    
    // Monitor holds the state of the global bucket monitor
    type Monitor struct {
    	tlock sync.RWMutex // mutex for bucket throttling
    	mlock sync.RWMutex // mutex for bucket measurement
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. cluster/gce/gci/health-monitor.sh

      # killing the container runtime.
      until timeout 60 "${healthcheck_command[@]}" > /dev/null; do
        if (( attempt == max_attempts )); then
          echo "Max attempt ${max_attempts} reached! Proceeding to monitor container runtime healthiness."
          break
        fi
        echo "$attempt initial attempt \"${healthcheck_command[*]}\"! Trying again in $attempt seconds..."
        sleep "$(( 2 ** attempt++ ))"
      done
      while true; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 09:19:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. cluster/images/etcd-version-monitor/etcd-version-monitor.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: etcd-version-monitor
      namespace: kube-system
    spec:
      hostNetwork: true
      containers:
      - name: etcd-version-monitor
        image: registry.k8s.io/etcd-version-monitor:0.1.3
        command:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 255 bytes
    - Viewed (0)
  10. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    			"grpc_server_handling_seconds": {},
    		},
    	}
    )
    
    // monitorGatherer is a custom metric gatherer for prometheus that exports custom metrics
    // defined by this monitor as well as rewritten etcd metrics.
    type monitorGatherer struct {
    	exported map[string]*exportedMetric
    }
    
    // exportedMetric identifies a metric that is exported and defines how it is rewritten before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top