Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for outlier_detection (0.23 sec)

  1. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

            "address": {
              "socket_address": {"address": "10.1.1.1", "port_value": 9125}
            }
          }
        }
        
      ]
      
      
      ,
      "cluster_manager": {
        "outlier_detection": {
          "event_log_path": "/dev/stdout"
        }
      }
      
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_compression_brotli_golden.json

            "address": {
              "socket_address": {"address": "10.1.1.1", "port_value": 9125}
            }
          }
        }
        
      ]
      
      
      ,
      "cluster_manager": {
        "outlier_detection": {
          "event_log_path": "/dev/stdout"
        }
      }
      
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. tools/packaging/common/envoy_bootstrap.json

      ,
      "cluster_manager": {
        {{- if .deferred_cluster_creation}}
        "enable_deferred_cluster_creation": true,
        {{- end}}
        {{- if .outlier_log_path}}
        "outlier_detection": {
          "event_log_path": "{{ .outlier_log_path }}"
        }
        {{- end}}
        {{- if and .outlier_log_path .load_stats_config_json_str }}
        ,
        {{- end}}
        {{- if .load_stats_config_json_str }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 5,
    						},
    					},
    				},
    			},
    			expectedLabels: nil,
    		},
    		{
    			name: "failover priority disabled",
    			dr: &config.Config{
    				Spec: &networking.DestinationRule{
    					TrafficPolicy: &networking.TrafficPolicy{
    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 5,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_traffic_policy.go

    	*networking.ConnectionPoolSettings,
    	*networking.OutlierDetection,
    	*networking.LoadBalancerSettings,
    	*networking.ClientTLSSettings,
    	*networking.TrafficPolicy_ProxyProtocol,
    ) {
    	if policy == nil {
    		return nil, nil, nil, nil, nil
    	}
    	connectionPool := policy.ConnectionPool
    	outlierDetection := policy.OutlierDetection
    	loadBalancer := policy.LoadBalancer
    	tls := policy.Tls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util_test.go

    					},
    				},
    				OutlierDetection: &networking.OutlierDetection{
    					ConsecutiveErrors: 20,
    				},
    				PortLevelSettings: []*networking.TrafficPolicy_PortTrafficPolicy{
    					{
    						Port: &networking.PortSelector{
    							Number: 8080,
    						},
    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 15,
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. releasenotes/notes/failover-validation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Added** warning validation messages when a DestinationRule specifies failover policies but does not provide an OutlierDetection policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 15:45:22 UTC 2022
    - 293 bytes
    - Viewed (0)
  8. tests/testdata/config/destination-rule-locality.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: locality
      namespace: default
    spec:
      host: locality.cluster.local
      trafficPolicy:
        outlierDetection:
          interval: 1s
          baseEjectionTime: 3m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 263 bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    	g := NewWithT(t)
    
    	tests := []struct {
    		name string
    		cfg  *networking.OutlierDetection
    		o    *cluster.OutlierDetection
    	}{
    		{
    			"Nil outlier detection",
    			nil,
    			nil,
    		},
    		{
    			"No outlier detection is set",
    			&networking.OutlierDetection{},
    			&cluster.OutlierDetection{
    				EnforcingSuccessRate: &wrappers.UInt32Value{Value: 0},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation_test.go

    		}
    	}
    }
    
    func TestValidateLocalityLbSetting(t *testing.T) {
    	cases := []struct {
    		name    string
    		in      *networking.LocalityLoadBalancerSetting
    		outlier *networking.OutlierDetection
    		err     bool
    		warn    bool
    	}{
    		{
    			name:    "valid mesh config without LocalityLoadBalancerSetting",
    			in:      nil,
    			outlier: nil,
    			err:     false,
    			warn:    false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top