Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for UNHEALTHY (0.18 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. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/policy/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // 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".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/policy/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // 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".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // 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".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/collectors/volume_stats.go

    		metrics.BuildFQName("", kubeletmetrics.KubeletSubsystem, kubeletmetrics.VolumeStatsHealthStatusAbnormalKey),
    		"Abnormal volume health status. The count is either 1 or 0. 1 indicates the volume is unhealthy, 0 indicates volume is healthy",
    		[]string{"namespace", "persistentvolumeclaim"}, nil,
    		metrics.ALPHA, "")
    )
    
    type volumeStatsCollector struct {
    	metrics.BaseStableCollector
    
    	statsProvider serverstats.Provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. pkg/probe/exec/exec_test.go

    		// Ok - truncated output
    		{probe.Success, false, true, elevenKilobyte, tenKilobyte, nil},
    		// Run returns error
    		{probe.Unknown, true, true, "", "", fmt.Errorf("test error")},
    		// Unhealthy
    		{probe.Failure, false, true, "Fail", "", &fakeExitError{true, 1}},
    		// Timeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top