Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mysql_proxy (0.13 sec)

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

    // buildMySQLFilter builds an outbound Envoy MySQLProxy filter.
    func buildMySQLFilter(statPrefix string) *listener.Filter {
    	mySQLProxy := &mysql.MySQLProxy{
    		StatPrefix: statPrefix, // MySQL stats are prefixed with mysql.<statPrefix> by Envoy.
    	}
    
    	out := &listener.Filter{
    		Name:       wellknown.MySQLProxy,
    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(mySQLProxy)},
    	}
    
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/kafka_mesh/v3alpha"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/mysql_proxy/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/postgres_proxy/v3alpha"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/rocketmq_proxy/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)
  3. pilot/pkg/networking/core/listener_test.go

    }
    
    func isMysqlListener(listener *listener.Listener) bool {
    	if len(listener.FilterChains) > 0 && len(listener.FilterChains[0].Filters) > 0 {
    		return listener.FilterChains[0].Filters[0].Name == wellknown.MySQLProxy
    	}
    	return false
    }
    
    func hasListenerOrFilterChainForPort(listeners []*listener.Listener, port uint32) bool {
    	for _, l := range listeners {
    		if port == l.Address.GetSocketAddress().GetPortValue() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top