Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RedisProxy (0.16 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. 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)
  3. 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