Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for health_status (0.2 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                                                },
                                                "health_check_config": {}
                                            },
                                            "health_status": "HEALTHY",
                                            "load_balancing_weight": 1
                                        }
                                    ]
                                }
                            ],
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 66K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/testdata/config_dump.json

                              "port_value": 15000
                            }
                          },
                          "health_check_config": {}
                        },
                        "health_status": "HEALTHY",
                        "load_balancing_weight": 1
                      }
                    ],
                    "load_balancing_weight": 0
                  }
                ],
                "policy": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  3. docs/metrics/prometheus/list.md

    | `minio_cluster_nodes_online_total`                | Total number of MinIO nodes online.            |
    | `minio_cluster_write_quorum`                      | Maximum write quorum across all pools and sets |
    | `minio_cluster_health_status`                     | Get current cluster health status              |
    | `minio_cluster_health_erasure_set_healing_drives` | Count of healing drives in the erasure set     |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  4. docs/metrics/prometheus/grafana/minio-dashboard.json

                "uid": "${DS_PROMETHEUS}"
              },
              "disableTextWrap": false,
              "editorMode": "code",
              "exemplar": true,
              "expr": "minio_cluster_health_status{job=~\"$scrape_jobs\"}",
              "fullMetaSearch": false,
              "includeNullMetadata": true,
              "interval": "",
              "legendFormat": "Pool: {{pool}} Set: {{set}}",
              "range": true,
    Json
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 93K bytes
    - Viewed (2)
  5. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              istio:
                workload: coredns;kube-system;;;Kubernetes
        - endpoint:
            address:
              socketAddress:
                address: 10.244.0.3
                portValue: 53
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 17.1K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

                                        "portValue": 15020
                                    }
                                },
                                "healthCheckConfig": {}
                            },
                            "healthStatus": "HEALTHY",
                            "loadBalancingWeight": 1
                        }
                    ]
                }
            ],
            "policy": {
                "overprovisioningFactor": 140
            }
        },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 40.4K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.yaml

      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 10.244.0.176
                portValue: 8080
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              istio:
                workload: istio-ingressgateway;istio-system;istio-ingressgateway;latest;Kubernetes
        loadBalancingWeight: 1
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 1K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/clusters/clusters.go

    	if addr != nil {
    		return addr.GetPortValue()
    	}
    	return 0
    }
    
    func retrieveEndpointStatus(l *admin.HostStatus) core.HealthStatus {
    	return l.HealthStatus.GetEdsHealthStatus()
    }
    
    func retrieveFailedOutlierCheck(l *admin.HostStatus) bool {
    	return l.HealthStatus.GetFailedOutlierCheck()
    }
    
    // Verify returns true if the passed host matches the filter fields
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 5.8K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.json

                                        "portValue": 8080
                                    }
                                },
                                "healthCheckConfig": {}
                            },
                            "healthStatus": "HEALTHY",
                            "metadata": {
                                "filterMetadata": {
                                    "istio": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/endpoint.go

    		return false
    	}
    	status := retrieveEndpointStatus(ep)
    	if e.Status != "" && !strings.EqualFold(core.HealthStatus_name[int32(status)], e.Status) {
    		return false
    	}
    	return true
    }
    
    func retrieveEndpointStatus(ep *endpoint.LbEndpoint) core.HealthStatus {
    	return ep.GetHealthStatus()
    }
    
    func retrieveEndpointPort(ep *endpoint.LbEndpoint) uint32 {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Apr 21 17:42:54 GMT 2024
    - 5.6K bytes
    - Viewed (0)
Back to top