Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for UNHEALTHY (0.19 sec)

  1. cmd/metrics-v3-cluster-erasure-set.go

    	erasureSetReadHealthMD = NewGaugeMD(erasureSetReadHealth,
    		"Health of the erasure set in a pool for read operations (1=healthy, 0=unhealthy)",
    		poolIDL, setIDL)
    	erasureSetWriteHealthMD = NewGaugeMD(erasureSetWriteHealth,
    		"Health of the erasure set in a pool for write operations (1=healthy, 0=unhealthy)",
    		poolIDL, setIDL)
    )
    
    func b2f(v bool) float64 {
    	if v {
    		return 1
    	}
    	return 0
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. samples/bookinfo/src/docker-bake.hcl

        args = {
          service_version = "v-unavailable"
        }
        source = "ratings"
      },
      {
        name = "examples-bookinfo-ratings-v-unhealthy"
        args = {
          service_version = "v-unhealthy"
        }
        source = "ratings"
      },
    
      // mysql
      {
        name   = "examples-bookinfo-mysqldb"
        source = "mysql"
      },
    
      // mongo
      {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/eds_test.go

    			validateEndpoints := func(expectPush bool, healthy []string, unhealthy []string) {
    				t.Helper()
    				// Normalize lists to make comparison easier
    				if healthy == nil {
    					healthy = []string{}
    				}
    				if unhealthy == nil {
    					unhealthy = []string{}
    				}
    				sort.Strings(healthy)
    				sort.Strings(unhealthy)
    				if expectPush {
    					upd, err := adscon.Wait(5*time.Second, v3.EndpointType)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

    /**
     * A {@link DaemonExpirationStrategy} which monitors daemon health and expires the daemon
     * whenever unhealthy conditions are detected. Currently, this strategy monitors JVM memory
     * health by detecting GC thrashing and excessive heap or metaspace usage. In addition to
     * expiring the daemon, whenever unhealthy conditions are detected, this strategy will
     * print a warning log to the console informing the user of the issue and instructing them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control.go

    		if !isHealthy(condemned[i]) {
    			unhealthy++
    			if firstUnhealthyPod == nil {
    				firstUnhealthyPod = condemned[i]
    			}
    		}
    	}
    
    	if unhealthy > 0 {
    		logger.V(4).Info("StatefulSet has unhealthy Pods", "statefulSet", klog.KObj(set), "unhealthyReplicas", unhealthy, "pod", klog.KObj(firstUnhealthyPod))
    	}
    
    	// If the StatefulSet is being deleted, don't do anything other than updating
    	// status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction_test.go

    			prc: &api.PodCondition{
    				Type:   api.PodReady,
    				Status: api.ConditionTrue,
    			},
    		},
    		{
    			name: "matching pdbs with no disruptions allowed, pod running, pod unhealthy, unhealthy pod ours",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "default"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy_test.go

    	test.SetForTest(t, &features.ValidateWorkloadEntryIdentity, false)
    	healthy := &discovery.DiscoveryRequest{TypeUrl: v3.HealthInfoType}
    	unhealthy := &discovery.DiscoveryRequest{
    		TypeUrl: v3.HealthInfoType,
    		ErrorDetail: &google_rpc.Status{
    			Code:    500,
    			Message: "unhealthy",
    		},
    	}
    	node := model.NodeMetadata{
    		AutoRegisterGroup: "group",
    		Namespace:         "default",
    		InstanceIPs:       []string{"1.1.1.1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. pkg/kubelet/events/event.go

    )
    
    // Image manager event reason list
    const (
    	InvalidDiskCapacity = "InvalidDiskCapacity"
    	FreeDiskSpaceFailed = "FreeDiskSpaceFailed"
    )
    
    // Probe event reason list
    const (
    	ContainerUnhealthy    = "Unhealthy"
    	ContainerProbeWarning = "ProbeWarning"
    )
    
    // Pod worker event reason list
    const (
    	FailedSync = "FailedSync"
    )
    
    // Config event reason list
    const (
    	FailedValidation = "FailedValidation"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

        /**
         * @return true if daemon is single use daemon, false otherwise
         */
        boolean isSingleUse();
    
        /**
         * Invokes the given action when the Daemon becomes unhealthy in way that requires it be terminated at the end of the build.
         * <p>
         * The action will be invoked at-most once during a build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1/types.go

    	// +optional
    	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"bytes,3,opt,name=maxUnavailable"`
    
    	// UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
    	// should be considered for eviction. Current implementation considers healthy pods,
    	// as pods that have status.conditions item with type="Ready",status="True".
    	//
    	// Valid policies are IfHealthyBudget and AlwaysAllow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top