Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 394 for Healthy (0.18 sec)

  1. pkg/cluster/ports/ports.go

    	// TODO(roberthbailey): Remove this once we have a better solution for heapster.
    	KubeletReadOnlyPort = 10255
    	// KubeletHealthzPort exposes a healthz endpoint from the kubelet.
    	// May be overridden by a flag at startup.
    	KubeletHealthzPort = 10248
    	// ProxyHealthzPort is the default port for the proxy healthz server.
    	// May be overridden by a flag at startup.
    	ProxyHealthzPort = 10256
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:28:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. cluster/addons/metadata-agent/stackdriver/metadata-agent.yaml

          - image: gcr.io/stackdriver-agents/stackdriver-metadata-agent:0.2-0.0.21-1
            imagePullPolicy: IfNotPresent
            name: metadata-agent
            livenessProbe:
              httpGet:
                path: /healthz
                port: 8000
              initialDelaySeconds: 30
              periodSeconds: 60
              timeoutSeconds: 5
              failureThreshold: 1
              successThreshold: 1
            args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 07:45:36 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  3. samples/addons/README.md

    ```
    
    ## Addons
    
    ### Prometheus
    
    [Prometheus](https://prometheus.io/) is an open source monitoring system and time series database.
    You can use Prometheus with Istio to record metrics that track the health of Istio and of applications within the service mesh.
    You can visualize metrics using tools like [Grafana](#grafana) and [Kiali](#kiali).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/output.txt

                  backend                    *                       /stats/prometheus*     
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 378 bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/testing/testserver.go

    			return false, err
    		default:
    		}
    
    		result := client.CoreV1().RESTClient().Get().AbsPath("/healthz").Do(ctx)
    		status := 0
    		result.StatusCode(&status)
    		if status == 200 {
    			return true, nil
    		}
    		return false, nil
    	})
    	if err != nil {
    		return result, fmt.Errorf("failed to wait for /healthz to return ok: %v", err)
    	}
    
    	// from here the caller must call tearDown
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 10:35:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerJvmMemoryInfoSerializer.java

    import org.gradle.internal.serialize.Encoder;
    import org.gradle.internal.serialize.Serializer;
    import org.gradle.internal.serialize.SerializerRegistry;
    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    import org.gradle.process.internal.health.memory.JvmMemoryStatusSnapshot;
    
    import java.io.EOFException;
    
    public class WorkerJvmMemoryInfoSerializer {
        public static SerializerRegistry create() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/healthcheck_test.go

    package etcd3
    
    import (
    	"testing"
    )
    
    func TestEtcdHealthCheck(t *testing.T) {
    	tests := []struct {
    		data      string
    		expectErr bool
    	}{
    		{
    			data:      "{\"health\": \"true\"}",
    			expectErr: false,
    		},
    		{
    			data:      "{\"health\": \"false\"}",
    			expectErr: true,
    		},
    		{
    			data:      "invalid json",
    			expectErr: true,
    		},
    	}
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 02 08:39:12 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. pkg/proxy/healthcheck/service_health.go

    	// endpoints the service has on this node.
    	SyncEndpoints(newEndpoints map[types.NamespacedName]int) error
    }
    
    type proxierHealthChecker interface {
    	// IsHealthy returns the proxier's health state, following the same
    	// definition the HTTP server defines.
    	IsHealthy() bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 30 09:25:48 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. docs/metrics/README.md

    - Liveness probe available at `/minio/health/live`
    - Cluster probe available at `/minio/health/cluster`
    
    Read more on how to use these endpoints in [MinIO healthcheck guide](https://github.com/minio/minio/blob/master/docs/metrics/healthcheck/README.md).
    
    ## Prometheus Probe
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/testing/testserver.go

    			return false, err
    		default:
    		}
    
    		result := client.CoreV1().RESTClient().Get().AbsPath("/healthz").Do(context.TODO())
    		status := 0
    		result.StatusCode(&status)
    		if status == 200 {
    			return true, nil
    		}
    		return false, nil
    	})
    	if err != nil {
    		return result, fmt.Errorf("failed to wait for /healthz to return ok: %v", err)
    	}
    
    	// from here the caller must call tearDown
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top