Add DC and NS support for Envoy metrics (#9207)
This PR updates the tags that we generate for Envoy stats. Several of these come with breaking changes, since we can't keep two stats prefixes for a filter.
This commit is contained in:
parent
197a37a860
commit
2763833d32
|
@ -0,0 +1,3 @@
|
|||
```release-note:breaking-change
|
||||
connect: Update Envoy metrics names and labels for proxy listeners so that attributes like datacenter and namespace can be extracted.
|
||||
```
|
|
@ -319,7 +319,7 @@ func (s *Server) makeIngressGatewayListeners(address string, cfgSnap *proxycfg.C
|
|||
filterName: listenerKey.RouteName(),
|
||||
routeName: listenerKey.RouteName(),
|
||||
cluster: "",
|
||||
statPrefix: "ingress_upstream_",
|
||||
statPrefix: "ingress_upstream.",
|
||||
routePath: "",
|
||||
ingress: false,
|
||||
httpAuthzFilter: nil,
|
||||
|
@ -771,7 +771,7 @@ func (s *Server) makeTerminatingGatewayListener(
|
|||
|
||||
// This fallback catch-all filter ensures a listener will be present for health checks to pass
|
||||
// Envoy will reset these connections since known endpoints are caught by filter chain matches above
|
||||
tcpProxy, err := makeTCPProxyFilter(name, "", "terminating_gateway_")
|
||||
tcpProxy, err := makeTCPProxyFilter(name, "", "terminating_gateway.")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -821,7 +821,7 @@ func (s *Server) makeFilterChainTerminatingGateway(
|
|||
// Lastly we setup the actual proxying component. For L4 this is a straight
|
||||
// tcp proxy. For L7 this is a very hands-off HTTP proxy just to inject an
|
||||
// HTTP filter to do intention checks here instead.
|
||||
statPrefix := fmt.Sprintf("terminating_gateway_%s_%s_", service.NamespaceOrDefault(), service.Name)
|
||||
statPrefix := fmt.Sprintf("terminating_gateway.%s.%s.", service.NamespaceOrDefault(), service.Name)
|
||||
opts := listenerFilterOpts{
|
||||
protocol: protocol,
|
||||
filterName: listener,
|
||||
|
@ -868,7 +868,7 @@ func (s *Server) makeMeshGatewayListener(name, addr string, port int, cfgSnap *p
|
|||
|
||||
// The cluster name here doesn't matter as the sni_cluster
|
||||
// filter will fill it in for us.
|
||||
tcpProxy, err := makeTCPProxyFilter(name, "", "mesh_gateway_local_")
|
||||
tcpProxy, err := makeTCPProxyFilter(name, "", "mesh_gateway_local.")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -891,8 +891,8 @@ func (s *Server) makeMeshGatewayListener(name, addr string, port int, cfgSnap *p
|
|||
continue // skip local
|
||||
}
|
||||
clusterName := connect.DatacenterSNI(dc, cfgSnap.Roots.TrustDomain)
|
||||
filterName := fmt.Sprintf("%s_%s", name, dc)
|
||||
dcTCPProxy, err := makeTCPProxyFilter(filterName, clusterName, "mesh_gateway_remote_")
|
||||
filterName := fmt.Sprintf("%s.%s", name, dc)
|
||||
dcTCPProxy, err := makeTCPProxyFilter(filterName, clusterName, "mesh_gateway_remote.")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -913,8 +913,8 @@ func (s *Server) makeMeshGatewayListener(name, addr string, port int, cfgSnap *p
|
|||
continue // skip local
|
||||
}
|
||||
clusterName := cfgSnap.ServerSNIFn(dc, "")
|
||||
filterName := fmt.Sprintf("%s_%s", name, dc)
|
||||
dcTCPProxy, err := makeTCPProxyFilter(filterName, clusterName, "mesh_gateway_remote_")
|
||||
filterName := fmt.Sprintf("%s.%s", name, dc)
|
||||
dcTCPProxy, err := makeTCPProxyFilter(filterName, clusterName, "mesh_gateway_remote.")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -933,8 +933,8 @@ func (s *Server) makeMeshGatewayListener(name, addr string, port int, cfgSnap *p
|
|||
for _, srv := range cfgSnap.MeshGateway.ConsulServers {
|
||||
clusterName := cfgSnap.ServerSNIFn(cfgSnap.Datacenter, srv.Node.Node)
|
||||
|
||||
filterName := fmt.Sprintf("%s_%s", name, cfgSnap.Datacenter)
|
||||
dcTCPProxy, err := makeTCPProxyFilter(filterName, clusterName, "mesh_gateway_local_server_")
|
||||
filterName := fmt.Sprintf("%s.%s", name, cfgSnap.Datacenter)
|
||||
dcTCPProxy, err := makeTCPProxyFilter(filterName, clusterName, "mesh_gateway_local_server.")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -976,38 +976,61 @@ func (s *Server) makeUpstreamListenerForDiscoveryChain(
|
|||
}
|
||||
|
||||
useRDS := true
|
||||
clusterName := ""
|
||||
var (
|
||||
clusterName string
|
||||
destination, datacenter, namespace string
|
||||
)
|
||||
if chain == nil || chain.IsDefault() {
|
||||
useRDS = false
|
||||
|
||||
dc := u.Datacenter
|
||||
if dc == "" {
|
||||
dc = cfgSnap.Datacenter
|
||||
}
|
||||
sni := connect.UpstreamSNI(u, "", dc, cfgSnap.Roots.TrustDomain)
|
||||
destination, datacenter, namespace = u.DestinationName, dc, u.DestinationNamespace
|
||||
|
||||
useRDS = false
|
||||
sni := connect.UpstreamSNI(u, "", dc, cfgSnap.Roots.TrustDomain)
|
||||
clusterName = CustomizeClusterName(sni, chain)
|
||||
|
||||
} else if cfg.Protocol == "tcp" {
|
||||
startNode := chain.Nodes[chain.StartNode]
|
||||
if startNode == nil {
|
||||
return nil, fmt.Errorf("missing first node in compiled discovery chain for: %s", chain.ServiceName)
|
||||
} else if startNode.Type != structs.DiscoveryGraphNodeTypeResolver {
|
||||
return nil, fmt.Errorf("unexpected first node in discovery chain using protocol=%q: %s", cfg.Protocol, startNode.Type)
|
||||
}
|
||||
targetID := startNode.Resolver.Target
|
||||
target := chain.Targets[targetID]
|
||||
} else {
|
||||
destination, datacenter, namespace = chain.ServiceName, chain.Datacenter, chain.Namespace
|
||||
|
||||
useRDS = false
|
||||
clusterName = CustomizeClusterName(target.Name, chain)
|
||||
if cfg.Protocol == "tcp" {
|
||||
useRDS = false
|
||||
|
||||
startNode := chain.Nodes[chain.StartNode]
|
||||
if startNode == nil {
|
||||
return nil, fmt.Errorf("missing first node in compiled discovery chain for: %s", chain.ServiceName)
|
||||
}
|
||||
if startNode.Type != structs.DiscoveryGraphNodeTypeResolver {
|
||||
return nil, fmt.Errorf("unexpected first node in discovery chain using protocol=%q: %s", cfg.Protocol, startNode.Type)
|
||||
}
|
||||
targetID := startNode.Resolver.Target
|
||||
target := chain.Targets[targetID]
|
||||
|
||||
clusterName = CustomizeClusterName(target.Name, chain)
|
||||
}
|
||||
}
|
||||
|
||||
// Default the namespace to match how SNIs are generated
|
||||
if namespace == "" {
|
||||
namespace = structs.IntentionDefaultNamespace
|
||||
}
|
||||
filterName := fmt.Sprintf("%s.%s.%s", destination, namespace, datacenter)
|
||||
|
||||
if u.DestinationType == structs.UpstreamDestTypePreparedQuery {
|
||||
// Avoid encoding dc and namespace for prepared queries.
|
||||
// Those are defined in the query itself and are not available here.
|
||||
filterName = upstreamID
|
||||
}
|
||||
|
||||
opts := listenerFilterOpts{
|
||||
useRDS: useRDS,
|
||||
protocol: cfg.Protocol,
|
||||
filterName: upstreamID,
|
||||
filterName: filterName,
|
||||
routeName: upstreamID,
|
||||
cluster: clusterName,
|
||||
statPrefix: "upstream_",
|
||||
statPrefix: "upstream.",
|
||||
routePath: "",
|
||||
ingress: false,
|
||||
httpAuthzFilter: nil,
|
||||
|
@ -1120,17 +1143,17 @@ func makeSNIClusterFilter() (*envoylistener.Filter, error) {
|
|||
|
||||
func makeTCPProxyFilter(filterName, cluster, statPrefix string) (*envoylistener.Filter, error) {
|
||||
cfg := &envoytcp.TcpProxy{
|
||||
StatPrefix: makeStatPrefix("tcp", statPrefix, filterName),
|
||||
StatPrefix: makeStatPrefix(statPrefix, filterName),
|
||||
ClusterSpecifier: &envoytcp.TcpProxy_Cluster{Cluster: cluster},
|
||||
}
|
||||
return makeFilter("envoy.tcp_proxy", cfg, false)
|
||||
}
|
||||
|
||||
func makeStatPrefix(protocol, prefix, filterName string) string {
|
||||
func makeStatPrefix(prefix, filterName string) string {
|
||||
// Replace colons here because Envoy does that in the metrics for the actual
|
||||
// clusters but doesn't in the stat prefix here while dashboards assume they
|
||||
// will match.
|
||||
return fmt.Sprintf("%s%s_%s", prefix, strings.Replace(filterName, ":", "_", -1), protocol)
|
||||
return fmt.Sprintf("%s%s", prefix, strings.Replace(filterName, ":", "_", -1))
|
||||
}
|
||||
|
||||
func makeHTTPFilter(opts listenerFilterOpts) (*envoylistener.Filter, error) {
|
||||
|
@ -1138,13 +1161,9 @@ func makeHTTPFilter(opts listenerFilterOpts) (*envoylistener.Filter, error) {
|
|||
if !opts.ingress {
|
||||
op = envoyhttp.HttpConnectionManager_Tracing_EGRESS
|
||||
}
|
||||
proto := "http"
|
||||
if opts.protocol == "grpc" {
|
||||
proto = opts.protocol
|
||||
}
|
||||
|
||||
cfg := &envoyhttp.HttpConnectionManager{
|
||||
StatPrefix: makeStatPrefix(proto, opts.statPrefix, opts.filterName),
|
||||
StatPrefix: makeStatPrefix(opts.statPrefix, opts.filterName),
|
||||
CodecType: envoyhttp.HttpConnectionManager_AUTO,
|
||||
HttpFilters: []*envoyhttp.HttpFilter{
|
||||
{
|
||||
|
|
|
@ -577,7 +577,7 @@ func expectListenerJSONResources(t *testing.T, snap *proxycfg.ConfigSnapshot) ma
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -600,7 +600,7 @@ func expectListenerJSONResources(t *testing.T, snap *proxycfg.ConfigSnapshot) ma
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -623,7 +623,7 @@ func expectListenerJSONResources(t *testing.T, snap *proxycfg.ConfigSnapshot) ma
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_grpc",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_grpc",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_grpc",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_grpc",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_grpc",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_grpc",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_grpc",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_grpc",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -56,7 +56,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -110,7 +110,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -56,7 +56,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -110,7 +110,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -56,7 +56,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -110,7 +110,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -56,7 +56,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -110,7 +110,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -58,7 +58,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -112,7 +112,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -58,7 +58,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -112,7 +112,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -58,7 +58,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -112,7 +112,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
},
|
||||
"route_config_name": "db"
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -58,7 +58,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -112,7 +112,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -117,7 +117,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -94,7 +94,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health1_21500_http",
|
||||
"stat_prefix": "exposed_path_filter_health1_21500",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -94,7 +94,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health2_21501_http",
|
||||
"stat_prefix": "exposed_path_filter_health2_21501",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -132,7 +132,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health1_21500_http",
|
||||
"stat_prefix": "exposed_path_filter_health1_21500",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -94,7 +94,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health2_21501_http",
|
||||
"stat_prefix": "exposed_path_filter_health2_21501",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -132,7 +132,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health1_21500_http",
|
||||
"stat_prefix": "exposed_path_filter_health1_21500",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -94,7 +94,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health2_21501_http",
|
||||
"stat_prefix": "exposed_path_filter_health2_21501",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -132,7 +132,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health1_21500_http",
|
||||
"stat_prefix": "exposed_path_filter_health1_21500",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -94,7 +94,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health2_21501_http",
|
||||
"stat_prefix": "exposed_path_filter_health2_21501",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -132,7 +132,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_grpchealthv1HealthCheck_21501_http",
|
||||
"stat_prefix": "exposed_path_filter_grpchealthv1HealthCheck_21501",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -96,7 +96,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health1_21500_http",
|
||||
"stat_prefix": "exposed_path_filter_health1_21500",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -134,7 +134,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_grpchealthv1HealthCheck_21501_http",
|
||||
"stat_prefix": "exposed_path_filter_grpchealthv1HealthCheck_21501",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -96,7 +96,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health1_21500_http",
|
||||
"stat_prefix": "exposed_path_filter_health1_21500",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -134,7 +134,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_grpchealthv1HealthCheck_21501_http",
|
||||
"stat_prefix": "exposed_path_filter_grpchealthv1HealthCheck_21501",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -96,7 +96,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health1_21500_http",
|
||||
"stat_prefix": "exposed_path_filter_health1_21500",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -134,7 +134,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_grpchealthv1HealthCheck_21501_http",
|
||||
"stat_prefix": "exposed_path_filter_grpchealthv1HealthCheck_21501",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -96,7 +96,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "exposed_path_filter_health1_21500_http",
|
||||
"stat_prefix": "exposed_path_filter_health1_21500",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
@ -134,7 +134,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "public_listener_http",
|
||||
"stat_prefix": "public_listener",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "public_listener_http",
|
||||
"stat_prefix": "public_listener",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "public_listener_http",
|
||||
"stat_prefix": "public_listener",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -118,7 +118,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "public_listener_http",
|
||||
"stat_prefix": "public_listener",
|
||||
"tracing": {
|
||||
"random_sampling": {
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"domains": [
|
||||
"*"
|
||||
],
|
||||
"name": "db",
|
||||
"name": "db.default.dc1",
|
||||
"routes": [
|
||||
{
|
||||
"match": {
|
||||
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -70,7 +70,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -124,7 +124,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"domains": [
|
||||
"*"
|
||||
],
|
||||
"name": "db",
|
||||
"name": "db.default.dc1",
|
||||
"routes": [
|
||||
{
|
||||
"match": {
|
||||
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -70,7 +70,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -124,7 +124,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"domains": [
|
||||
"*"
|
||||
],
|
||||
"name": "db",
|
||||
"name": "db.default.dc1",
|
||||
"routes": [
|
||||
{
|
||||
"match": {
|
||||
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -70,7 +70,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -124,7 +124,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"domains": [
|
||||
"*"
|
||||
],
|
||||
"name": "db",
|
||||
"name": "db.default.dc1",
|
||||
"routes": [
|
||||
{
|
||||
"match": {
|
||||
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"stat_prefix": "upstream_db_http",
|
||||
"stat_prefix": "upstream.db.default.dc1",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -70,7 +70,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "geo-cache.default.dc1.query.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_prepared_query_geo-cache_tcp"
|
||||
"stat_prefix": "upstream.prepared_query_geo-cache"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -124,7 +124,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "local_app",
|
||||
"stat_prefix": "public_listener_tcp"
|
||||
"stat_prefix": "public_listener"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -63,7 +63,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"name": "envoy.tcp_proxy",
|
||||
"config": {
|
||||
"cluster": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
||||
"stat_prefix": "upstream_db_tcp"
|
||||
"stat_prefix": "upstream.db.default.dc1"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "443"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_443_http",
|
||||
"stat_prefix": "ingress_upstream.443",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -67,7 +67,7 @@
|
|||
},
|
||||
"route_config_name": "8080"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_8080_http",
|
||||
"stat_prefix": "ingress_upstream.8080",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "443"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_443_http",
|
||||
"stat_prefix": "ingress_upstream.443",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -67,7 +67,7 @@
|
|||
},
|
||||
"route_config_name": "8080"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_8080_http",
|
||||
"stat_prefix": "ingress_upstream.8080",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "443"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_443_http",
|
||||
"stat_prefix": "ingress_upstream.443",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -67,7 +67,7 @@
|
|||
},
|
||||
"route_config_name": "8080"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_8080_http",
|
||||
"stat_prefix": "ingress_upstream.8080",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "443"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_443_http",
|
||||
"stat_prefix": "ingress_upstream.443",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
@ -67,7 +67,7 @@
|
|||
},
|
||||
"route_config_name": "8080"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_8080_http",
|
||||
"stat_prefix": "ingress_upstream.8080",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"route_config_name": "9191"
|
||||
},
|
||||
"stat_prefix": "ingress_upstream_9191_http",
|
||||
"stat_prefix": "ingress_upstream.9191",
|
||||
"tracing": {
|
||||
"operation_name": "EGRESS",
|
||||
"random_sampling": {
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue