Last active
April 30, 2019 05:10
-
-
Save gokhansengun/97f903bf67f8362858dda3022817f5c1 to your computer and use it in GitHub Desktop.
Istio - EnvoyFilter Lua Issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static_resources: | |
| listeners: | |
| - address: | |
| socket_address: | |
| address: 0.0.0.0 | |
| port_value: 80 | |
| filter_chains: | |
| - filters: | |
| - name: envoy.http_connection_manager | |
| typed_config: | |
| "@type": type.googleapis.com/envoy.config.filter.network.http_connection_manager.v2.HttpConnectionManager | |
| codec_type: auto | |
| stat_prefix: ingress_http | |
| route_config: | |
| name: local_route | |
| virtual_hosts: | |
| - name: edition_cnn_http | |
| domains: | |
| - "edition.cnn.com" | |
| routes: | |
| - match: | |
| prefix: "/" | |
| route: | |
| cluster: edition_cnn_https | |
| timeout: 15s | |
| http_filters: | |
| - name: envoy.lua | |
| typed_config: | |
| "@type": type.googleapis.com/envoy.config.filter.http.lua.v2.Lua | |
| inline_code: | | |
| function envoy_on_request(request_handle) | |
| request_handle:headers():add("foo", "bar") | |
| end | |
| function envoy_on_response(response_handle) | |
| bufferResp = response_handle:body() | |
| response_handle:logWarn(bufferResp:getBytes(0, bufferResp:length())) | |
| response_handle:headers():add("response-body-size", tostring(bufferResp:length())) | |
| response_handle:logWarn("At the end of response hook!!") | |
| end | |
| - name: envoy.router | |
| typed_config: {} | |
| - address: | |
| socket_address: | |
| address: 0.0.0.0 | |
| port_value: 443 | |
| filter_chains: | |
| - filters: | |
| - name: envoy.http_connection_manager | |
| typed_config: | |
| "@type": type.googleapis.com/envoy.config.filter.network.http_connection_manager.v2.HttpConnectionManager | |
| codec_type: auto | |
| stat_prefix: ingress_http | |
| route_config: | |
| name: local_route | |
| virtual_hosts: | |
| - name: edition_cnn_http | |
| domains: | |
| - "edition.cnn.com:443" | |
| routes: | |
| - match: | |
| prefix: "/" | |
| route: | |
| cluster: edition_cnn_https | |
| timeout: 15s | |
| http_filters: | |
| - name: envoy.router | |
| typed_config: {} | |
| clusters: | |
| - name: edition_cnn_http | |
| connect_timeout: 5s | |
| type: strict_dns | |
| lb_policy: round_robin | |
| dns_lookup_family: V4_ONLY | |
| hosts: | |
| - socket_address: | |
| address: edition.cnn.com | |
| port_value: 80 | |
| - name: edition_cnn_https | |
| connect_timeout: 5s | |
| type: strict_dns | |
| lb_policy: round_robin | |
| dns_lookup_family: V4_ONLY | |
| hosts: | |
| - socket_address: | |
| address: edition.cnn.com | |
| port_value: 443 | |
| tls_context: | |
| sni: edition.cnn.com | |
| admin: | |
| access_log_path: "stdout" | |
| address: | |
| socket_address: | |
| address: 0.0.0.0 | |
| port_value: 8001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configs": [ | |
| { | |
| "@type": "type.googleapis.com/envoy.admin.v2alpha.BootstrapConfigDump", | |
| "bootstrap": { | |
| "node": { | |
| "id": "sidecar~10.44.4.6~sleep-88ddbcfdd-sx72p.default~default.svc.cluster.local", | |
| "cluster": "sleep.default", | |
| "metadata": { | |
| "INTERCEPTION_MODE": "REDIRECT", | |
| "istio": "sidecar", | |
| "ISTIO_PROXY_VERSION": "1.1.3", | |
| "CONFIG_NAMESPACE": "default", | |
| "ISTIO_PROXY_SHA": "istio-proxy:a169a0c0cd86b51538c240e2d037fa8f7f5860ae", | |
| "ISTIO_VERSION": "1.1.3", | |
| "kubernetes.io/limit-ranger": "LimitRanger plugin set: cpu request for container sleep", | |
| "app": "sleep", | |
| "pod-template-hash": "448867988", | |
| "ISTIO_META_INSTANCE_IPS": "10.44.4.6,10.44.4.6,fe80::481e:37ff:fe8d:3553", | |
| "POD_NAME": "sleep-88ddbcfdd-sx72p" | |
| }, | |
| "locality": {}, | |
| "build_version": "a169a0c0cd86b51538c240e2d037fa8f7f5860ae/1.11.0-dev/Clean/RELEASE/BoringSSL" | |
| }, | |
| "static_resources": { | |
| "listeners": [ | |
| { | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 15090 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "stat_prefix": "stats", | |
| "route_config": { | |
| "virtual_hosts": [ | |
| { | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/stats/prometheus" | |
| }, | |
| "route": { | |
| "cluster": "prometheus_stats" | |
| } | |
| } | |
| ], | |
| "domains": [ | |
| "*" | |
| ], | |
| "name": "backend" | |
| } | |
| ] | |
| }, | |
| "codec_type": "AUTO", | |
| "http_filters": { | |
| "name": "envoy.router" | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ], | |
| "clusters": [ | |
| { | |
| "name": "prometheus_stats", | |
| "type": "STATIC", | |
| "connect_timeout": "0.250s", | |
| "hosts": [ | |
| { | |
| "socket_address": { | |
| "address": "127.0.0.1", | |
| "port_value": 15000 | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "xds-grpc", | |
| "type": "STRICT_DNS", | |
| "connect_timeout": "10s", | |
| "hosts": [ | |
| { | |
| "socket_address": { | |
| "address": "istio-pilot.istio-system", | |
| "port_value": 15010 | |
| } | |
| } | |
| ], | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_connections": 100000, | |
| "max_pending_requests": 100000, | |
| "max_requests": 100000 | |
| }, | |
| { | |
| "priority": "HIGH", | |
| "max_connections": 100000, | |
| "max_pending_requests": 100000, | |
| "max_requests": 100000 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": {}, | |
| "dns_lookup_family": "V4_ONLY", | |
| "upstream_connection_options": { | |
| "tcp_keepalive": { | |
| "keepalive_time": 300 | |
| } | |
| } | |
| }, | |
| { | |
| "name": "zipkin", | |
| "type": "STRICT_DNS", | |
| "connect_timeout": "1s", | |
| "hosts": [ | |
| { | |
| "socket_address": { | |
| "address": "zipkin.istio-system", | |
| "port_value": 9411 | |
| } | |
| } | |
| ], | |
| "dns_lookup_family": "V4_ONLY" | |
| } | |
| ] | |
| }, | |
| "dynamic_resources": { | |
| "lds_config": { | |
| "ads": {} | |
| }, | |
| "cds_config": { | |
| "ads": {} | |
| }, | |
| "ads_config": { | |
| "api_type": "GRPC", | |
| "grpc_services": [ | |
| { | |
| "envoy_grpc": { | |
| "cluster_name": "xds-grpc" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| "tracing": { | |
| "http": { | |
| "name": "envoy.zipkin", | |
| "config": { | |
| "collector_endpoint": "/api/v1/spans", | |
| "collector_cluster": "zipkin", | |
| "trace_id_128bit": "true", | |
| "shared_span_context": "false" | |
| } | |
| } | |
| }, | |
| "admin": { | |
| "access_log_path": "/dev/null", | |
| "address": { | |
| "socket_address": { | |
| "address": "127.0.0.1", | |
| "port_value": 15000 | |
| } | |
| } | |
| }, | |
| "stats_config": { | |
| "stats_tags": [ | |
| { | |
| "tag_name": "cluster_name", | |
| "regex": "^cluster\\.((.+?(\\..+?\\.svc\\.cluster\\.local)?)\\.)" | |
| }, | |
| { | |
| "tag_name": "tcp_prefix", | |
| "regex": "^tcp\\.((.*?)\\.)\\w+?$" | |
| }, | |
| { | |
| "tag_name": "response_code", | |
| "regex": "_rq(_(\\d{3}))$" | |
| }, | |
| { | |
| "tag_name": "response_code_class", | |
| "regex": "_rq(_(\\dxx))$" | |
| }, | |
| { | |
| "tag_name": "http_conn_manager_listener_prefix", | |
| "regex": "^listener(?=\\.).*?\\.http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)" | |
| }, | |
| { | |
| "tag_name": "http_conn_manager_prefix", | |
| "regex": "^http\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)" | |
| }, | |
| { | |
| "tag_name": "listener_address", | |
| "regex": "^listener\\.(((?:[_.[:digit:]]*|[_\\[\\]aAbBcCdDeEfF[:digit:]]*))\\.)" | |
| }, | |
| { | |
| "tag_name": "mongo_prefix", | |
| "regex": "^mongo\\.(.+?)\\.(collection|cmd|cx_|op_|delays_|decoding_)(.*?)$" | |
| } | |
| ], | |
| "use_all_default_tags": false, | |
| "stats_matcher": { | |
| "inclusion_list": { | |
| "patterns": [ | |
| { | |
| "prefix": "cluster_manager" | |
| }, | |
| { | |
| "prefix": "listener_manager" | |
| }, | |
| { | |
| "prefix": "http_mixer_filter" | |
| }, | |
| { | |
| "prefix": "tcp_mixer_filter" | |
| }, | |
| { | |
| "prefix": "server" | |
| }, | |
| { | |
| "prefix": "cluster.xds-grpc" | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:17.955Z" | |
| }, | |
| { | |
| "@type": "type.googleapis.com/envoy.admin.v2alpha.ClustersConfigDump", | |
| "version_info": "2019-04-30T05:10:07Z/23", | |
| "static_clusters": [ | |
| { | |
| "cluster": { | |
| "name": "prometheus_stats", | |
| "type": "STATIC", | |
| "connect_timeout": "0.250s", | |
| "hosts": [ | |
| { | |
| "socket_address": { | |
| "address": "127.0.0.1", | |
| "port_value": 15000 | |
| } | |
| } | |
| ] | |
| }, | |
| "last_updated": "2019-04-30T04:34:17.957Z" | |
| }, | |
| { | |
| "cluster": { | |
| "name": "xds-grpc", | |
| "type": "STRICT_DNS", | |
| "connect_timeout": "10s", | |
| "hosts": [ | |
| { | |
| "socket_address": { | |
| "address": "istio-pilot.istio-system", | |
| "port_value": 15010 | |
| } | |
| } | |
| ], | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_connections": 100000, | |
| "max_pending_requests": 100000, | |
| "max_requests": 100000 | |
| }, | |
| { | |
| "priority": "HIGH", | |
| "max_connections": 100000, | |
| "max_pending_requests": 100000, | |
| "max_requests": 100000 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": {}, | |
| "dns_lookup_family": "V4_ONLY", | |
| "upstream_connection_options": { | |
| "tcp_keepalive": { | |
| "keepalive_time": 300 | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:17.958Z" | |
| }, | |
| { | |
| "cluster": { | |
| "name": "zipkin", | |
| "type": "STRICT_DNS", | |
| "connect_timeout": "1s", | |
| "hosts": [ | |
| { | |
| "socket_address": { | |
| "address": "zipkin.istio-system", | |
| "port_value": 9411 | |
| } | |
| } | |
| ], | |
| "dns_lookup_family": "V4_ONLY" | |
| }, | |
| "last_updated": "2019-04-30T04:34:17.958Z" | |
| } | |
| ], | |
| "dynamic_active_clusters": [ | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "BlackHoleCluster", | |
| "type": "STATIC", | |
| "connect_timeout": "10s" | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.189Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "PassthroughCluster", | |
| "type": "ORIGINAL_DST", | |
| "connect_timeout": "10s", | |
| "lb_policy": "ORIGINAL_DST_LB" | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.190Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "inbound|15020|mgmt-15020|mgmtCluster", | |
| "type": "STATIC", | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| {} | |
| ] | |
| }, | |
| "load_assignment": { | |
| "cluster_name": "inbound|15020|mgmt-15020|mgmtCluster", | |
| "endpoints": [ | |
| { | |
| "lb_endpoints": [ | |
| { | |
| "endpoint": { | |
| "address": { | |
| "socket_address": { | |
| "address": "127.0.0.1", | |
| "port_value": 15020 | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.189Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "type": "STATIC", | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| {} | |
| ] | |
| }, | |
| "load_assignment": { | |
| "cluster_name": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "endpoints": [ | |
| { | |
| "lb_endpoints": [ | |
| { | |
| "endpoint": { | |
| "address": { | |
| "socket_address": { | |
| "address": "127.0.0.1", | |
| "port_value": 80 | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.189Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15004||istio-policy.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15004||istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "max_requests_per_connection": 10000, | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_requests": 10000, | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": { | |
| "max_concurrent_streams": 1073741824 | |
| }, | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/istio-system/destination-rule/istio-policy" | |
| } | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.187Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15004||istio-telemetry.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15004||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "max_requests_per_connection": 10000, | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_requests": 10000, | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": { | |
| "max_concurrent_streams": 1073741824 | |
| }, | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/istio-system/destination-rule/istio-telemetry" | |
| } | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.188Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15010||istio-pilot.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15010||istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": { | |
| "max_concurrent_streams": 1073741824 | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.186Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15011||istio-pilot.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15011||istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.187Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15014||istio-citadel.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15014||istio-citadel.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.186Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15014||istio-galley.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15014||istio-galley.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.185Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15014||istio-pilot.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15014||istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.187Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15014||istio-policy.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15014||istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "max_requests_per_connection": 10000, | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_requests": 10000, | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/istio-system/destination-rule/istio-policy" | |
| } | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.187Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15014||istio-telemetry.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15014||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "max_requests_per_connection": 10000, | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_requests": 10000, | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/istio-system/destination-rule/istio-telemetry" | |
| } | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.188Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15020||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15020||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.185Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15029||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15029||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.185Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15030||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15030||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.186Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15031||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15031||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.186Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15032||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15032||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.186Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|15443||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|15443||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.186Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|31400||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|31400||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.185Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|42422||istio-telemetry.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|42422||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "max_requests_per_connection": 10000, | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_requests": 10000, | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/istio-system/destination-rule/istio-telemetry" | |
| } | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.188Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|44134||tiller-deploy.kube-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|44134||tiller-deploy.kube-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.184Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:36:15Z/16", | |
| "cluster": { | |
| "name": "outbound|443||edition.cnn.com", | |
| "type": "STRICT_DNS", | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "tls_context": { | |
| "common_tls_context": {} | |
| }, | |
| "dns_refresh_rate": "5s", | |
| "dns_lookup_family": "V4_ONLY", | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/default/destination-rule/edition-cnn-com" | |
| } | |
| } | |
| }, | |
| "load_assignment": { | |
| "cluster_name": "outbound|443||edition.cnn.com", | |
| "endpoints": [ | |
| { | |
| "lb_endpoints": [ | |
| { | |
| "endpoint": { | |
| "address": { | |
| "socket_address": { | |
| "address": "edition.cnn.com", | |
| "port_value": 443 | |
| } | |
| } | |
| }, | |
| "load_balancing_weight": 1 | |
| } | |
| ], | |
| "load_balancing_weight": 1 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:36:15.253Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|443||istio-galley.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|443||istio-galley.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.185Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|443||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|443||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.185Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|443||istio-sidecar-injector.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|443||istio-sidecar-injector.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.187Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|443||kubernetes.default.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|443||kubernetes.default.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.184Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|443||metrics-server.kube-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|443||metrics-server.kube-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.184Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|53||kube-dns.kube-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|53||kube-dns.kube-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.184Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|8060||istio-citadel.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|8060||istio-citadel.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": { | |
| "max_concurrent_streams": 1073741824 | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.186Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|8080||istio-pilot.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|8080||istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.187Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|80||default-http-backend.kube-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|80||default-http-backend.kube-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.184Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:36:15Z/16", | |
| "cluster": { | |
| "name": "outbound|80||edition.cnn.com", | |
| "type": "STRICT_DNS", | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "dns_refresh_rate": "5s", | |
| "dns_lookup_family": "V4_ONLY", | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/default/destination-rule/edition-cnn-com" | |
| } | |
| } | |
| }, | |
| "load_assignment": { | |
| "cluster_name": "outbound|80||edition.cnn.com", | |
| "endpoints": [ | |
| { | |
| "lb_endpoints": [ | |
| { | |
| "endpoint": { | |
| "address": { | |
| "socket_address": { | |
| "address": "edition.cnn.com", | |
| "port_value": 80 | |
| } | |
| } | |
| }, | |
| "load_balancing_weight": 1 | |
| } | |
| ], | |
| "load_balancing_weight": 1 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:36:15.252Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|80||heapster.kube-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|80||heapster.kube-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.184Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|80||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|80||istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": { | |
| "max_concurrent_streams": 1073741824 | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.185Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|80||sleep.default.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|80||sleep.default.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.189Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|9080||details.default.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|9080||details.default.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.188Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|9080||productpage.default.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|9080||productpage.default.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.189Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|9080||ratings.default.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|9080||ratings.default.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.188Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|9080||reviews.default.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|9080||reviews.default.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.189Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|9090||prometheus.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|9090||prometheus.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.188Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|9091||istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "max_requests_per_connection": 10000, | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_requests": 10000, | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": { | |
| "max_concurrent_streams": 1073741824 | |
| }, | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/istio-system/destination-rule/istio-policy" | |
| } | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.187Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "max_requests_per_connection": 10000, | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_requests": 10000, | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": { | |
| "max_concurrent_streams": 1073741824 | |
| }, | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/istio-system/destination-rule/istio-telemetry" | |
| } | |
| } | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.188Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "cluster": { | |
| "name": "outbound|9901||istio-galley.istio-system.svc.cluster.local", | |
| "type": "EDS", | |
| "eds_cluster_config": { | |
| "eds_config": { | |
| "ads": {} | |
| }, | |
| "service_name": "outbound|9901||istio-galley.istio-system.svc.cluster.local" | |
| }, | |
| "connect_timeout": "10s", | |
| "circuit_breakers": { | |
| "thresholds": [ | |
| { | |
| "max_retries": 1024 | |
| } | |
| ] | |
| }, | |
| "http2_protocol_options": { | |
| "max_concurrent_streams": 1073741824 | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.185Z" | |
| } | |
| ] | |
| }, | |
| { | |
| "@type": "type.googleapis.com/envoy.admin.v2alpha.ListenersConfigDump", | |
| "version_info": "2019-04-30T05:10:07Z/23", | |
| "static_listeners": [ | |
| { | |
| "listener": { | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 15090 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "route_config": { | |
| "virtual_hosts": [ | |
| { | |
| "name": "backend", | |
| "routes": [ | |
| { | |
| "route": { | |
| "cluster": "prometheus_stats" | |
| }, | |
| "match": { | |
| "prefix": "/stats/prometheus" | |
| } | |
| } | |
| ], | |
| "domains": [ | |
| "*" | |
| ] | |
| } | |
| ] | |
| }, | |
| "codec_type": "AUTO", | |
| "http_filters": { | |
| "name": "envoy.router" | |
| }, | |
| "stat_prefix": "stats" | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "last_updated": "2019-04-30T04:34:17.962Z" | |
| } | |
| ], | |
| "dynamic_active_listeners": [ | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.44.4.6_80", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.44.4.6", | |
| "port_value": 80 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filter_chain_match": { | |
| "application_protocols": [ | |
| "istio" | |
| ] | |
| }, | |
| "tls_context": { | |
| "common_tls_context": { | |
| "tls_certificates": [ | |
| { | |
| "certificate_chain": { | |
| "filename": "/etc/certs/cert-chain.pem" | |
| }, | |
| "private_key": { | |
| "filename": "/etc/certs/key.pem" | |
| } | |
| } | |
| ], | |
| "validation_context": { | |
| "trusted_ca": { | |
| "filename": "/etc/certs/root-cert.pem" | |
| } | |
| }, | |
| "alpn_protocols": [ | |
| "h2", | |
| "http/1.1" | |
| ] | |
| }, | |
| "require_client_certificate": true | |
| }, | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "use_remote_address": false, | |
| "stat_prefix": "10.44.4.6_80", | |
| "set_current_client_cert_details": { | |
| "dns": true, | |
| "subject": true, | |
| "uri": true | |
| }, | |
| "stream_idle_timeout": "0s", | |
| "forward_client_cert_details": "APPEND_FORWARD", | |
| "access_log": [], | |
| "server_name": "istio-envoy", | |
| "http_filters": [ | |
| { | |
| "name": "istio_authn", | |
| "config": { | |
| "policy": { | |
| "peers": [ | |
| { | |
| "mtls": { | |
| "mode": "PERMISSIVE" | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.kind": { | |
| "string_value": "inbound" | |
| }, | |
| "destination.port": { | |
| "int64_value": "80" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "destination.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.ip": { | |
| "bytes_value": "AAAAAAAAAAAAAP//CiwEBg==" | |
| }, | |
| "destination.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "route_config": { | |
| "virtual_hosts": [ | |
| { | |
| "routes": [ | |
| { | |
| "decorator": { | |
| "operation": "sleep.default.svc.cluster.local:80/*" | |
| }, | |
| "route": { | |
| "cluster": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "timeout": "0s", | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "sleep.default.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/sleep" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "sleep" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "match": { | |
| "prefix": "/" | |
| } | |
| } | |
| ], | |
| "domains": [ | |
| "*" | |
| ], | |
| "name": "inbound|http|80" | |
| } | |
| ], | |
| "name": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "validate_clusters": false | |
| }, | |
| "generate_request_id": true, | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "tracing": { | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "filter_chain_match": {}, | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "generate_request_id": true, | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "client_sampling": { | |
| "value": 100 | |
| } | |
| }, | |
| "stat_prefix": "10.44.4.6_80", | |
| "use_remote_address": false, | |
| "set_current_client_cert_details": { | |
| "dns": true, | |
| "uri": true, | |
| "subject": true | |
| }, | |
| "stream_idle_timeout": "0s", | |
| "forward_client_cert_details": "APPEND_FORWARD", | |
| "access_log": [], | |
| "server_name": "istio-envoy", | |
| "http_filters": [ | |
| { | |
| "name": "istio_authn", | |
| "config": { | |
| "policy": { | |
| "peers": [ | |
| { | |
| "mtls": { | |
| "mode": "PERMISSIVE" | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.ip": { | |
| "bytes_value": "AAAAAAAAAAAAAP//CiwEBg==" | |
| }, | |
| "destination.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "inbound" | |
| }, | |
| "destination.port": { | |
| "int64_value": "80" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "destination.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "route_config": { | |
| "validate_clusters": false, | |
| "virtual_hosts": [ | |
| { | |
| "domains": [ | |
| "*" | |
| ], | |
| "name": "inbound|http|80", | |
| "routes": [ | |
| { | |
| "decorator": { | |
| "operation": "sleep.default.svc.cluster.local:80/*" | |
| }, | |
| "route": { | |
| "max_grpc_timeout": "0s", | |
| "cluster": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "timeout": "0s" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "sleep" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "sleep.default.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/sleep" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "match": { | |
| "prefix": "/" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "name": "inbound|80|http|sleep.default.svc.cluster.local" | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| }, | |
| "listener_filters": [ | |
| { | |
| "name": "envoy.listener.tls_inspector" | |
| } | |
| ] | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.229Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.246.159_80", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.246.159", | |
| "port_value": 80 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local", | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "heapster.kube-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://kube-system/services/heapster" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "kube-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "heapster" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|80||heapster.kube-system.svc.cluster.local", | |
| "cluster": "outbound|80||heapster.kube-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.229Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.243.230_15443", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.243.230", | |
| "port_value": 15443 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|15443||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "cluster": "outbound|15443||istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.230Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.246.77_42422", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.246.77", | |
| "port_value": 42422 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-telemetry" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-telemetry" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|42422||istio-telemetry.istio-system.svc.cluster.local", | |
| "cluster": "outbound|42422||istio-telemetry.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.230Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.240.10_53", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.240.10", | |
| "port_value": 53 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "kube-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "kube-dns" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://kube-system/services/kube-dns" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "kube-dns.kube-system.svc.cluster.local" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "cluster": "outbound|53||kube-dns.kube-system.svc.cluster.local", | |
| "stat_prefix": "outbound|53||kube-dns.kube-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.231Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.245.29_44134", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.245.29", | |
| "port_value": 44134 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "tiller-deploy.kube-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://kube-system/services/tiller-deploy" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "tiller-deploy" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "kube-system" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "cluster": "outbound|44134||tiller-deploy.kube-system.svc.cluster.local", | |
| "stat_prefix": "outbound|44134||tiller-deploy.kube-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.231Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.250.7_15011", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.250.7", | |
| "port_value": 15011 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-pilot" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-pilot" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|15011||istio-pilot.istio-system.svc.cluster.local", | |
| "cluster": "outbound|15011||istio-pilot.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.232Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.240.1_443", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.240.1", | |
| "port_value": 443 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/kubernetes" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "kubernetes.default.svc.cluster.local" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "kubernetes" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "transport": { | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local", | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|443||kubernetes.default.svc.cluster.local", | |
| "cluster": "outbound|443||kubernetes.default.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.232Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.243.230_15029", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.243.230", | |
| "port_value": 15029 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local", | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|15029||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "cluster": "outbound|15029||istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.233Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.246.8_443", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.246.8", | |
| "port_value": 443 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-sidecar-injector" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-sidecar-injector.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-sidecar-injector" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true, | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "cluster": "outbound|443||istio-sidecar-injector.istio-system.svc.cluster.local", | |
| "stat_prefix": "outbound|443||istio-sidecar-injector.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.233Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.243.230_15020", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.243.230", | |
| "port_value": 15020 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|15020||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "cluster": "outbound|15020||istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.234Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.243.230_15031", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.243.230", | |
| "port_value": 15031 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local", | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| } | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|15031||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "cluster": "outbound|15031||istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.234Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.246.67_443", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.246.67", | |
| "port_value": 443 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-galley.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-galley" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-galley" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|443||istio-galley.istio-system.svc.cluster.local", | |
| "cluster": "outbound|443||istio-galley.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.235Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.243.230_31400", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.243.230", | |
| "port_value": 31400 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|31400||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "cluster": "outbound|31400||istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.235Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.243.230_443", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.243.230", | |
| "port_value": 443 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|443||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "cluster": "outbound|443||istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.236Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.243.230_15030", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.243.230", | |
| "port_value": 15030 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|15030||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "cluster": "outbound|15030||istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.236Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.245.223_443", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.245.223", | |
| "port_value": 443 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://kube-system/services/metrics-server" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "metrics-server.kube-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "kube-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "metrics-server" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|443||metrics-server.kube-system.svc.cluster.local", | |
| "cluster": "outbound|443||metrics-server.kube-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.237Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.47.243.230_15032", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.47.243.230", | |
| "port_value": 15032 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "outbound|15032||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "cluster": "outbound|15032||istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.237Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_8080", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 8080 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "generate_request_id": true, | |
| "stream_idle_timeout": "0s", | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS" | |
| }, | |
| "rds": { | |
| "route_config_name": "8080", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "stat_prefix": "0.0.0.0_8080", | |
| "use_remote_address": false | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.238Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_9080", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 9080 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS" | |
| }, | |
| "stat_prefix": "0.0.0.0_9080", | |
| "rds": { | |
| "route_config_name": "9080", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "use_remote_address": false, | |
| "generate_request_id": true, | |
| "stream_idle_timeout": "0s", | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ] | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.240Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_9090", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 9090 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS" | |
| }, | |
| "stat_prefix": "0.0.0.0_9090", | |
| "rds": { | |
| "route_config_name": "9090", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "use_remote_address": false, | |
| "stream_idle_timeout": "0s", | |
| "generate_request_id": true, | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "transport": { | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local", | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ] | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.241Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_9901", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 9901 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS" | |
| }, | |
| "rds": { | |
| "route_config_name": "9901", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "use_remote_address": false, | |
| "stat_prefix": "0.0.0.0_9901", | |
| "generate_request_id": true, | |
| "stream_idle_timeout": "0s", | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default" | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ] | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.242Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_8060", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 8060 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "rds": { | |
| "route_config_name": "8060", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "use_remote_address": false, | |
| "stat_prefix": "0.0.0.0_8060", | |
| "generate_request_id": true, | |
| "stream_idle_timeout": "0s", | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "operation_name": "EGRESS", | |
| "client_sampling": { | |
| "value": 100 | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.243Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_9091", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 9091 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "tracing": { | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS", | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| } | |
| }, | |
| "use_remote_address": false, | |
| "rds": { | |
| "route_config_name": "9091", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "stat_prefix": "0.0.0.0_9091", | |
| "stream_idle_timeout": "0s", | |
| "generate_request_id": true, | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| }, | |
| "name": "mixer" | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ] | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.244Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T05:10:07Z/23", | |
| "listener": { | |
| "name": "0.0.0.0_80", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 80 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "generate_request_id": true, | |
| "stream_idle_timeout": "0s", | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "envoy.lua", | |
| "config": { | |
| "inlineCode": "function envoy_on_request(request_handle)\n request_handle:headers():add(\"foo\", \"bar\")\nend\n\nfunction envoy_on_response(response_handle)\n bufferResp = response_handle:body()\n response_handle:logWarn(bufferResp:length())\n response_handle:headers():add(\"response-body-size\", tostring(bufferResp:length()))\n response_handle:logWarn(\"At the end of response hook!!\")\nend\n" | |
| } | |
| }, | |
| { | |
| "config": { | |
| "default_destination_service": "default", | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| } | |
| }, | |
| "name": "mixer" | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS" | |
| }, | |
| "use_remote_address": false, | |
| "stat_prefix": "0.0.0.0_80", | |
| "rds": { | |
| "route_config_name": "80", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.515Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_15014", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 15014 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "tracing": { | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS", | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| } | |
| }, | |
| "stat_prefix": "0.0.0.0_15014", | |
| "use_remote_address": false, | |
| "rds": { | |
| "route_config_name": "15014", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "generate_request_id": true, | |
| "stream_idle_timeout": "0s", | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ] | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.246Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_15004", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 15004 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "operation_name": "EGRESS", | |
| "client_sampling": { | |
| "value": 100 | |
| } | |
| }, | |
| "stat_prefix": "0.0.0.0_15004", | |
| "use_remote_address": false, | |
| "rds": { | |
| "config_source": { | |
| "ads": {} | |
| }, | |
| "route_config_name": "15004" | |
| }, | |
| "stream_idle_timeout": "0s", | |
| "generate_request_id": true, | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [] | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.247Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "0.0.0.0_15010", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 15010 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "tracing": { | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| }, | |
| "operation_name": "EGRESS", | |
| "client_sampling": { | |
| "value": 100 | |
| } | |
| }, | |
| "rds": { | |
| "route_config_name": "15010", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "stat_prefix": "0.0.0.0_15010", | |
| "use_remote_address": false, | |
| "stream_idle_timeout": "0s", | |
| "generate_request_id": true, | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ] | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.248Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "10.44.4.6_15020", | |
| "address": { | |
| "socket_address": { | |
| "address": "10.44.4.6", | |
| "port_value": 15020 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "inbound|15020|mgmt-15020|mgmtCluster", | |
| "cluster": "inbound|15020|mgmt-15020|mgmtCluster" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.249Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "listener": { | |
| "name": "virtual", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 15001 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.tcp_proxy", | |
| "config": { | |
| "stat_prefix": "PassthroughCluster", | |
| "cluster": "PassthroughCluster" | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "use_original_dst": true | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.249Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:36:15Z/16", | |
| "listener": { | |
| "name": "0.0.0.0_443", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 443 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "generate_request_id": true, | |
| "stream_idle_timeout": "0s", | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "network_fail_policy": { | |
| "policy": "FAIL_CLOSE", | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local", | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "tracing": { | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS", | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| } | |
| }, | |
| "stat_prefix": "0.0.0.0_443", | |
| "use_remote_address": false, | |
| "rds": { | |
| "route_config_name": "443", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T04:36:15.418Z" | |
| } | |
| ], | |
| "dynamic_draining_listeners": [ | |
| { | |
| "version_info": "2019-04-30T05:06:13Z/22", | |
| "listener": { | |
| "name": "0.0.0.0_80", | |
| "address": { | |
| "socket_address": { | |
| "address": "0.0.0.0", | |
| "port_value": 80 | |
| } | |
| }, | |
| "filter_chains": [ | |
| { | |
| "filters": [ | |
| { | |
| "name": "envoy.http_connection_manager", | |
| "config": { | |
| "rds": { | |
| "route_config_name": "80", | |
| "config_source": { | |
| "ads": {} | |
| } | |
| }, | |
| "stat_prefix": "0.0.0.0_80", | |
| "use_remote_address": false, | |
| "stream_idle_timeout": "0s", | |
| "generate_request_id": true, | |
| "upgrade_configs": [ | |
| { | |
| "upgrade_type": "websocket" | |
| } | |
| ], | |
| "access_log": [], | |
| "http_filters": [ | |
| { | |
| "name": "envoy.lua", | |
| "config": { | |
| "inlineCode": "function envoy_on_request(request_handle)\n request_handle:headers():add(\"foo\", \"bar\")\nend\n\nfunction envoy_on_response(response_handle)\n bufferResp = response_handle:body()\n -- response_handle:logWarn(bufferResp:length())\n response_handle:headers():add(\"response-body-size\", tostring(body_size))\n response_handle:logWarn(\"At the end of response hook!!\")\nend\n" | |
| } | |
| }, | |
| { | |
| "name": "mixer", | |
| "config": { | |
| "transport": { | |
| "check_cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "network_fail_policy": { | |
| "max_retry_wait": "1s", | |
| "base_retry_wait": "0.080s", | |
| "policy": "FAIL_CLOSE" | |
| }, | |
| "report_cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "service_configs": { | |
| "default": { | |
| "disable_check_calls": true | |
| } | |
| }, | |
| "default_destination_service": "default", | |
| "mixer_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| }, | |
| "context.reporter.kind": { | |
| "string_value": "outbound" | |
| }, | |
| "source.namespace": { | |
| "string_value": "default" | |
| }, | |
| "context.reporter.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| }, | |
| "forward_attributes": { | |
| "attributes": { | |
| "source.uid": { | |
| "string_value": "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "envoy.cors" | |
| }, | |
| { | |
| "name": "envoy.fault" | |
| }, | |
| { | |
| "name": "envoy.router" | |
| } | |
| ], | |
| "tracing": { | |
| "client_sampling": { | |
| "value": 100 | |
| }, | |
| "operation_name": "EGRESS", | |
| "overall_sampling": { | |
| "value": 100 | |
| }, | |
| "random_sampling": { | |
| "value": 1 | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "deprecated_v1": { | |
| "bind_to_port": false | |
| } | |
| }, | |
| "last_updated": "2019-04-30T05:06:13.713Z" | |
| } | |
| ] | |
| }, | |
| { | |
| "@type": "type.googleapis.com/envoy.admin.v2alpha.RoutesConfigDump", | |
| "static_route_configs": [ | |
| { | |
| "route_config": { | |
| "name": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "virtual_hosts": [ | |
| { | |
| "name": "inbound|http|80", | |
| "domains": [ | |
| "*" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "timeout": "0s", | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "sleep.default.svc.cluster.local:80/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/sleep" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "sleep.default.svc.cluster.local" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "sleep" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.228Z" | |
| }, | |
| { | |
| "route_config": { | |
| "name": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "virtual_hosts": [ | |
| { | |
| "name": "inbound|http|80", | |
| "domains": [ | |
| "*" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "inbound|80|http|sleep.default.svc.cluster.local", | |
| "timeout": "0s", | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "sleep.default.svc.cluster.local:80/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "disable_check_calls": true, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/sleep" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "sleep.default.svc.cluster.local" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "sleep" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T04:34:18.226Z" | |
| }, | |
| { | |
| "route_config": { | |
| "virtual_hosts": [ | |
| { | |
| "name": "backend", | |
| "domains": [ | |
| "*" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/stats/prometheus" | |
| }, | |
| "route": { | |
| "cluster": "prometheus_stats" | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "last_updated": "2019-04-30T04:34:17.962Z" | |
| } | |
| ], | |
| "dynamic_route_configs": [ | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "9901", | |
| "virtual_hosts": [ | |
| { | |
| "name": "istio-galley.istio-system.svc.cluster.local:9901", | |
| "domains": [ | |
| "istio-galley.istio-system.svc.cluster.local", | |
| "istio-galley.istio-system.svc.cluster.local:9901", | |
| "istio-galley.istio-system", | |
| "istio-galley.istio-system:9901", | |
| "istio-galley.istio-system.svc.cluster", | |
| "istio-galley.istio-system.svc.cluster:9901", | |
| "istio-galley.istio-system.svc", | |
| "istio-galley.istio-system.svc:9901", | |
| "10.47.246.67", | |
| "10.47.246.67:9901" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|9901||istio-galley.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-galley.istio-system.svc.cluster.local:9901/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.name": { | |
| "string_value": "istio-galley" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-galley.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-galley" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-galley" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-galley.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-galley" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.519Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "9090", | |
| "virtual_hosts": [ | |
| { | |
| "name": "prometheus.istio-system.svc.cluster.local:9090", | |
| "domains": [ | |
| "prometheus.istio-system.svc.cluster.local", | |
| "prometheus.istio-system.svc.cluster.local:9090", | |
| "prometheus.istio-system", | |
| "prometheus.istio-system:9090", | |
| "prometheus.istio-system.svc.cluster", | |
| "prometheus.istio-system.svc.cluster:9090", | |
| "prometheus.istio-system.svc", | |
| "prometheus.istio-system.svc:9090", | |
| "10.47.250.185", | |
| "10.47.250.185:9090" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|9090||prometheus.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "prometheus.istio-system.svc.cluster.local:9090/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/prometheus" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "prometheus.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "prometheus" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/prometheus" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "prometheus.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "prometheus" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.519Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "9080", | |
| "virtual_hosts": [ | |
| { | |
| "name": "details.default.svc.cluster.local:9080", | |
| "domains": [ | |
| "details.default.svc.cluster.local", | |
| "details.default.svc.cluster.local:9080", | |
| "details", | |
| "details:9080", | |
| "details.default.svc.cluster", | |
| "details.default.svc.cluster:9080", | |
| "details.default.svc", | |
| "details.default.svc:9080", | |
| "details.default", | |
| "details.default:9080", | |
| "10.47.240.61", | |
| "10.47.240.61:9080" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|9080||details.default.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "details.default.svc.cluster.local:9080/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.name": { | |
| "string_value": "details" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "details.default.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/details" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "details" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/details" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "details.default.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "productpage.default.svc.cluster.local:9080", | |
| "domains": [ | |
| "productpage.default.svc.cluster.local", | |
| "productpage.default.svc.cluster.local:9080", | |
| "productpage", | |
| "productpage:9080", | |
| "productpage.default.svc.cluster", | |
| "productpage.default.svc.cluster:9080", | |
| "productpage.default.svc", | |
| "productpage.default.svc:9080", | |
| "productpage.default", | |
| "productpage.default:9080", | |
| "10.47.241.53", | |
| "10.47.241.53:9080" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|9080||productpage.default.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "productpage.default.svc.cluster.local:9080/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "productpage" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/productpage" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "productpage.default.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "productpage" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/productpage" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "productpage.default.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "ratings.default.svc.cluster.local:9080", | |
| "domains": [ | |
| "ratings.default.svc.cluster.local", | |
| "ratings.default.svc.cluster.local:9080", | |
| "ratings", | |
| "ratings:9080", | |
| "ratings.default.svc.cluster", | |
| "ratings.default.svc.cluster:9080", | |
| "ratings.default.svc", | |
| "ratings.default.svc:9080", | |
| "ratings.default", | |
| "ratings.default:9080", | |
| "10.47.255.222", | |
| "10.47.255.222:9080" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|9080||ratings.default.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "ratings.default.svc.cluster.local:9080/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "ratings.default.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/ratings" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "ratings" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "ratings" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "ratings.default.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/ratings" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "reviews.default.svc.cluster.local:9080", | |
| "domains": [ | |
| "reviews.default.svc.cluster.local", | |
| "reviews.default.svc.cluster.local:9080", | |
| "reviews", | |
| "reviews:9080", | |
| "reviews.default.svc.cluster", | |
| "reviews.default.svc.cluster:9080", | |
| "reviews.default.svc", | |
| "reviews.default.svc:9080", | |
| "reviews.default", | |
| "reviews.default:9080", | |
| "10.47.243.31", | |
| "10.47.243.31:9080" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|9080||reviews.default.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "reviews.default.svc.cluster.local:9080/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "reviews.default.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/reviews" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "reviews" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "reviews" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "reviews.default.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/reviews" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.519Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:36:15Z/16", | |
| "route_config": { | |
| "name": "443", | |
| "virtual_hosts": [ | |
| { | |
| "name": "edition.cnn.com:443", | |
| "domains": [ | |
| "edition.cnn.com", | |
| "edition.cnn.com:443" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|443||edition.cnn.com", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "edition.cnn.com:443/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "edition.cnn.com" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "edition.cnn.com" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "edition.cnn.com" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "edition.cnn.com" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.518Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "8060", | |
| "virtual_hosts": [ | |
| { | |
| "name": "istio-citadel.istio-system.svc.cluster.local:8060", | |
| "domains": [ | |
| "istio-citadel.istio-system.svc.cluster.local", | |
| "istio-citadel.istio-system.svc.cluster.local:8060", | |
| "istio-citadel.istio-system", | |
| "istio-citadel.istio-system:8060", | |
| "istio-citadel.istio-system.svc.cluster", | |
| "istio-citadel.istio-system.svc.cluster:8060", | |
| "istio-citadel.istio-system.svc", | |
| "istio-citadel.istio-system.svc:8060", | |
| "10.47.242.140", | |
| "10.47.242.140:8060" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|8060||istio-citadel.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-citadel.istio-system.svc.cluster.local:8060/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-citadel" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-citadel.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-citadel" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "istio-citadel.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-citadel" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-citadel" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.519Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "8080", | |
| "virtual_hosts": [ | |
| { | |
| "name": "istio-pilot.istio-system.svc.cluster.local:8080", | |
| "domains": [ | |
| "istio-pilot.istio-system.svc.cluster.local", | |
| "istio-pilot.istio-system.svc.cluster.local:8080", | |
| "istio-pilot.istio-system", | |
| "istio-pilot.istio-system:8080", | |
| "istio-pilot.istio-system.svc.cluster", | |
| "istio-pilot.istio-system.svc.cluster:8080", | |
| "istio-pilot.istio-system.svc", | |
| "istio-pilot.istio-system.svc:8080", | |
| "10.47.250.7", | |
| "10.47.250.7:8080" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|8080||istio-pilot.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-pilot.istio-system.svc.cluster.local:8080/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-pilot" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-pilot" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-pilot" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-pilot" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.520Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "9091", | |
| "virtual_hosts": [ | |
| { | |
| "name": "istio-policy.istio-system.svc.cluster.local:9091", | |
| "domains": [ | |
| "istio-policy.istio-system.svc.cluster.local", | |
| "istio-policy.istio-system.svc.cluster.local:9091", | |
| "istio-policy.istio-system", | |
| "istio-policy.istio-system:9091", | |
| "istio-policy.istio-system.svc.cluster", | |
| "istio-policy.istio-system.svc.cluster:9091", | |
| "istio-policy.istio-system.svc", | |
| "istio-policy.istio-system.svc:9091", | |
| "10.47.251.187", | |
| "10.47.251.187:9091" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|9091||istio-policy.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-policy.istio-system.svc.cluster.local:9091/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-policy" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-policy" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-policy" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-policy" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-policy.istio-system.svc.cluster.local" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "istio-telemetry.istio-system.svc.cluster.local:9091", | |
| "domains": [ | |
| "istio-telemetry.istio-system.svc.cluster.local", | |
| "istio-telemetry.istio-system.svc.cluster.local:9091", | |
| "istio-telemetry.istio-system", | |
| "istio-telemetry.istio-system:9091", | |
| "istio-telemetry.istio-system.svc.cluster", | |
| "istio-telemetry.istio-system.svc.cluster:9091", | |
| "istio-telemetry.istio-system.svc", | |
| "istio-telemetry.istio-system.svc:9091", | |
| "10.47.246.77", | |
| "10.47.246.77:9091" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|9091||istio-telemetry.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-telemetry.istio-system.svc.cluster.local:9091/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-telemetry" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-telemetry" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-telemetry.istio-system.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-telemetry" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-telemetry" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-telemetry.istio-system.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.519Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:36:15Z/16", | |
| "route_config": { | |
| "name": "80", | |
| "virtual_hosts": [ | |
| { | |
| "name": "default-http-backend.kube-system.svc.cluster.local:80", | |
| "domains": [ | |
| "default-http-backend.kube-system.svc.cluster.local", | |
| "default-http-backend.kube-system.svc.cluster.local:80", | |
| "default-http-backend.kube-system", | |
| "default-http-backend.kube-system:80", | |
| "default-http-backend.kube-system.svc.cluster", | |
| "default-http-backend.kube-system.svc.cluster:80", | |
| "default-http-backend.kube-system.svc", | |
| "default-http-backend.kube-system.svc:80", | |
| "10.47.255.47", | |
| "10.47.255.47:80" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|80||default-http-backend.kube-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "default-http-backend.kube-system.svc.cluster.local:80/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://kube-system/services/default-http-backend" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "default-http-backend.kube-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "kube-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "default-http-backend" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "kube-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "default-http-backend" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "default-http-backend.kube-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://kube-system/services/default-http-backend" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "edition.cnn.com:80", | |
| "domains": [ | |
| "edition.cnn.com", | |
| "edition.cnn.com:80" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|443||edition.cnn.com", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "metadata": { | |
| "filter_metadata": { | |
| "istio": { | |
| "config": "/apis/networking/v1alpha3/namespaces/default/virtual-service/edition-cnn-com" | |
| } | |
| } | |
| }, | |
| "decorator": { | |
| "operation": "edition.cnn.com:443/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "edition.cnn.com" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "edition.cnn.com" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "edition.cnn.com" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "edition.cnn.com" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "istio-ingressgateway.istio-system.svc.cluster.local:80", | |
| "domains": [ | |
| "istio-ingressgateway.istio-system.svc.cluster.local", | |
| "istio-ingressgateway.istio-system.svc.cluster.local:80", | |
| "istio-ingressgateway.istio-system", | |
| "istio-ingressgateway.istio-system:80", | |
| "istio-ingressgateway.istio-system.svc.cluster", | |
| "istio-ingressgateway.istio-system.svc.cluster:80", | |
| "istio-ingressgateway.istio-system.svc", | |
| "istio-ingressgateway.istio-system.svc:80", | |
| "10.47.243.230", | |
| "10.47.243.230:80" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|80||istio-ingressgateway.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-ingressgateway.istio-system.svc.cluster.local:80/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-ingressgateway" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-ingressgateway" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-ingressgateway.istio-system.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "sleep.default.svc.cluster.local:80", | |
| "domains": [ | |
| "sleep.default.svc.cluster.local", | |
| "sleep.default.svc.cluster.local:80", | |
| "sleep", | |
| "sleep:80", | |
| "sleep.default.svc.cluster", | |
| "sleep.default.svc.cluster:80", | |
| "sleep.default.svc", | |
| "sleep.default.svc:80", | |
| "sleep.default", | |
| "sleep.default:80", | |
| "10.47.251.50", | |
| "10.47.251.50:80" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|80||sleep.default.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "sleep.default.svc.cluster.local:80/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "sleep" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/sleep" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "sleep.default.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "sleep.default.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://default/services/sleep" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "default" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "sleep" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.519Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "15014", | |
| "virtual_hosts": [ | |
| { | |
| "name": "istio-citadel.istio-system.svc.cluster.local:15014", | |
| "domains": [ | |
| "istio-citadel.istio-system.svc.cluster.local", | |
| "istio-citadel.istio-system.svc.cluster.local:15014", | |
| "istio-citadel.istio-system", | |
| "istio-citadel.istio-system:15014", | |
| "istio-citadel.istio-system.svc.cluster", | |
| "istio-citadel.istio-system.svc.cluster:15014", | |
| "istio-citadel.istio-system.svc", | |
| "istio-citadel.istio-system.svc:15014", | |
| "10.47.242.140", | |
| "10.47.242.140:15014" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|15014||istio-citadel.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-citadel.istio-system.svc.cluster.local:15014/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-citadel" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-citadel.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-citadel" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "istio-citadel.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-citadel" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-citadel" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "istio-galley.istio-system.svc.cluster.local:15014", | |
| "domains": [ | |
| "istio-galley.istio-system.svc.cluster.local", | |
| "istio-galley.istio-system.svc.cluster.local:15014", | |
| "istio-galley.istio-system", | |
| "istio-galley.istio-system:15014", | |
| "istio-galley.istio-system.svc.cluster", | |
| "istio-galley.istio-system.svc.cluster:15014", | |
| "istio-galley.istio-system.svc", | |
| "istio-galley.istio-system.svc:15014", | |
| "10.47.246.67", | |
| "10.47.246.67:15014" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|15014||istio-galley.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-galley.istio-system.svc.cluster.local:15014/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-galley" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-galley.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-galley" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-galley" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-galley" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-galley.istio-system.svc.cluster.local" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "istio-pilot.istio-system.svc.cluster.local:15014", | |
| "domains": [ | |
| "istio-pilot.istio-system.svc.cluster.local", | |
| "istio-pilot.istio-system.svc.cluster.local:15014", | |
| "istio-pilot.istio-system", | |
| "istio-pilot.istio-system:15014", | |
| "istio-pilot.istio-system.svc.cluster", | |
| "istio-pilot.istio-system.svc.cluster:15014", | |
| "istio-pilot.istio-system.svc", | |
| "istio-pilot.istio-system.svc:15014", | |
| "10.47.250.7", | |
| "10.47.250.7:15014" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|15014||istio-pilot.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-pilot.istio-system.svc.cluster.local:15014/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-pilot" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-pilot" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-pilot" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-pilot" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "istio-policy.istio-system.svc.cluster.local:15014", | |
| "domains": [ | |
| "istio-policy.istio-system.svc.cluster.local", | |
| "istio-policy.istio-system.svc.cluster.local:15014", | |
| "istio-policy.istio-system", | |
| "istio-policy.istio-system:15014", | |
| "istio-policy.istio-system.svc.cluster", | |
| "istio-policy.istio-system.svc.cluster:15014", | |
| "istio-policy.istio-system.svc", | |
| "istio-policy.istio-system.svc:15014", | |
| "10.47.251.187", | |
| "10.47.251.187:15014" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|15014||istio-policy.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-policy.istio-system.svc.cluster.local:15014/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-policy" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-policy" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-policy" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-policy" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "istio-telemetry.istio-system.svc.cluster.local:15014", | |
| "domains": [ | |
| "istio-telemetry.istio-system.svc.cluster.local", | |
| "istio-telemetry.istio-system.svc.cluster.local:15014", | |
| "istio-telemetry.istio-system", | |
| "istio-telemetry.istio-system:15014", | |
| "istio-telemetry.istio-system.svc.cluster", | |
| "istio-telemetry.istio-system.svc.cluster:15014", | |
| "istio-telemetry.istio-system.svc", | |
| "istio-telemetry.istio-system.svc:15014", | |
| "10.47.246.77", | |
| "10.47.246.77:15014" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|15014||istio-telemetry.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-telemetry.istio-system.svc.cluster.local:15014/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-telemetry" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-telemetry" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true, | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-telemetry" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-telemetry" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-telemetry.istio-system.svc.cluster.local" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.519Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "15004", | |
| "virtual_hosts": [ | |
| { | |
| "name": "istio-policy.istio-system.svc.cluster.local:15004", | |
| "domains": [ | |
| "istio-policy.istio-system.svc.cluster.local", | |
| "istio-policy.istio-system.svc.cluster.local:15004", | |
| "istio-policy.istio-system", | |
| "istio-policy.istio-system:15004", | |
| "istio-policy.istio-system.svc.cluster", | |
| "istio-policy.istio-system.svc.cluster:15004", | |
| "istio-policy.istio-system.svc", | |
| "istio-policy.istio-system.svc:15004", | |
| "10.47.251.187", | |
| "10.47.251.187:15004" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|15004||istio-policy.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-policy.istio-system.svc.cluster.local:15004/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-policy" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-policy" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-policy.istio-system.svc.cluster.local" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "istio-policy.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-policy" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-policy" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "istio-telemetry.istio-system.svc.cluster.local:15004", | |
| "domains": [ | |
| "istio-telemetry.istio-system.svc.cluster.local", | |
| "istio-telemetry.istio-system.svc.cluster.local:15004", | |
| "istio-telemetry.istio-system", | |
| "istio-telemetry.istio-system:15004", | |
| "istio-telemetry.istio-system.svc.cluster", | |
| "istio-telemetry.istio-system.svc.cluster:15004", | |
| "istio-telemetry.istio-system.svc", | |
| "istio-telemetry.istio-system.svc:15004", | |
| "10.47.246.77", | |
| "10.47.246.77:15004" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|15004||istio-telemetry.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-telemetry.istio-system.svc.cluster.local:15004/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.name": { | |
| "string_value": "istio-telemetry" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-telemetry" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "istio-telemetry.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-telemetry" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-telemetry" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.518Z" | |
| }, | |
| { | |
| "version_info": "2019-04-30T04:34:13Z/14", | |
| "route_config": { | |
| "name": "15010", | |
| "virtual_hosts": [ | |
| { | |
| "name": "istio-pilot.istio-system.svc.cluster.local:15010", | |
| "domains": [ | |
| "istio-pilot.istio-system.svc.cluster.local", | |
| "istio-pilot.istio-system.svc.cluster.local:15010", | |
| "istio-pilot.istio-system", | |
| "istio-pilot.istio-system:15010", | |
| "istio-pilot.istio-system.svc.cluster", | |
| "istio-pilot.istio-system.svc.cluster:15010", | |
| "istio-pilot.istio-system.svc", | |
| "istio-pilot.istio-system.svc:15010", | |
| "10.47.250.7", | |
| "10.47.250.7:15010" | |
| ], | |
| "routes": [ | |
| { | |
| "match": { | |
| "prefix": "/" | |
| }, | |
| "route": { | |
| "cluster": "outbound|15010||istio-pilot.istio-system.svc.cluster.local", | |
| "timeout": "0s", | |
| "retry_policy": { | |
| "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes", | |
| "num_retries": 2, | |
| "retry_host_predicate": [ | |
| { | |
| "name": "envoy.retry_host_predicates.previous_hosts" | |
| } | |
| ], | |
| "host_selection_retry_max_attempts": "3", | |
| "retriable_status_codes": [ | |
| 503 | |
| ] | |
| }, | |
| "max_grpc_timeout": "0s" | |
| }, | |
| "decorator": { | |
| "operation": "istio-pilot.istio-system.svc.cluster.local:15010/*" | |
| }, | |
| "per_filter_config": { | |
| "mixer": { | |
| "forward_attributes": { | |
| "attributes": { | |
| "destination.service.host": { | |
| "string_value": "istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-pilot" | |
| }, | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-pilot" | |
| } | |
| } | |
| }, | |
| "mixer_attributes": { | |
| "attributes": { | |
| "destination.service.namespace": { | |
| "string_value": "istio-system" | |
| }, | |
| "destination.service.name": { | |
| "string_value": "istio-pilot" | |
| }, | |
| "destination.service.host": { | |
| "string_value": "istio-pilot.istio-system.svc.cluster.local" | |
| }, | |
| "destination.service.uid": { | |
| "string_value": "istio://istio-system/services/istio-pilot" | |
| } | |
| } | |
| }, | |
| "disable_check_calls": true | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| ], | |
| "validate_clusters": false | |
| }, | |
| "last_updated": "2019-04-30T05:10:07.518Z" | |
| } | |
| ] | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.051][14][debug][main] [external/envoy/source/server/server.cc:147] flushing stats | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.184][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.185][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.717][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.718][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.718][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.719][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.720][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.721][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.721][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.924][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:243] [C1] new stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.924][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:580] [C1][S12476374917117373235] request headers complete (end_stream=true): | |
| sleep-88ddbcfdd-sx72p istio-proxy ':authority', '127.0.0.1:15000' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':path', '/stats?usedonly' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':method', 'GET' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'user-agent', 'Go-http-client/1.1' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'accept-encoding', 'gzip' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.924][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:1040] [C1][S12476374917117373235] request end stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.924][14][debug][admin] [external/envoy/source/server/http/admin.cc:1068] [C1][S12476374917117373235] request complete: path: /stats?usedonly | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:33.925][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:1305] [C1][S12476374917117373235] encoding headers via codec (end_stream=false): | |
| sleep-88ddbcfdd-sx72p istio-proxy ':status', '200' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'content-type', 'text/plain; charset=UTF-8' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'cache-control', 'no-cache, max-age=0' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-content-type-options', 'nosniff' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'date', 'Tue, 30 Apr 2019 04:43:33 GMT' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'server', 'envoy' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][filter] [external/envoy/source/extensions/filters/listener/original_dst/original_dst.cc:18] original_dst: New connection accepted | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][main] [external/envoy/source/server/connection_handler_impl.cc:257] [C14] new connection | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:243] [C14] new stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:580] [C14][S10751716394160819123] request headers complete (end_stream=true): | |
| sleep-88ddbcfdd-sx72p istio-proxy ':authority', 'edition.cnn.com' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':path', '/politics' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':method', 'GET' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'user-agent', 'curl/7.60.0' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'accept', '*/*' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:1040] [C14][S10751716394160819123] request end stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][filter] [src/envoy/http/mixer/filter.cc:39] Called Mixer::Filter : Filter | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][filter] [src/envoy/http/mixer/filter.cc:146] Called Mixer::Filter : setDecoderFilterCallbacks | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][lua] [external/envoy/source/extensions/filters/common/lua/lua.cc:37] coroutine finished | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][filter] [src/envoy/http/mixer/filter.cc:62] Called Mixer::Filter : decodeHeaders | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][filter] [./src/envoy/utils/header_update.h:46] Mixer forward attributes set: Ci0KGGRlc3RpbmF0aW9uLnNlcnZpY2UuaG9zdBIREg9lZGl0aW9uLmNubi5jb20KLQoYZGVzdGluYXRpb24uc2VydmljZS5uYW1lEhESD2VkaXRpb24uY25uLmNvbQoqCh1kZXN0aW5hdGlvbi5zZXJ2aWNlLm5hbWVzcGFjZRIJEgdkZWZhdWx0CjoKCnNvdXJjZS51aWQSLBIqa3ViZXJuZXRlczovL3NsZWVwLTg4ZGRiY2ZkZC1zeDcycC5kZWZhdWx0 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][filter] [src/envoy/http/mixer/filter.cc:154] Called Mixer::Filter : check complete OK | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][router] [external/envoy/source/common/router/router.cc:320] [C14][S10751716394160819123] cluster 'outbound|443||edition.cnn.com' match for URL '/politics' | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][router] [external/envoy/source/common/router/router.cc:381] [C14][S10751716394160819123] router decoding headers: | |
| sleep-88ddbcfdd-sx72p istio-proxy ':authority', 'edition.cnn.com' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':path', '/politics' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':method', 'GET' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':scheme', 'https' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'user-agent', 'curl/7.60.0' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'accept', '*/*' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-forwarded-proto', 'http' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-request-id', '4907d7a0-b2ab-4211-833f-7d0e564c6b9e' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-envoy-decorator-operation', 'edition.cnn.com:443/*' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'foo', 'bar' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-istio-attributes', 'Ci0KGGRlc3RpbmF0aW9uLnNlcnZpY2UuaG9zdBIREg9lZGl0aW9uLmNubi5jb20KLQoYZGVzdGluYXRpb24uc2VydmljZS5uYW1lEhESD2VkaXRpb24uY25uLmNvbQoqCh1kZXN0aW5hdGlvbi5zZXJ2aWNlLm5hbWVzcGFjZRIJEgdkZWZhdWx0CjoKCnNvdXJjZS51aWQSLBIqa3ViZXJuZXRlczovL3NsZWVwLTg4ZGRiY2ZkZC1zeDcycC5kZWZhdWx0' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-b3-traceid', 'bccad110c078f8cdb167e99331a3114c' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-b3-spanid', 'b167e99331a3114c' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-b3-sampled', '0' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][pool] [external/envoy/source/common/http/http1/conn_pool.cc:88] creating a new connection | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][client] [external/envoy/source/common/http/codec_client.cc:26] [C15] connecting | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][connection] [external/envoy/source/common/network/connection_impl.cc:644] [C15] connecting to 151.101.193.67:443 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][connection] [external/envoy/source/common/network/connection_impl.cc:653] [C15] connection in progress | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.378][23][debug][pool] [external/envoy/source/common/http/conn_pool_base.cc:20] queueing request due to no available connections | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.380][23][debug][connection] [external/envoy/source/common/network/connection_impl.cc:517] [C15] connected | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.380][23][debug][connection] [external/envoy/source/extensions/transport_sockets/tls/ssl_socket.cc:142] [C15] handshake error: 2 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.381][23][debug][connection] [external/envoy/source/extensions/transport_sockets/tls/ssl_socket.cc:131] [C15] handshake complete | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.381][23][debug][client] [external/envoy/source/common/http/codec_client.cc:64] [C15] connected | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.381][23][debug][pool] [external/envoy/source/common/http/http1/conn_pool.cc:245] [C15] attaching to next request | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.381][23][debug][router] [external/envoy/source/common/router/router.cc:1165] [C14][S10751716394160819123] pool ready | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.721][23][debug][router] [external/envoy/source/common/router/router.cc:717] [C14][S10751716394160819123] upstream headers complete: end_stream=false | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.721][23][debug][filter] [src/envoy/http/mixer/filter.cc:133] Called Mixer::Filter : encodeHeaders 2 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.721][23][debug][lua] [external/envoy/source/extensions/filters/http/lua/lua_filter.cc:308] yielding for full body | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.721][23][debug][lua] [external/envoy/source/extensions/filters/common/lua/lua.cc:40] coroutine yielded | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][filter] [src/envoy/http/mixer/filter.cc:205] Called Mixer::Filter : onDestroy state: 2 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][router] [external/envoy/source/common/router/router.cc:1111] [C14][S10751716394160819123] resetting pool request | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][client] [external/envoy/source/common/http/codec_client.cc:105] [C15] request reset | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][connection] [external/envoy/source/common/network/connection_impl.cc:101] [C15] closing data_to_write=0 type=1 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][connection] [external/envoy/source/common/network/connection_impl.cc:183] [C15] closing socket: 1 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][connection] [external/envoy/source/extensions/transport_sockets/tls/ssl_socket.cc:244] [C15] SSL shutdown: rc=0 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][connection] [external/envoy/source/extensions/transport_sockets/tls/ssl_socket.cc:175] [C15] | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][client] [external/envoy/source/common/http/codec_client.cc:82] [C15] disconnect. resetting 0 pending requests | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][pool] [external/envoy/source/common/http/http1/conn_pool.cc:129] [C15] client disconnected, failure reason: | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][filter] [src/envoy/http/mixer/filter.cc:219] Called Mixer::Filter : log | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.747][23][debug][filter] [./src/envoy/http/mixer/report_data.h:132] No dynamic_metadata found for filter envoy.filters.http.rbac | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.748][23][debug][filter] [src/istio/control/client_context_base.cc:125] Report attributes: attributes { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: "connection.mtls" | |
| sleep-88ddbcfdd-sx72p istio-proxy value { | |
| sleep-88ddbcfdd-sx72p istio-proxy bool_value: false | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy attributes { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: "context.protocol" | |
| sleep-88ddbcfdd-sx72p istio-proxy value { | |
| sleep-88ddbcfdd-sx72p istio-proxy string_value: "http" | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy attributes { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: "context.prox | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.809][23][debug][connection] [external/envoy/source/common/network/connection_impl.cc:502] [C14] remote close | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.809][23][debug][connection] [external/envoy/source/common/network/connection_impl.cc:183] [C14] closing socket: 0 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:34.809][23][debug][main] [external/envoy/source/server/connection_handler_impl.cc:68] [C14] adding to cleanup list | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.747][23][debug][filter] [./src/envoy/utils/header_update.h:46] Mixer forward attributes set: CjoKCnNvdXJjZS51aWQSLBIqa3ViZXJuZXRlczovL3NsZWVwLTg4ZGRiY2ZkZC1zeDcycC5kZWZhdWx0 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.747][23][debug][router] [external/envoy/source/common/router/router.cc:320] [C0][S6535608172156288271] cluster 'outbound|9091||istio-telemetry.istio-system.svc.cluster.local' match for URL '/istio.mixer.v1.Mixer/Report' | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.747][23][debug][router] [external/envoy/source/common/router/router.cc:381] [C0][S6535608172156288271] router decoding headers: | |
| sleep-88ddbcfdd-sx72p istio-proxy ':method', 'POST' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':path', '/istio.mixer.v1.Mixer/Report' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':authority', 'mixer' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':scheme', 'http' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'te', 'trailers' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'grpc-timeout', '5000m' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'content-type', 'application/grpc' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-istio-attributes', 'CjoKCnNvdXJjZS51aWQSLBIqa3ViZXJuZXRlczovL3NsZWVwLTg4ZGRiY2ZkZC1zeDcycC5kZWZhdWx0' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-envoy-internal', 'true' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-forwarded-for', '10.44.4.6' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-envoy-expected-rq-timeout-ms', '5000' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.747][23][debug][pool] [external/envoy/source/common/http/http2/conn_pool.cc:96] [C7] creating stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.747][23][debug][router] [external/envoy/source/common/router/router.cc:1165] [C0][S6535608172156288271] pool ready | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.747][23][debug][grpc] [src/envoy/utils/grpc_transport.cc:46] Sending Report request: attributes { | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 3 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -5 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 4 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -1 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 17 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -7 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 18 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -2 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 19 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 90 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 22 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 92 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 25 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -14 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 131 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 92 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 191 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -2 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 192 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -1 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 193 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -2 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 197 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -5 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 201 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 220 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 203 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -7 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy strings { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 205 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -6 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy int64s { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 23 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 0 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy int64s { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 27 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 0 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy int64s { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 30 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 500 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy int64s { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 151 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 443 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy int64s { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 169 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 202 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy int64s { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 170 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 48 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy bools { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 177 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: false | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy timestamps { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 24 | |
| sleep-88ddbcfdd-sx72p istio-proxy value { | |
| sleep-88ddbcfdd-sx72p istio-proxy seconds: 1556599414 | |
| sleep-88ddbcfdd-sx72p istio-proxy nanos: 378534957 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy timestamps { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 28 | |
| sleep-88ddbcfdd-sx72p istio-proxy value { | |
| sleep-88ddbcfdd-sx72p istio-proxy seconds: 1556599414 | |
| sleep-88ddbcfdd-sx72p istio-proxy nanos: 747727599 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy durations { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 29 | |
| sleep-88ddbcfdd-sx72p istio-proxy value { | |
| sleep-88ddbcfdd-sx72p istio-proxy nanos: 369425603 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy bytes { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: -4 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: "\n,\004\006" | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy bytes { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 150 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: "\227e\301C" | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy string_maps { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 15 | |
| sleep-88ddbcfdd-sx72p istio-proxy value { | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: -13 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -12 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: -10 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -9 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 31 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -2 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 32 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 90 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 33 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -7 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 46 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -11 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 86 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -14 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 100 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 92 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 102 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -8 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy string_maps { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 26 | |
| sleep-88ddbcfdd-sx72p istio-proxy value { | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 35 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 145 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 55 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: -3 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy entries { | |
| sleep-88ddbcfdd-sx72p istio-proxy key: 58 | |
| sleep-88ddbcfdd-sx72p istio-proxy value: 109 | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy } | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "default" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "edition.cnn.com" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "21" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "origin.ip" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "kubernetes://sleep-88ddbcfdd-sx72p.default" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "DC" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "/politics" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "4907d7a0-b2ab-4211-833f-7d0e564c6b9e" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "edition.cnn.com:443/*" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "x-envoy-decorator-operation" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "*/*" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "bar" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "foo" | |
| sleep-88ddbcfdd-sx72p istio-proxy default_words: "curl/7.60.0" | |
| sleep-88ddbcfdd-sx72p istio-proxy global_word_count: 221 | |
| sleep-88ddbcfdd-sx72p istio-proxy repeated_attributes_semantics: INDEPENDENT_ENCODING | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.750][23][debug][router] [external/envoy/source/common/router/router.cc:717] [C0][S6535608172156288271] upstream headers complete: end_stream=false | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.750][23][debug][http] [external/envoy/source/common/http/async_client_impl.cc:94] async http request response headers (end_stream=false): | |
| sleep-88ddbcfdd-sx72p istio-proxy ':status', '200' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'content-type', 'application/grpc' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-envoy-upstream-service-time', '3' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'date', 'Tue, 30 Apr 2019 04:43:35 GMT' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'server', 'envoy' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.750][23][debug][client] [external/envoy/source/common/http/codec_client.cc:95] [C7] response complete | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.750][23][debug][pool] [external/envoy/source/common/http/http2/conn_pool.cc:237] [C7] destroying stream: 0 remaining | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.750][23][debug][http] [external/envoy/source/common/http/async_client_impl.cc:109] async http request response trailers: | |
| sleep-88ddbcfdd-sx72p istio-proxy 'grpc-status', '0' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'grpc-message', '' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.750][23][debug][grpc] [src/envoy/utils/grpc_transport.cc:67] Report response: | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.750][23][debug][http2] [external/envoy/source/common/http/http2/codec_impl.cc:577] [C7] stream closed: 0 | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.924][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:243] [C1] new stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.925][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:580] [C1][S8470872966608418793] request headers complete (end_stream=true): | |
| sleep-88ddbcfdd-sx72p istio-proxy ':authority', '127.0.0.1:15000' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':path', '/stats?usedonly' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':method', 'GET' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'user-agent', 'Go-http-client/1.1' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'accept-encoding', 'gzip' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.925][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:1040] [C1][S8470872966608418793] request end stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.925][14][debug][admin] [external/envoy/source/server/http/admin.cc:1068] [C1][S8470872966608418793] request complete: path: /stats?usedonly | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:35.925][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:1305] [C1][S8470872966608418793] encoding headers via codec (end_stream=false): | |
| sleep-88ddbcfdd-sx72p istio-proxy ':status', '200' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'content-type', 'text/plain; charset=UTF-8' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'cache-control', 'no-cache, max-age=0' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-content-type-options', 'nosniff' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'date', 'Tue, 30 Apr 2019 04:43:35 GMT' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'server', 'envoy' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.175][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.175][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.176][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.178][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.178][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.181][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.183][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 4998 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.184][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:36.185][14][debug][upstream] [external/envoy/source/common/network/dns_impl.cc:158] Setting DNS resolution timer for 5000 milliseconds | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:37.924][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:243] [C1] new stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:37.924][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:580] [C1][S9023562175266848712] request headers complete (end_stream=true): | |
| sleep-88ddbcfdd-sx72p istio-proxy ':authority', '127.0.0.1:15000' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':path', '/stats?usedonly' | |
| sleep-88ddbcfdd-sx72p istio-proxy ':method', 'GET' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'user-agent', 'Go-http-client/1.1' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'accept-encoding', 'gzip' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:37.924][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:1040] [C1][S9023562175266848712] request end stream | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:37.924][14][debug][admin] [external/envoy/source/server/http/admin.cc:1068] [C1][S9023562175266848712] request complete: path: /stats?usedonly | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:37.925][14][debug][http] [external/envoy/source/common/http/conn_manager_impl.cc:1305] [C1][S9023562175266848712] encoding headers via codec (end_stream=false): | |
| sleep-88ddbcfdd-sx72p istio-proxy ':status', '200' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'content-type', 'text/plain; charset=UTF-8' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'cache-control', 'no-cache, max-age=0' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'x-content-type-options', 'nosniff' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'date', 'Tue, 30 Apr 2019 04:43:37 GMT' | |
| sleep-88ddbcfdd-sx72p istio-proxy 'server', 'envoy' | |
| sleep-88ddbcfdd-sx72p istio-proxy | |
| sleep-88ddbcfdd-sx72p istio-proxy [2019-04-30 04:43:38.053][14][debug][main] [external/envoy/source/server/server.cc:147] flushing stats | |
| ^C | |
| ➜ istio-1.1.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: EnvoyFilter | |
| metadata: | |
| name: sleep-outbound | |
| namespace: default | |
| spec: | |
| workloadLabels: | |
| app: sleep | |
| filters: | |
| - filterConfig: | |
| inlineCode: | | |
| function envoy_on_request(request_handle) | |
| request_handle:headers():add("foo", "bar") | |
| end | |
| function envoy_on_response(response_handle) | |
| bufferResp = response_handle:body() | |
| response_handle:logWarn(bufferResp:length()) | |
| response_handle:headers():add("response-body-size", tostring(bufferResp:length())) | |
| response_handle:logWarn("At the end of response hook!!") | |
| end | |
| filterName: envoy.lua | |
| filterType: HTTP | |
| listenerMatch: | |
| listenerType: SIDECAR_OUTBOUND | |
| portNumber: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment