0%

查看 istio 中 envoy 当前使用的配置信息,并访问 envoy 的管理接口

envoy 默认提供了管理接口, Istio 默认监听的 localhost:15000 端口

这个端口暴露了如下接口用来获取程序运行信息:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/: HTML 格式的管理链接汇总
/certs: 列出所有已加载的TLS证书,包括文件名,序列号,主题备用名称以及符合证书原型定义的 JSON格式到期的天数。
/clusters: 列出所有已配置的集群管理器集群。此信息包括每个群集中发现的所有上游主机以及每个主机统计信息。这对于调试服务发现问题很有用。
/config_dump: 将当前Envoy从各种组件加载出来的的配置转储为JSON进行输出。
/contention: 如果启用了互斥跟踪,则以 JSON格式输出当前的Envoy互斥争用统计信息(MutexStats)
/cpuprofiler: 启用或禁用CPU Profiler。需要使用gperftools进行编译。输出文件可以由admin.profile_path配置。
/healthcheck/fail: cause the server to fail health checks
/healthcheck/ok: cause the server to pass health checks
/help: print out list of admin commands
/hot_restart_version: print the hot restart compatibility version
/listeners: print listener addresses
/logging: query/change logging levels
/memory: print current allocation/heap usage
/quitquitquit: 退出服务器
/reset_counters: reset all counters to zero
/runtime: print runtime values
/runtime_modify: modify runtime values
/server_info: print server version/status information
/stats: print server stats
/stats/prometheus: print server stats in prometheus format

这个接口就可以查看当前 envoy 当前的所有配置信息

1
/config_dump: 将当前Envoy从各种组件加载出来的的配置转储为JSON进行输出。