Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for RedisProxy (0.18 sec)

  1. pilot/pkg/networking/core/networkfilter_test.go

    	if redisFilter.Name != wellknown.RedisProxy {
    		t.Errorf("redis filter name is %s not %s", redisFilter.Name, wellknown.RedisProxy)
    	}
    	if config, ok := redisFilter.ConfigType.(*listener.Filter_TypedConfig); ok {
    		redisProxy := redis.RedisProxy{}
    		if err := config.TypedConfig.UnmarshalTo(&redisProxy); err != nil {
    			t.Errorf("unmarshal failed: %v", err)
    		}
    		if redisProxy.StatPrefix != "redis" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. pkg/wellknown/wellknown.go

    	// MongoProxy network filter
    	MongoProxy = "envoy.filters.network.mongo_proxy"
    	// ThriftProxy network filter
    	ThriftProxy = "envoy.filters.network.thrift_proxy"
    	// RedisProxy network filter
    	RedisProxy = "envoy.filters.network.redis_proxy"
    	// MySQLProxy network filter
    	MySQLProxy = "envoy.filters.network.mysql_proxy"
    	// ExternalAuthorization network filter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    	}
    
    	return out
    }
    
    // buildRedisFilter builds an outbound Envoy RedisProxy filter.
    // Currently, if multiple clusters are defined, one of them will be picked for
    // configuring the Redis proxy.
    func buildRedisFilter(statPrefix, clusterName string) *listener.Filter {
    	redisProxy := &redis.RedisProxy{
    		LatencyInMicros: true,       // redis latency stats are captured in micro seconds which is typically the case.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    						},
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_MERGE,
    				Value: buildPatchStruct(`
    {"name": "envoy.filters.network.redis_proxy",
    "typed_config": {
            "@type": "type.googleapis.com/envoy.extensions.filters.network.redis_proxy.v3.RedisProxy",
            "settings": {"op_timeout": "0.2s"}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  5. pkg/config/xds/deprecated.go

    		wellknown.HTTPConnectionManager:       "envoy.http_connection_manager",
    		wellknown.MongoProxy:                  "envoy.mongo_proxy",
    		wellknown.RateLimit:                   "envoy.ratelimit",
    		wellknown.RedisProxy:                  "envoy.redis_proxy",
    		wellknown.TCPProxy:                    "envoy.tcp_proxy",
    	}
    
    	ReverseDeprecatedFilterNames = reverse(DeprecatedFilterNames)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. pkg/adsc/adsc.go

    			if port == 15002 {
    				routes = append(routes, "http_proxy")
    			} else {
    				routes = append(routes, fmt.Sprintf("%d", port))
    			}
    		case wellknown.MongoProxy:
    			// ignore for now
    		case wellknown.RedisProxy:
    			// ignore for now
    		case wellknown.MySQLProxy:
    			// ignore for now
    		default:
    			adscLog.Infof(protomarshal.ToJSONWithIndent(l, "  "))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top