...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package wellknown
17
18
19 const (
20
21 Buffer = "envoy.filters.http.buffer"
22
23 CORS = "envoy.filters.http.cors"
24
25 Dynamo = "envoy.filters.http.dynamo"
26
27 Fault = "envoy.filters.http.fault"
28
29 GRPCHTTP1Bridge = "envoy.filters.http.grpc_http1_bridge"
30
31 GRPCJSONTranscoder = "envoy.filters.http.grpc_json_transcoder"
32
33 GRPCWeb = "envoy.filters.http.grpc_web"
34
35 Gzip = "envoy.filters.http.gzip"
36
37 IPTagging = "envoy.filters.http.ip_tagging"
38
39 HTTPRateLimit = "envoy.filters.http.ratelimit"
40
41 Router = "envoy.filters.http.router"
42
43 HealthCheck = "envoy.filters.http.health_check"
44
45 Lua = "envoy.filters.http.lua"
46
47 Squash = "envoy.filters.http.squash"
48
49 HTTPExternalAuthorization = "envoy.filters.http.ext_authz"
50
51 HTTPRoleBasedAccessControl = "envoy.filters.http.rbac"
52
53 HTTPGRPCStats = "envoy.filters.http.grpc_stats"
54 )
55
56
57 const (
58
59 ClientSSLAuth = "envoy.filters.network.client_ssl_auth"
60
61 Echo = "envoy.filters.network.echo"
62
63 HTTPConnectionManager = "envoy.filters.network.http_connection_manager"
64
65 TCPProxy = "envoy.filters.network.tcp_proxy"
66
67 RateLimit = "envoy.filters.network.ratelimit"
68
69 MongoProxy = "envoy.filters.network.mongo_proxy"
70
71 ThriftProxy = "envoy.filters.network.thrift_proxy"
72
73 RedisProxy = "envoy.filters.network.redis_proxy"
74
75 MySQLProxy = "envoy.filters.network.mysql_proxy"
76
77 ExternalAuthorization = "envoy.filters.network.ext_authz"
78
79 RoleBasedAccessControl = "envoy.filters.network.rbac"
80 )
81
82
83 const (
84
85 OriginalDestination = "envoy.filters.listener.original_dst"
86
87 ProxyProtocol = "envoy.filters.listener.proxy_protocol"
88
89 TlsInspector = "envoy.filters.listener.tls_inspector"
90
91 HttpInspector = "envoy.filters.listener.http_inspector"
92 )
93
94
95 const (
96
97 Lightstep = "envoy.tracers.lightstep"
98
99 Zipkin = "envoy.tracers.zipkin"
100
101 DynamicOT = "envoy.tracers.dynamic_ot"
102
103 Datadog = "envoy.tracers.datadog"
104 )
105
106
107 const (
108
109 Statsd = "envoy.stat_sinks.statsd"
110
111 DogStatsd = "envoy.stat_sinks.dog_statsd"
112
113 MetricsService = "envoy.stat_sinks.metrics_service"
114 )
115
116
117 const (
118
119 FileAccessLog = "envoy.access_loggers.file"
120
121 HTTPGRPCAccessLog = "envoy.access_loggers.http_grpc"
122 )
123
124
125 const (
126
127 TransportSocketAlts = "envoy.transport_sockets.alts"
128
129 TransportSocketTap = "envoy.transport_sockets.tap"
130
131 TransportSocketRawBuffer = "envoy.transport_sockets.raw_buffer"
132
133 TransportSocketTls = "envoy.transport_sockets.tls"
134
135 TransportSocketQuic = "envoy.transport_sockets.quic"
136 )
137
View as plain text