Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 394 for Healthy (0.28 sec)

  1. cmd/healthcheck-handler.go

    	}
    	result := objLayer.Health(ctx, opts)
    	w.Header().Set(xhttp.MinIOWriteQuorum, strconv.Itoa(result.WriteQuorum))
    	w.Header().Set(xhttp.MinIOStorageClassDefaults, strconv.FormatBool(result.UsingDefaults))
    	// return how many drives are being healed if any
    	if result.HealingDrives > 0 {
    		w.Header().Set(xhttp.MinIOHealingDrives, strconv.Itoa(result.HealingDrives))
    	}
    	if !result.Healthy {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

            return null;
          }
        }
    
        @GET
        @Path("/health")
        public Response health() {
            return Response.ok().type(MediaType.APPLICATION_JSON).entity("{\"status\": \"Reviews is healthy\"}").build();
        }
    
        @GET
        @Path("/reviews/{productId}")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/volume_stats_test.go

    		# TYPE kubelet_volume_stats_used_bytes gauge
    		# HELP kubelet_volume_stats_health_status_abnormal [ALPHA] Abnormal volume health status. The count is either 1 or 0. 1 indicates the volume is unhealthy, 0 indicates volume is healthy
    		# TYPE kubelet_volume_stats_health_status_abnormal gauge
    	`
    
    	var (
    		podStats = []statsapi.PodStats{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/vm_test.go

    				d := fmt.Sprintf("%s-%s", autoVM.Config().Service, "v1")
    				scaleDeploymentOrFail(t, d, autoVM.Config().Namespace.Name(), 0)
    				// it should take at most just over GracePeriod to cleanup if all pilots are healthy
    				retry.UntilSuccessOrFail(t, func() error {
    					if len(getWorkloadEntriesOrFail(t, autoVM)) > 0 {
    						return errors.New("expected 0 WorkloadEntries")
    					}
    					return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/multicluster_test.go

    						return fmt.Errorf("container %s in %s is not started", status.Name, pod)
    					}
    				}
    				return nil
    			}, retry.Timeout(5*time.Minute), retry.Delay(time.Second))
    
    			// make sure the pod comes up healthy
    			retry.UntilSuccessOrFail(t, func() error {
    				pod, err := pods.Get(context.TODO(), pod, metav1.GetOptions{})
    				if err != nil {
    					return err
    				}
    				status := pod.Status.ContainerStatuses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/container_manager.go

    	GetCapacity(localStorageCapacityIsolation bool) v1.ResourceList
    
    	// GetDevicePluginResourceCapacity returns the node capacity (amount of total device plugin resources),
    	// node allocatable (amount of total healthy resources reported by device plugin),
    	// and inactive device plugin resources previously registered on the node.
    	GetDevicePluginResourceCapacity() (v1.ResourceList, v1.ResourceList, []string)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. cluster/gce/gci/health-monitor.sh

    if [[ "$#" -ne 1 ]]; then
      echo "Usage: health-monitor.sh <container-runtime/kubelet>"
      exit 1
    fi
    
    KUBE_HOME="/home/kubernetes"
    KUBE_ENV="${KUBE_HOME}/kube-env"
    if [[ ! -e "${KUBE_ENV}" ]]; then
      echo "The ${KUBE_ENV} file does not exist!! Terminate health monitoring"
      exit 1
    fi
    
    SLEEP_SECONDS=10
    component=$1
    echo "Start kubernetes health monitoring for ${component}"
    source "${KUBE_ENV}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 09:19:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/health.go

    func CheckClusterHealth(client clientset.Interface, cfg *kubeadmapi.ClusterConfiguration, ignoreChecksErrors sets.Set[string], printer output.Printer) error {
    	_, _ = printer.Println("[upgrade] Running cluster health checks")
    
    	healthChecks := []preflight.Checker{
    		&healthCheck{
    			name:   "CreateJob",
    			client: client,
    			cfg:    cfg,
    			f:      createJob,
    		},
    		&healthCheck{
    			name:   "ControlPlaneNodesReady",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/healthcheck.go

    import (
    	"encoding/json"
    	"fmt"
    )
    
    // etcdHealth encodes data returned from etcd /healthz handler.
    type etcdHealth struct {
    	// Note this has to be public so the json library can modify it.
    	Health string `json:"health"`
    }
    
    // EtcdHealthCheck decodes data returned from etcd /healthz handler.
    // Deprecated: Validate health by passing storagebackend.Config directly to storagefactory.CreateProber.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. cmd/metrics-v3-cluster-health.go

    		"Count of offline nodes in the cluster")
    	healthNodesOnlineCountMD = NewGaugeMD(healthNodesOnlineCount,
    		"Count of online nodes in the cluster")
    )
    
    // loadClusterHealthNodeMetrics - `MetricsLoaderFn` for cluster health node
    // metrics.
    func loadClusterHealthNodeMetrics(ctx context.Context, m MetricValues,
    	c *metricsCache,
    ) error {
    	nodesUpDown, _ := c.nodesUpDown.Get()
    
    	m.Set(healthNodesOfflineCount, float64(nodesUpDown.Offline))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top