1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
// Copyright 2018 Envoyproxy Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package wellknown contains common names for filters, listeners, etc.
//
// Deprecated. Envoy no longer requires specific names when configuring
// filters or other properties, since it inspects the Protobuf type URL
// to decide how to the decode a message. Because of this, no new names
// are being added to this package.
package wellknown
// HTTP filter names
const (
// Buffer HTTP filter
Buffer = "envoy.filters.http.buffer"
// CORS HTTP filter
CORS = "envoy.filters.http.cors"
// Dynamo HTTP filter
Dynamo = "envoy.filters.http.dynamo"
// Fault HTTP filter
Fault = "envoy.filters.http.fault"
// GRPCHTTP1Bridge HTTP filter
GRPCHTTP1Bridge = "envoy.filters.http.grpc_http1_bridge"
// GRPCJSONTranscoder HTTP filter
GRPCJSONTranscoder = "envoy.filters.http.grpc_json_transcoder"
// GRPCWeb HTTP filter
GRPCWeb = "envoy.filters.http.grpc_web"
// Gzip HTTP filter
Gzip = "envoy.filters.http.gzip"
// IPTagging HTTP filter
IPTagging = "envoy.filters.http.ip_tagging"
// HTTPRateLimit filter
HTTPRateLimit = "envoy.filters.http.ratelimit"
// Router HTTP filter
Router = "envoy.filters.http.router"
// Health checking HTTP filter
HealthCheck = "envoy.filters.http.health_check"
// Lua HTTP filter
Lua = "envoy.filters.http.lua"
// Squash HTTP filter
Squash = "envoy.filters.http.squash"
// HTTPExternalAuthorization HTTP filter
HTTPExternalAuthorization = "envoy.filters.http.ext_authz"
// HTTPRoleBasedAccessControl HTTP filter
HTTPRoleBasedAccessControl = "envoy.filters.http.rbac"
// HTTPGRPCStats HTTP filter
HTTPGRPCStats = "envoy.filters.http.grpc_stats"
// HTTP WASM filter
HTTPWasm = "envoy.extensions.filters.http.wasm.v3.Wasm"
)
// Network filter names
const (
// ClientSSLAuth network filter
ClientSSLAuth = "envoy.filters.network.client_ssl_auth"
// Echo network filter
Echo = "envoy.filters.network.echo"
// 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"
// RedisProxy network filter
RedisProxy = "envoy.filters.network.redis_proxy"
// MySQLProxy network filter
MySQLProxy = "envoy.filters.network.mysql_proxy"
// ExternalAuthorization network filter
ExternalAuthorization = "envoy.filters.network.ext_authz"
// RoleBasedAccessControl network filter
RoleBasedAccessControl = "envoy.filters.network.rbac"
)
// Listener filter names
const (
// OriginalDestination listener filter
OriginalDestination = "envoy.filters.listener.original_dst"
// ProxyProtocol listener filter
ProxyProtocol = "envoy.filters.listener.proxy_protocol"
// TlsInspector listener filter
TlsInspector = "envoy.filters.listener.tls_inspector" // nolint:golint,revive
// TLSInspector listener filter
TLSInspector = "envoy.filters.listener.tls_inspector" // nolint:golint,revive
// HttpInspector listener filter
HttpInspector = "envoy.filters.listener.http_inspector" // nolint:golint,revive
// HTTPInspector listener filter
HTTPInspector = "envoy.filters.listener.http_inspector"
// OriginalSource listener filter
OriginalSource = "envoy.filters.listener.original_src"
)
// Tracing provider names
const (
// Lightstep tracer name
Lightstep = "envoy.tracers.lightstep"
// Zipkin tracer name
Zipkin = "envoy.tracers.zipkin"
// DynamicOT tracer name
DynamicOT = "envoy.tracers.dynamic_ot"
// Datadog tracer name
Datadog = "envoy.tracers.datadog"
)
// Stats sink names
const (
// Statsd sink
Statsd = "envoy.stat_sinks.statsd"
// DogStatsD compatible stastsd sink
DogStatsd = "envoy.stat_sinks.dog_statsd"
// MetricsService sink
MetricsService = "envoy.stat_sinks.metrics_service"
)
// Access log sink names
const (
// FileAccessLog sink name
FileAccessLog = "envoy.access_loggers.file"
// HTTPGRPCAccessLog sink for the HTTP gRPC access log service
HTTPGRPCAccessLog = "envoy.access_loggers.http_grpc"
)
// Transport socket names
const (
// TransportSocket Alts
TransportSocketAlts = "envoy.transport_sockets.alts"
// TransportSocket Tap
TransportSocketTap = "envoy.transport_sockets.tap"
// TransportSocket RawBuffer
TransportSocketRawBuffer = "envoy.transport_sockets.raw_buffer"
// TransportSocket Tls
TransportSocketTls = "envoy.transport_sockets.tls" // nolint:golint,revive
// TransportSocketTLS labels the "envoy.transport_sockets.tls" filter.
TransportSocketTLS = "envoy.transport_sockets.tls"
// TransportSocket Quic
TransportSocketQuic = "envoy.transport_sockets.quic"
)
|