Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for StatPrefix (0.26 sec)

  1. pilot/pkg/security/authz/builder/extauthz.go

    		TransportApiVersion:   core.ApiVersion_V3,
    		WithRequestBody:       withBodyRequest(config.IncludeRequestBodyInCheck),
    	}
    	tcp := &extauthztcp.ExtAuthz{
    		StatPrefix:            "tcp.",
    		FailureModeAllow:      config.FailOpen,
    		TransportApiVersion:   core.ApiVersion_V3,
    		GrpcService:           grpc,
    		FilterEnabledMetadata: generateFilterMatcher(wellknown.RoleBasedAccessControl),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    	f := fc.Filters[0]
    	expectedStatPrefix := util.PassthroughCluster
    	cfg, _ := conversion.MessageToStruct(f.GetTypedConfig())
    	statPrefix := cfg.Fields["stat_prefix"].GetStringValue()
    	if statPrefix != expectedStatPrefix {
    		t.Fatalf("expected listener to contain stat_prefix %s, found %s", expectedStatPrefix, statPrefix)
    	}
    }
    
    func verifyOutboundTCPListenerHostname(t *testing.T, l *listener.Listener, hostname host.Name) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    		Match:    TranslateRouteMatch(virtualService, match, node.SupportsEnvoyExtendedJwt()),
    		Metadata: util.BuildConfigInfoMetadata(virtualService.Meta),
    	}
    
    	if match != nil && match.StatPrefix != "" {
    		out.StatPrefix = match.StatPrefix
    	}
    
    	authority := ""
    	if in.Headers != nil {
    		operations := TranslateHeadersOperations(in.Headers)
    		out.RequestHeadersToAdd = operations.RequestHeadersToAdd
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    		g.Expect(routes[0].GetMatch().GetPrefix()).To(Equal("/foo"))
    		g.Expect(routes[0].StatPrefix).To(Equal("foo"))
    		g.Expect(routes[1].GetMatch().GetPrefix()).To(Equal("/baz"))
    		g.Expect(routes[1].StatPrefix).To(Equal(""))
    		g.Expect(routes[2].GetMatch().GetPrefix()).To(Equal("/bar"))
    		g.Expect(routes[2].StatPrefix).To(Equal(""))
    		g.Expect(len(routes[0].GetRoute().GetRetryPolicy().RetryHostPredicate)).To(Equal(1))
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    		}
    		if opt.httpOpts == nil {
    			// we are building a network filter chain (no http connection manager) for this filter chain
    			chain.Filters = opt.networkFilters
    		} else {
    			opt.httpOpts.statPrefix = strings.ToLower(l.TrafficDirection.String()) + "_" + l.Name
    			opt.httpOpts.port = le.servicePort.Port
    			hcm := builder.buildHTTPConnectionManager(opt.httpOpts)
    			filter := &listener.Filter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    						ServerName:               EnvoyServerName,
    						HttpProtocolOptions:      &core.Http1ProtocolOptions{},
    						Proxy_100Continue:        true,
    					},
    					statPrefix: "server1",
    					class:      istionetworking.ListenerClassGateway,
    					protocol:   protocol.HTTPS,
    				},
    			},
    		},
    		{
    			name:              "QUIC protocol with server name",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  of a rule to workloads in that namespace.
                                type: string
                              statPrefix:
                                description: The human readable prefix to use when emitting
                                  statistics for this route.
                                type: string
                              uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                  of a rule to workloads in that namespace.
                                type: string
                              statPrefix:
                                description: The human readable prefix to use when emitting
                                  statistics for this route.
                                type: string
                              uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                  of a rule to workloads in that namespace.
                                type: string
                              statPrefix:
                                description: The human readable prefix to use when emitting
                                  statistics for this route.
                                type: string
                              uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    labels that constrain the applicability of a rule to source (client) workloads with the given labels. type: object sourceNamespace: description: Source namespace constraining the applicability of a rule to workloads in that namespace. type: string statPrefix: description: The human readable prefix to use when emitting statistics for this route. type: string uri: description: 'URI to match values are case-sensitive and formatted as follows: - `exact: "value"` for exact string match - `prefix: "value"`...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top