All Articles

Envoy Notes

1. 前言

Envoy应该说是云原生这个概念起来之后的代理应用No.1。在当前的发展趋势下,使用Envoy来解决代理需求应该是最佳方案。

中文手册:Envoy 官方文档中文版。当前(2019-05-07)Envoy的最新版本是1.10,和中文的文档之间有几个小版本的跨度,需要注意。

2. 选型 & 比较

作为新生代的代理应用,在使用之前必然会有一个为什么的疑问,为什么需要使用Envoy,它和Nginx以及HAProxy这类老牌代理应用相比,好在哪里。

有一篇不错的博文可以阅读下:Envoy vs NGINX vs HAProxy: Why the open source Ambassador API Gateway chose Envoy。作者最主要的Concern在于两点:

  • Nginx之类的其他软件,部分有商业版本和社区版本的区分,而社区版本普遍功能较为简陋,不能完全满足需求
  • HAProxy之类的老牌软件,因为各种原因,功能演进都非常缓慢,不能跟上日益高速发展的云原生技术

说穿了就是功能不足,无论是商业原因还是研发原因还是资源原因。

那么Envoy能提供什么功能:Envoy 是什么?。可以看到Envoy提供的功能实在是太强大了,基本上现在主流的Proxy需求在Envoy身上都能得到满足。

官方也有一篇横向比较:与类似系统比较

3. Benchmark

功能之后就是性能,那么和老牌的Nginx以及HAProxy等比较起来,Envoy的性能又如何呢。这里可以看下:Benchmarking 5 Popular Load Balancers: Nginx, HAProxy, Envoy, Traefik, and ALB

Envoy came out as the overall winner in this benchmark. It had the highest throughput in terms of requests per second.

文章发布时间是:10 Dec 2018,应该说还是非常具有时效性的。

4. 架构

除了在Nginx中比较常见的作为流量入口的代理模式之外,Envoy还介绍了一种作为服务网格总线的架构模式:

这种设计将Envoy作为面向服务架构(SOA)内部的所有流量的通信总线来使用。此设计将服务和服务之间的关系遮蔽了起来,服务集群只需要知道自己的Envoy在哪里即可,后续的流量就全部交给Envoy,而Envoy之间则通过服务发现将整个服务网格链接起来。

5. 使用

5.1 镜像

一般使用镜像的方式进行安装:

docker pull envoyproxy/envoy:v1.10.0

启动:

docker run --rm -it -d \
    --name envoy-test \
    --network=envoy-test-net \
    -p 9901:9901 \
    -p 9988:9988 \
    -v ${PATH}/conf:/etc/envoy \
    -v ${PATH}/log:/tmp \
    envoyproxy/envoy:v1.10.0

镜像中配置文件的位置为:

/etc/envoy/envoy.yaml

可以通过volume进行对应的配置文件覆盖。

5.2 配置

因功能实在是太强大,Envoy的配置也就比较复杂,官方文档配置方面的总纲在:配置参考

此外,因Envoy的消息都是通过Protobuf来进行设计的,因此可以查看源代码来阅读配置项:envoy/api/envoy/config/

另外,官方代码库也给了很多配置范例:envoy/examples/。以及:几个sandbox范例:Sandbox。最适合新手查看的应该是:前端代理

有一篇Migrating from NGINX to Envoy Proxy by envoyproxy相当不错。以范例的形式讲解了Nginx的配置如何翻译到Envoy。

几个重要的配置项:

细节这里就不展开了,实在是篇幅太大。简单的范例可以直接看官方给的例子。

5.3 负载均衡Front Proxy范例

简单的带负载均衡的Front Proxy范例可以看:dist-system-practice/experiment/envoy/

踩过的几个坑:

  • 监听端的地址都必须是0.0.0.0,不能是127.0.0.1,否则在容器里收不到外部请求
  • 将其他的网络服务作为upstream使用时,必须与envoy连接在同一个docker network中
  • clusters配置中的端点地址可以使用其他docker容器的名字作为address

6. Admin {#ID_ADMIN}

在Envoy的配置中有一个admin节点可以用来配置admin功能访问:

admin:
  access_log_path: "/tmp/admin_access.log"
  profile_path: "/tmp/envoy.prof"
  address:
    socket_address:
      address: 127.0.0.1
      port_value: 9901

提供一些admin相关功能,文档可以看:Administration interface。功能列表东西还真不少。

需要注意:

All mutations must be sent as HTTP POST operations. When a mutation is requested via GET, the request has no effect, and an HTTP 400 (Invalid Request) response is returned.

7. 监控

监控一样可以使用Prometheus进行Metrics采集。Envoy在启动的时候必须配置6. Admin,然后就可以在http://127.0.0.1:9901/stats/prometheus获取到Metrics。

本文在最后的附录部分留了一份样例:stats prometheus

8. TODO

  • Envoy的内部架构
  • Envoy的高可用设计
  • Envoy热加载的设计原理
  • Envoy的集群使用
  • Envoy的其他高级功能使用范例
  • Envoy的Metrics理解

资料

链接

stats prometheus {#ID_APP_STATS}

# TYPE envoy_listener_admin_http_downstream_rq_xx counter
envoy_listener_admin_http_downstream_rq_xx{envoy_response_code_class="1",envoy_http_conn_manager_prefix="admin"} 0
envoy_listener_admin_http_downstream_rq_xx{envoy_response_code_class="2",envoy_http_conn_manager_prefix="admin"} 1
envoy_listener_admin_http_downstream_rq_xx{envoy_response_code_class="4",envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_listener_admin_downstream_cx_destroy counter
envoy_listener_admin_downstream_cx_destroy{} 0
# TYPE envoy_listener_admin_downstream_cx_total counter
envoy_listener_admin_downstream_cx_total{} 2
envoy_listener_admin_http_downstream_rq_xx{envoy_response_code_class="5",envoy_http_conn_manager_prefix="admin"} 0
envoy_listener_admin_http_downstream_rq_xx{envoy_response_code_class="3",envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_listener_admin_downstream_pre_cx_timeout counter
envoy_listener_admin_downstream_pre_cx_timeout{} 0
# TYPE envoy_listener_admin_http_downstream_rq_completed counter
envoy_listener_admin_http_downstream_rq_completed{envoy_http_conn_manager_prefix="admin"} 1
# TYPE envoy_listener_admin_no_filter_chain_match counter
envoy_listener_admin_no_filter_chain_match{} 0
# TYPE envoy_cluster_manager_update_out_of_merge_window counter
envoy_cluster_manager_update_out_of_merge_window{} 0
# TYPE envoy_http_downstream_flow_control_resumed_reading_total counter
envoy_http_downstream_flow_control_resumed_reading_total{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_http2_total counter
envoy_http_downstream_cx_http2_total{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_listener_manager_listener_added counter
envoy_listener_manager_listener_added{} 1
# TYPE envoy_http_downstream_rq_overload_close counter
envoy_http_downstream_rq_overload_close{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_listener_manager_listener_create_success counter
envoy_listener_manager_listener_create_success{} 4
# TYPE envoy_http_downstream_cx_http1_total counter
envoy_http_downstream_cx_http1_total{envoy_http_conn_manager_prefix="admin"} 1
# TYPE envoy_stats_overflow counter
envoy_stats_overflow{} 0
# TYPE envoy_listener_manager_listener_create_failure counter
envoy_listener_manager_listener_create_failure{} 0
# TYPE envoy_http_downstream_cx_destroy_remote counter
envoy_http_downstream_cx_destroy_remote{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_rq_non_relative_path counter
envoy_http_downstream_rq_non_relative_path{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_no_route counter
envoy_http_no_route{envoy_http_conn_manager_prefix="async-client"} 0
# TYPE envoy_cluster_manager_cluster_updated counter
envoy_cluster_manager_cluster_updated{} 1
# TYPE envoy_http_rs_too_large counter
envoy_http_rs_too_large{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_rq_tx_reset counter
envoy_http_downstream_rq_tx_reset{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_server_watchdog_mega_miss counter
envoy_server_watchdog_mega_miss{} 0
# TYPE envoy_access_log_file_flushed_by_timer counter
envoy_access_log_file_flushed_by_timer{} 14
# TYPE envoy_http_downstream_cx_rx_bytes_total counter
envoy_http_downstream_cx_rx_bytes_total{envoy_http_conn_manager_prefix="admin"} 1029
# TYPE envoy_http_downstream_flow_control_paused_reading_total counter
envoy_http_downstream_flow_control_paused_reading_total{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_rq_completed counter
envoy_http_downstream_rq_completed{envoy_http_conn_manager_prefix="admin"} 1
# TYPE envoy_listener_manager_listener_removed counter
envoy_listener_manager_listener_removed{} 0
# TYPE envoy_http_downstream_rq_xx counter
envoy_http_downstream_rq_xx{envoy_response_code_class="4",envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_access_log_file_reopen_failed counter
envoy_access_log_file_reopen_failed{} 0
# TYPE envoy_http_rq_direct_response counter
envoy_http_rq_direct_response{envoy_http_conn_manager_prefix="async-client"} 0
# TYPE envoy_http_downstream_rq_ws_on_non_ws_route counter
envoy_http_downstream_rq_ws_on_non_ws_route{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_cluster_manager_cluster_updated_via_merge counter
envoy_cluster_manager_cluster_updated_via_merge{} 0
# TYPE envoy_cluster_manager_cluster_added counter
envoy_cluster_manager_cluster_added{} 1
# TYPE envoy_runtime_override_dir_exists counter
envoy_runtime_override_dir_exists{} 0
# TYPE envoy_http_downstream_rq_http2_total counter
envoy_http_downstream_rq_http2_total{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_rq_response_before_rq_complete counter
envoy_http_downstream_rq_response_before_rq_complete{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_listener_manager_listener_modified counter
envoy_listener_manager_listener_modified{} 0
# TYPE envoy_runtime_deprecated_feature_use counter
envoy_runtime_deprecated_feature_use{} 21
# TYPE envoy_http_downstream_cx_idle_timeout counter
envoy_http_downstream_cx_idle_timeout{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_rq_redirect counter
envoy_http_rq_redirect{envoy_http_conn_manager_prefix="async-client"} 0
# TYPE envoy_http_downstream_rq_too_large counter
envoy_http_downstream_rq_too_large{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_protocol_error counter
envoy_http_downstream_cx_protocol_error{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_rq_timeout counter
envoy_http_downstream_rq_timeout{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_runtime_override_dir_not_exists counter
envoy_runtime_override_dir_not_exists{} 0
# TYPE envoy_runtime_load_error counter
envoy_runtime_load_error{} 0
# TYPE envoy_access_log_file_write_completed counter
envoy_access_log_file_write_completed{} 4
# TYPE envoy_http_no_cluster counter
envoy_http_no_cluster{envoy_http_conn_manager_prefix="async-client"} 0
# TYPE envoy_http_rq_reset_after_downstream_response_started counter
envoy_http_rq_reset_after_downstream_response_started{envoy_http_conn_manager_prefix="async-client"} 0
# TYPE envoy_server_watchdog_miss counter
envoy_server_watchdog_miss{} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="3",envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_cluster_manager_cluster_removed counter
envoy_cluster_manager_cluster_removed{} 0
# TYPE envoy_server_debug_assertion_failures counter
envoy_server_debug_assertion_failures{} 0
# TYPE envoy_cluster_manager_update_merge_cancelled counter
envoy_cluster_manager_update_merge_cancelled{} 0
# TYPE envoy_http_downstream_cx_overload_disable_keepalive counter
envoy_http_downstream_cx_overload_disable_keepalive{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_upgrades_total counter
envoy_http_downstream_cx_upgrades_total{envoy_http_conn_manager_prefix="admin"} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="1",envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_tx_bytes_total counter
envoy_http_downstream_cx_tx_bytes_total{envoy_http_conn_manager_prefix="admin"} 5132
# TYPE envoy_http_downstream_cx_destroy counter
envoy_http_downstream_cx_destroy{envoy_http_conn_manager_prefix="admin"} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="5",envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_destroy_local_active_rq counter
envoy_http_downstream_cx_destroy_local_active_rq{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_drain_close counter
envoy_http_downstream_cx_drain_close{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_rq_http1_total counter
envoy_http_downstream_rq_http1_total{envoy_http_conn_manager_prefix="admin"} 2
# TYPE envoy_http_downstream_cx_destroy_active_rq counter
envoy_http_downstream_cx_destroy_active_rq{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_access_log_file_write_buffered counter
envoy_access_log_file_write_buffered{} 6
# TYPE envoy_http_downstream_cx_destroy_local counter
envoy_http_downstream_cx_destroy_local{envoy_http_conn_manager_prefix="admin"} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="2",envoy_http_conn_manager_prefix="admin"} 1
# TYPE envoy_http_rq_total counter
envoy_http_rq_total{envoy_http_conn_manager_prefix="async-client"} 0
# TYPE envoy_http_downstream_cx_total counter
envoy_http_downstream_cx_total{envoy_http_conn_manager_prefix="admin"} 2
# TYPE envoy_http_downstream_rq_total counter
envoy_http_downstream_rq_total{envoy_http_conn_manager_prefix="admin"} 2
# TYPE envoy_runtime_load_success counter
envoy_runtime_load_success{} 0
# TYPE envoy_cluster_manager_cluster_modified counter
envoy_cluster_manager_cluster_modified{} 0
# TYPE envoy_http_downstream_rq_rx_reset counter
envoy_http_downstream_rq_rx_reset{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_rq_idle_timeout counter
envoy_http_downstream_rq_idle_timeout{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_delayed_close_timeout counter
envoy_http_downstream_cx_delayed_close_timeout{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_destroy_remote_active_rq counter
envoy_http_downstream_cx_destroy_remote_active_rq{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_ssl_total counter
envoy_http_downstream_cx_ssl_total{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_cluster_upstream_cx_idle_timeout counter
envoy_cluster_upstream_cx_idle_timeout{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_destroy_local counter
envoy_cluster_upstream_cx_destroy_local{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_close_notify counter
envoy_cluster_upstream_cx_close_notify{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_flow_control_paused_reading_total counter
envoy_cluster_upstream_flow_control_paused_reading_total{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_connect_timeout counter
envoy_cluster_upstream_cx_connect_timeout{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_xx counter
envoy_cluster_upstream_rq_xx{envoy_response_code_class="2",envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_upstream_rq_cancelled counter
envoy_cluster_upstream_rq_cancelled{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_overflow counter
envoy_cluster_upstream_cx_overflow{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_destroy_local_with_active_rq counter
envoy_cluster_upstream_cx_destroy_local_with_active_rq{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_internal_redirect_succeeded_total counter
envoy_cluster_upstream_internal_redirect_succeeded_total{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_subsets_fallback counter
envoy_cluster_lb_subsets_fallback{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_zone_routing_sampled counter
envoy_cluster_lb_zone_routing_sampled{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_connect_attempts_exceeded counter
envoy_cluster_upstream_cx_connect_attempts_exceeded{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_per_try_timeout counter
envoy_cluster_upstream_rq_per_try_timeout{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_tx_bytes_total counter
envoy_cluster_upstream_cx_tx_bytes_total{envoy_cluster_name="http_service"} 1065
# TYPE envoy_cluster_upstream_flow_control_resumed_reading_total counter
envoy_cluster_upstream_flow_control_resumed_reading_total{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_original_dst_host_invalid counter
envoy_cluster_original_dst_host_invalid{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_subsets_created counter
envoy_cluster_lb_subsets_created{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_external_upstream_rq_completed counter
envoy_cluster_external_upstream_rq_completed{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_upstream_cx_rx_bytes_total counter
envoy_cluster_upstream_cx_rx_bytes_total{envoy_cluster_name="http_service"} 715
# TYPE envoy_cluster_upstream_flow_control_backed_up_total counter
envoy_cluster_upstream_flow_control_backed_up_total{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_update_success counter
envoy_cluster_update_success{envoy_cluster_name="http_service"} 58
# TYPE envoy_cluster_update_no_rebuild counter
envoy_cluster_update_no_rebuild{envoy_cluster_name="http_service"} 56
# TYPE envoy_cluster_upstream_cx_destroy_remote_with_active_rq counter
envoy_cluster_upstream_cx_destroy_remote_with_active_rq{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_zone_cluster_too_small counter
envoy_cluster_lb_zone_cluster_too_small{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_zone_routing_all_directly counter
envoy_cluster_lb_zone_routing_all_directly{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_protocol_error counter
envoy_cluster_upstream_cx_protocol_error{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_external_upstream_rq_xx counter
envoy_cluster_external_upstream_rq_xx{envoy_response_code_class="2",envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_external_upstream_rq counter
envoy_cluster_external_upstream_rq{envoy_response_code="200",envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_upstream_rq_completed counter
envoy_cluster_upstream_rq_completed{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_update_attempt counter
envoy_cluster_update_attempt{envoy_cluster_name="http_service"} 58
# TYPE envoy_cluster_lb_recalculate_zone_structures counter
envoy_cluster_lb_recalculate_zone_structures{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_pending_overflow counter
envoy_cluster_upstream_rq_pending_overflow{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_bind_errors counter
envoy_cluster_bind_errors{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_retry_overflow counter
envoy_cluster_upstream_rq_retry_overflow{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq counter
envoy_cluster_upstream_rq{envoy_response_code="200",envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_lb_zone_number_differs counter
envoy_cluster_lb_zone_number_differs{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_none_healthy counter
envoy_cluster_upstream_cx_none_healthy{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_zone_no_capacity_left counter
envoy_cluster_lb_zone_no_capacity_left{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_update_failure counter
envoy_cluster_update_failure{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_timeout counter
envoy_cluster_upstream_rq_timeout{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_destroy_remote counter
envoy_cluster_upstream_cx_destroy_remote{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_max_requests counter
envoy_cluster_upstream_cx_max_requests{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_internal_redirect_failed_total counter
envoy_cluster_upstream_internal_redirect_failed_total{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_flow_control_drained_total counter
envoy_cluster_upstream_flow_control_drained_total{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_local_cluster_not_ok counter
envoy_cluster_lb_local_cluster_not_ok{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_rx_reset counter
envoy_cluster_upstream_rq_rx_reset{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_destroy counter
envoy_cluster_upstream_cx_destroy{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_subsets_selected counter
envoy_cluster_lb_subsets_selected{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_subsets_removed counter
envoy_cluster_lb_subsets_removed{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_http1_total counter
envoy_cluster_upstream_cx_http1_total{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_upstream_cx_connect_fail counter
envoy_cluster_upstream_cx_connect_fail{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_pending_total counter
envoy_cluster_upstream_rq_pending_total{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_lb_zone_routing_cross_zone counter
envoy_cluster_lb_zone_routing_cross_zone{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_healthy_panic counter
envoy_cluster_lb_healthy_panic{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_total counter
envoy_cluster_upstream_cx_total{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_upstream_cx_http2_total counter
envoy_cluster_upstream_cx_http2_total{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_destroy_with_active_rq counter
envoy_cluster_upstream_cx_destroy_with_active_rq{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_total counter
envoy_cluster_upstream_rq_total{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_upstream_rq_retry_success counter
envoy_cluster_upstream_rq_retry_success{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_lb_subsets_fallback_panic counter
envoy_cluster_lb_subsets_fallback_panic{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_pending_failure_eject counter
envoy_cluster_upstream_rq_pending_failure_eject{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_membership_change counter
envoy_cluster_membership_change{envoy_cluster_name="http_service"} 2
# TYPE envoy_cluster_upstream_rq_retry counter
envoy_cluster_upstream_rq_retry{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_retry_or_shadow_abandoned counter
envoy_cluster_retry_or_shadow_abandoned{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_maintenance_mode counter
envoy_cluster_upstream_rq_maintenance_mode{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_tx_reset counter
envoy_cluster_upstream_rq_tx_reset{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_update_empty counter
envoy_cluster_update_empty{envoy_cluster_name="http_service"} 0
# TYPE envoy_listener_http_downstream_rq_xx counter
envoy_listener_http_downstream_rq_xx{envoy_response_code_class="1",envoy_http_conn_manager_prefix="ingress_http",envoy_listener_address="0.0.0.0_9988"} 0
envoy_listener_http_downstream_rq_xx{envoy_response_code_class="4",envoy_http_conn_manager_prefix="ingress_http",envoy_listener_address="0.0.0.0_9988"} 0
# TYPE envoy_listener_downstream_cx_destroy counter
envoy_listener_downstream_cx_destroy{envoy_listener_address="0.0.0.0_9988"} 5
envoy_listener_http_downstream_rq_xx{envoy_response_code_class="3",envoy_http_conn_manager_prefix="ingress_http",envoy_listener_address="0.0.0.0_9988"} 0
envoy_listener_http_downstream_rq_xx{envoy_response_code_class="2",envoy_http_conn_manager_prefix="ingress_http",envoy_listener_address="0.0.0.0_9988"} 5
# TYPE envoy_listener_downstream_pre_cx_timeout counter
envoy_listener_downstream_pre_cx_timeout{envoy_listener_address="0.0.0.0_9988"} 0
envoy_listener_http_downstream_rq_xx{envoy_response_code_class="5",envoy_http_conn_manager_prefix="ingress_http",envoy_listener_address="0.0.0.0_9988"} 0
# TYPE envoy_listener_http_downstream_rq_completed counter
envoy_listener_http_downstream_rq_completed{envoy_http_conn_manager_prefix="ingress_http",envoy_listener_address="0.0.0.0_9988"} 5
# TYPE envoy_listener_no_filter_chain_match counter
envoy_listener_no_filter_chain_match{envoy_listener_address="0.0.0.0_9988"} 0
# TYPE envoy_listener_downstream_cx_total counter
envoy_listener_downstream_cx_total{envoy_listener_address="0.0.0.0_9988"} 5
envoy_http_downstream_rq_tx_reset{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="5",envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_total{envoy_http_conn_manager_prefix="ingress_http"} 5
envoy_http_downstream_cx_destroy_remote_active_rq{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_http1_total{envoy_http_conn_manager_prefix="ingress_http"} 5
envoy_http_downstream_rq_overload_close{envoy_http_conn_manager_prefix="ingress_http"} 0
# TYPE envoy_http_tracing_random_sampling counter
envoy_http_tracing_random_sampling{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_no_route{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_destroy_remote{envoy_http_conn_manager_prefix="ingress_http"} 5
envoy_http_downstream_cx_protocol_error{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_response_before_rq_complete{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_rq_direct_response{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_flow_control_resumed_reading_total{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_destroy_local_active_rq{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_http1_total{envoy_http_conn_manager_prefix="ingress_http"} 5
envoy_http_rq_reset_after_downstream_response_started{envoy_http_conn_manager_prefix="ingress_http"} 0
# TYPE envoy_http_tracing_service_forced counter
envoy_http_tracing_service_forced{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_overload_disable_keepalive{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_ws_on_non_ws_route{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="3",envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_rx_bytes_total{envoy_http_conn_manager_prefix="ingress_http"} 390
envoy_http_downstream_cx_idle_timeout{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="1",envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_idle_timeout{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_rs_too_large{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_completed{envoy_http_conn_manager_prefix="ingress_http"} 5
envoy_http_no_cluster{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_destroy_local{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_rx_reset{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_rq_total{envoy_http_conn_manager_prefix="ingress_http"} 5
# TYPE envoy_http_tracing_not_traceable counter
envoy_http_tracing_not_traceable{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_tx_bytes_total{envoy_http_conn_manager_prefix="ingress_http"} 840
envoy_http_downstream_cx_delayed_close_timeout{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_drain_close{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_flow_control_paused_reading_total{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_timeout{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_destroy{envoy_http_conn_manager_prefix="ingress_http"} 5
envoy_http_rq_redirect{envoy_http_conn_manager_prefix="ingress_http"} 0
# TYPE envoy_http_tracing_health_check counter
envoy_http_tracing_health_check{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="2",envoy_http_conn_manager_prefix="ingress_http"} 5
envoy_http_downstream_cx_ssl_total{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_too_large{envoy_http_conn_manager_prefix="ingress_http"} 0
# TYPE envoy_http_tracing_client_enabled counter
envoy_http_tracing_client_enabled{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_xx{envoy_response_code_class="4",envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_upgrades_total{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_http2_total{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_non_relative_path{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_http2_total{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_destroy_active_rq{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_total{envoy_http_conn_manager_prefix="ingress_http"} 5
# TYPE envoy_listener_admin_downstream_pre_cx_active gauge
envoy_listener_admin_downstream_pre_cx_active{} 0
# TYPE envoy_listener_admin_downstream_cx_active gauge
envoy_listener_admin_downstream_cx_active{} 2
# TYPE envoy_http_downstream_cx_active gauge
envoy_http_downstream_cx_active{envoy_http_conn_manager_prefix="admin"} 2
# TYPE envoy_listener_manager_total_listeners_draining gauge
envoy_listener_manager_total_listeners_draining{} 0
# TYPE envoy_server_parent_connections gauge
envoy_server_parent_connections{} 0
# TYPE envoy_runtime_admin_overrides_active gauge
envoy_runtime_admin_overrides_active{} 0
# TYPE envoy_cluster_manager_active_clusters gauge
envoy_cluster_manager_active_clusters{} 1
# TYPE envoy_cluster_manager_warming_clusters gauge
envoy_cluster_manager_warming_clusters{} 0
# TYPE envoy_listener_manager_total_listeners_active gauge
envoy_listener_manager_total_listeners_active{} 1
# TYPE envoy_http_downstream_cx_http1_active gauge
envoy_http_downstream_cx_http1_active{envoy_http_conn_manager_prefix="admin"} 1
# TYPE envoy_server_uptime gauge
envoy_server_uptime{} 140
# TYPE envoy_server_memory_heap_size gauge
envoy_server_memory_heap_size{} 5242880
# TYPE envoy_server_days_until_first_cert_expiring gauge
envoy_server_days_until_first_cert_expiring{} 2147483647
# TYPE envoy_server_hot_restart_epoch gauge
envoy_server_hot_restart_epoch{} 0
# TYPE envoy_server_total_connections gauge
envoy_server_total_connections{} 0
# TYPE envoy_server_concurrency gauge
envoy_server_concurrency{} 4
# TYPE envoy_server_version gauge
envoy_server_version{} 15294198
# TYPE envoy_server_memory_allocated gauge
envoy_server_memory_allocated{} 3875056
# TYPE envoy_http_downstream_cx_rx_bytes_buffered gauge
envoy_http_downstream_cx_rx_bytes_buffered{envoy_http_conn_manager_prefix="admin"} 513
# TYPE envoy_access_log_file_write_total_buffered gauge
envoy_access_log_file_write_total_buffered{} 0
# TYPE envoy_listener_manager_total_listeners_warming gauge
envoy_listener_manager_total_listeners_warming{} 0
# TYPE envoy_http_downstream_cx_upgrades_active gauge
envoy_http_downstream_cx_upgrades_active{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_rq_active gauge
envoy_http_downstream_rq_active{envoy_http_conn_manager_prefix="admin"} 1
# TYPE envoy_runtime_num_keys gauge
envoy_runtime_num_keys{} 0
# TYPE envoy_http_downstream_cx_tx_bytes_buffered gauge
envoy_http_downstream_cx_tx_bytes_buffered{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_server_live gauge
envoy_server_live{} 1
# TYPE envoy_http_downstream_cx_ssl_active gauge
envoy_http_downstream_cx_ssl_active{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_http_downstream_cx_http2_active gauge
envoy_http_downstream_cx_http2_active{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_cluster_circuit_breakers_high_rq_retry_open gauge
envoy_cluster_circuit_breakers_high_rq_retry_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_max_host_weight gauge
envoy_cluster_max_host_weight{envoy_cluster_name="http_service"} 1
# TYPE envoy_cluster_circuit_breakers_default_cx_open gauge
envoy_cluster_circuit_breakers_default_cx_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_circuit_breakers_high_rq_open gauge
envoy_cluster_circuit_breakers_high_rq_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_circuit_breakers_default_rq_open gauge
envoy_cluster_circuit_breakers_default_rq_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_membership_healthy gauge
envoy_cluster_membership_healthy{envoy_cluster_name="http_service"} 2
# TYPE envoy_cluster_lb_subsets_active gauge
envoy_cluster_lb_subsets_active{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_circuit_breakers_default_rq_pending_open gauge
envoy_cluster_circuit_breakers_default_rq_pending_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_active gauge
envoy_cluster_upstream_cx_active{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_pending_active gauge
envoy_cluster_upstream_rq_pending_active{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_version gauge
envoy_cluster_version{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_tx_bytes_buffered gauge
envoy_cluster_upstream_cx_tx_bytes_buffered{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_membership_total gauge
envoy_cluster_membership_total{envoy_cluster_name="http_service"} 2
# TYPE envoy_cluster_circuit_breakers_default_rq_retry_open gauge
envoy_cluster_circuit_breakers_default_rq_retry_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_circuit_breakers_default_cx_pool_open gauge
envoy_cluster_circuit_breakers_default_cx_pool_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_circuit_breakers_high_rq_pending_open gauge
envoy_cluster_circuit_breakers_high_rq_pending_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_membership_degraded gauge
envoy_cluster_membership_degraded{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_circuit_breakers_high_cx_open gauge
envoy_cluster_circuit_breakers_high_cx_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_rq_active gauge
envoy_cluster_upstream_rq_active{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_circuit_breakers_high_cx_pool_open gauge
envoy_cluster_circuit_breakers_high_cx_pool_open{envoy_cluster_name="http_service"} 0
# TYPE envoy_cluster_upstream_cx_rx_bytes_buffered gauge
envoy_cluster_upstream_cx_rx_bytes_buffered{envoy_cluster_name="http_service"} 0
# TYPE envoy_listener_downstream_pre_cx_active gauge
envoy_listener_downstream_pre_cx_active{envoy_listener_address="0.0.0.0_9988"} 0
# TYPE envoy_listener_downstream_cx_active gauge
envoy_listener_downstream_cx_active{envoy_listener_address="0.0.0.0_9988"} 0
envoy_http_downstream_cx_upgrades_active{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_tx_bytes_buffered{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_active{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_http1_active{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_http2_active{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_rx_bytes_buffered{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_rq_active{envoy_http_conn_manager_prefix="ingress_http"} 0
envoy_http_downstream_cx_ssl_active{envoy_http_conn_manager_prefix="ingress_http"} 0
# TYPE envoy_listener_admin_downstream_cx_length_ms histogram
envoy_listener_admin_downstream_cx_length_ms_bucket{le="0.5"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="1"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="5"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="10"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="25"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="50"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="100"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="250"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="500"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="1000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="2500"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="5000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="10000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="30000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="60000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="300000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="600000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="1800000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="3600000"} 0
envoy_listener_admin_downstream_cx_length_ms_bucket{le="+Inf"} 0
envoy_listener_admin_downstream_cx_length_ms_sum{} 0
envoy_listener_admin_downstream_cx_length_ms_count{} 0
# TYPE envoy_http_downstream_rq_time histogram
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="0.5"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="1"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="5"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="10"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="25"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="50"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="100"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="250"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="500"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="1000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="2500"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="5000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="10000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="30000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="60000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="300000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="600000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="1800000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="3600000"} 1
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="admin",le="+Inf"} 1
envoy_http_downstream_rq_time_sum{envoy_http_conn_manager_prefix="admin"} 0
envoy_http_downstream_rq_time_count{envoy_http_conn_manager_prefix="admin"} 1
# TYPE envoy_http_downstream_cx_length_ms histogram
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="0.5"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="1"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="5"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="10"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="25"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="50"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="100"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="250"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="500"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="1000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="2500"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="5000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="10000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="30000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="60000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="300000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="600000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="1800000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="3600000"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="admin",le="+Inf"} 0
envoy_http_downstream_cx_length_ms_sum{envoy_http_conn_manager_prefix="admin"} 0
envoy_http_downstream_cx_length_ms_count{envoy_http_conn_manager_prefix="admin"} 0
# TYPE envoy_cluster_upstream_cx_connect_ms histogram
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="0.5"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="1"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="5"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="10"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="25"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="50"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="100"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="250"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="500"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="1000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="2500"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="5000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="10000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="30000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="60000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="300000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="600000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="1800000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="3600000"} 5
envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="http_service",le="+Inf"} 5
envoy_cluster_upstream_cx_connect_ms_sum{envoy_cluster_name="http_service"} 0
envoy_cluster_upstream_cx_connect_ms_count{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_upstream_cx_length_ms histogram
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="0.5"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="1"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="5"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="10"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="25"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="50"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="100"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="250"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="500"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="1000"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="2500"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="5000"} 0
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="10000"} 5
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="30000"} 5
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="60000"} 5
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="300000"} 5
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="600000"} 5
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="1800000"} 5
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="3600000"} 5
envoy_cluster_upstream_cx_length_ms_bucket{envoy_cluster_name="http_service",le="+Inf"} 5
envoy_cluster_upstream_cx_length_ms_sum{envoy_cluster_name="http_service"} 25250
envoy_cluster_upstream_cx_length_ms_count{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_external_upstream_rq_time histogram
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="0.5"} 1
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="1"} 1
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="5"} 3
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="10"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="25"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="50"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="100"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="250"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="500"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="1000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="2500"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="5000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="10000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="30000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="60000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="300000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="600000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="1800000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="3600000"} 5
envoy_cluster_external_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="+Inf"} 5
envoy_cluster_external_upstream_rq_time_sum{envoy_cluster_name="http_service"} 17.200000000000002842170943040401
envoy_cluster_external_upstream_rq_time_count{envoy_cluster_name="http_service"} 5
# TYPE envoy_cluster_upstream_rq_time histogram
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="0.5"} 1
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="1"} 1
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="5"} 3
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="10"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="25"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="50"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="100"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="250"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="500"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="1000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="2500"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="5000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="10000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="30000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="60000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="300000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="600000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="1800000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="3600000"} 5
envoy_cluster_upstream_rq_time_bucket{envoy_cluster_name="http_service",le="+Inf"} 5
envoy_cluster_upstream_rq_time_sum{envoy_cluster_name="http_service"} 17.200000000000002842170943040401
envoy_cluster_upstream_rq_time_count{envoy_cluster_name="http_service"} 5
# TYPE envoy_listener_downstream_cx_length_ms histogram
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="0.5"} 0
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="1"} 0
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="5"} 3
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="10"} 4
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="25"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="50"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="100"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="250"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="500"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="1000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="2500"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="5000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="10000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="30000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="60000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="300000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="600000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="1800000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="3600000"} 5
envoy_listener_downstream_cx_length_ms_bucket{envoy_listener_address="0.0.0.0_9988",le="+Inf"} 5
envoy_listener_downstream_cx_length_ms_sum{envoy_listener_address="0.0.0.0_9988"} 28.6999999999999992894572642399
envoy_listener_downstream_cx_length_ms_count{envoy_listener_address="0.0.0.0_9988"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="0.5"} 0
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="1"} 0
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="5"} 3
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="10"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="25"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="50"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="100"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="250"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="500"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="1000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="2500"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="5000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="10000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="30000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="60000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="300000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="600000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="1800000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="3600000"} 5
envoy_http_downstream_rq_time_bucket{envoy_http_conn_manager_prefix="ingress_http",le="+Inf"} 5
envoy_http_downstream_rq_time_sum{envoy_http_conn_manager_prefix="ingress_http"} 19.25
envoy_http_downstream_rq_time_count{envoy_http_conn_manager_prefix="ingress_http"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="0.5"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="1"} 0
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="5"} 3
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="10"} 4
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="25"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="50"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="100"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="250"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="500"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="1000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="2500"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="5000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="10000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="30000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="60000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="300000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="600000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="1800000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="3600000"} 5
envoy_http_downstream_cx_length_ms_bucket{envoy_http_conn_manager_prefix="ingress_http",le="+Inf"} 5
envoy_http_downstream_cx_length_ms_sum{envoy_http_conn_manager_prefix="ingress_http"} 28.6999999999999992894572642399
envoy_http_downstream_cx_length_ms_count{envoy_http_conn_manager_prefix="ingress_http"} 5

EOF

Published 2019/5/8

Some tech & personal blog posts