Marcos Mendez

Results 23 comments of Marcos Mendez

any progress on this?

Hi @trayo . Sorry for the delay. The idea is to allow a hook into the deployment validation. Could add a validation script (taking the app domain, url, etc as...

@trayo adding the event helps. I was hoping not to have to maintain a fork to implement this, but maybe we'll have to anyway. Have to include support in the...

any progress on this?

some screenshots of the empty histogram that is sent to the metrics service. ``` 7:17PM WRN ignoring empty summary metric=envoy_server_initialization_time_ms original-name=server.initialization_time_ms 7:17PM WRN ignoring empty summary metric=envoy_cluster_envoy_exporter_upstream_cx_length_ms original-name=cluster.envoy_exporter.upstream_cx_length_ms 7:17PM WRN...

a better example: this is what envoy exposes on /stats/prometheus ``` # TYPE envoy_cluster_upstream_cx_connect_ms histogram envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="exporter",le="0.5"} 0 envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="exporter",le="1"} 0 envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="exporter",le="5"} 2 envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="exporter",le="10"} 2 envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="exporter",le="25"} 2 envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="exporter",le="50"} 2 envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="exporter",le="100"} 2 envoy_cluster_upstream_cx_connect_ms_bucket{envoy_cluster_name="exporter",le="250"}...

to reproduce this run envoy 1.22.2 with the following configuration. $ envoy --version envoy version: c919bdec19d79e97f4f56e4095706f8e6a383f1c/1.22.2/Modified/RELEASE/BoringSSL $ envoy -c envoy.yaml ``` static_resources: listeners: - address: socket_address: address: 0.0.0.0 port_value: 8080...

then start a simple python server that will serve as the upstream ``` python3 -m http.server ``` and run this go program to serve as the metrics sink: `go run...