Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for rate_limits (0.22 sec)

  1. cluster/gce/manifests/glbc.manifest

        - --healthz-port=8086
        - --gce-ratelimit=ga.Operations.Get,qps,10,100
        - --gce-ratelimit=alpha.Operations.Get,qps,10,100
        - --gce-ratelimit=beta.Operations.Get,qps,10,100
        - --gce-ratelimit=ga.BackendServices.Get,qps,1.8,1
        - --gce-ratelimit=beta.BackendServices.Get,qps,1.8,1
        - --gce-ratelimit=ga.HealthChecks.Get,qps,1.8,1
        - --gce-ratelimit=alpha.HealthChecks.Get,qps,1.8,1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/wellknown/wellknown.go

    	// HTTPConnectionManager network filter
    	HTTPConnectionManager = "envoy.filters.network.http_connection_manager"
    	// TCPProxy network filter
    	TCPProxy = "envoy.filters.network.tcp_proxy"
    	// RateLimit network filter
    	RateLimit = "envoy.filters.network.ratelimit"
    	// MongoProxy network filter
    	MongoProxy = "envoy.filters.network.mongo_proxy"
    	// ThriftProxy network filter
    	ThriftProxy = "envoy.filters.network.thrift_proxy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. tests/integration/telemetry/policy/testdata/enable_envoy_local_ratelimit.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: clt
      configPatches:
        - applyTo: HTTP_FILTER
          patch:
            operation: INSERT_BEFORE
            value:
              name: envoy.filters.http.local_ratelimit
              typed_config:
                "@type": type.googleapis.com/udpa.type.v1.TypedStruct
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 02 03:31:35 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. tests/integration/telemetry/policy/testdata/enable_envoy_local_ratelimit_per_route.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: clt
      configPatches:
        - applyTo: HTTP_FILTER
          patch:
            operation: INSERT_BEFORE
            value:
              name: envoy.filters.http.local_ratelimit
              typed_config:
                "@type": type.googleapis.com/udpa.type.v1.TypedStruct
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 02 03:31:35 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. plugin/pkg/admission/eventratelimit/admission.go

    	if attr.GetKind().GroupKind() != api.Kind("Event") {
    		return nil
    	}
    
    	// ignore all requests that specify dry-run
    	// because they don't correspond to any calls to etcd,
    	// they should not be affected by the ratelimit
    	if attr.IsDryRun() {
    		return nil
    	}
    
    	var errors []error
    	// give each limit enforcer a chance to reject the event
    	for _, enforcer := range a.limitEnforcers {
    		if err := enforcer.accept(attr); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 14 15:26:57 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/envoyfilter_test.go

    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_MERGE,
    						Value: buildPatchStruct(`{
    							"typed_per_filter_config": {
    								"envoy.filters.http.ratelimit": {
    									"@type": "type.googleapis.com/thisisaninvalidtype"
    								}
    							}
    						}`),
    					},
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top