Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for http_inspector (0.34 sec)

  1. pkg/config/xds/deprecated.go

    		wellknown.HTTPRateLimit:               "envoy.rate_limit",
    		wellknown.Router:                      "envoy.router",
    		wellknown.Squash:                      "envoy.squash",
    		wellknown.HTTPInspector:               "envoy.listener.http_inspector",
    		wellknown.OriginalDestination:         "envoy.listener.original_dst",
    		"envoy.filters.listener.original_src": "envoy.listener.original_src",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. istioctl/pkg/authz/testdata/configdump.yaml

             }
            },
            {
             "name": "envoy.filters.listener.http_inspector",
             "typed_config": {
              "@type": "type.googleapis.com/envoy.extensions.filters.listener.http_inspector.v3.HttpInspector"
             }
            }
           ],
           "listener_filters_timeout": "0s",
           "traffic_direction": "OUTBOUND",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  3. pkg/wellknown/wellknown.go

    	ProxyProtocol = "envoy.filters.listener.proxy_protocol"
    	// TLSInspector listener filter
    	TLSInspector = "envoy.filters.listener.tls_inspector" // nolint:golint,revive
    	// HTTPInspector listener filter
    	HTTPInspector = "envoy.filters.listener.http_inspector"
    	// OriginalSource listener filter
    	OriginalSource = "envoy.filters.listener.original_src"
    )
    
    // Access log sink names
    const (
    	// FileAccessLog sink name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                      }
                    },
                    {
                      "name": "envoy.filters.listener.http_inspector",
                      "typed_config": {
                        "@type": "type.googleapis.com/envoy.extensions.filters.listener.http_inspector.v3.HttpInspector"
                      }
                    }
                  ],
                  "traffic_direction": "INBOUND",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. istioctl/pkg/proxyconfig/testdata/config_dump.json

                      }
                    },
                    {
                      "name": "envoy.filters.listener.http_inspector",
                      "typed_config": {
                        "@type": "type.googleapis.com/envoy.extensions.filters.listener.http_inspector.v3.HttpInspector"
                      }
                    }
                  ],
                  "traffic_direction": "INBOUND",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/testdata/configdump.json

                      }
                    },
                    {
                      "name": "envoy.filters.listener.http_inspector",
                      "typed_config": {
                        "@type": "type.googleapis.com/envoy.extensions.filters.listener.http_inspector.v3.HttpInspector"
                      }
                    }
                  ],
                  "traffic_direction": "INBOUND",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. pilot/pkg/xds/filters/filters.go

    			TypedConfig: protoconv.MessageToAny(&tlsinspector.TlsInspector{}),
    		},
    	}
    	HTTPInspector = &listener.ListenerFilter{
    		Name: wellknown.HTTPInspector,
    		ConfigType: &listener.ListenerFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&httpinspector.HttpInspector{}),
    		},
    	}
    	OriginalDestination = &listener.ListenerFilter{
    		Name: wellknown.OriginalDestination,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/http_inspector/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/local_ratelimit/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/original_dst/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_inbound.go

    	for p, i := range inspectors {
    		if !i.HTTPInspector {
    			ports = append(ports, p)
    		}
    	}
    	// No need to filter, return the cached version enabled for all ports
    	if len(ports) == 0 {
    		return xdsfilters.HTTPInspector
    	}
    	// Ensure consistent ordering as we are looping over a map
    	sort.Ints(ports)
    	filter := &listener.ListenerFilter{
    		Name:       wellknown.HTTPInspector,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_builder_test.go

    			{Name: "0.0.0.0_8080", Type: listenertest.MTLSHTTP},
    			{Name: "0.0.0.0_8080", Type: listenertest.PlainTCP},
    		},
    		Filters: []string{
    			wellknown.OriginalDestination,
    			wellknown.TLSInspector,
    			wellknown.HTTPInspector,
    		},
    		TotalMatch: true,
    	})
    }
    
    func TestSidecarInboundListenerWithOriginalSrc(t *testing.T) {
    	proxy := &model.Proxy{
    		Metadata: &model.NodeMetadata{InterceptionMode: model.InterceptionTproxy},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top