echo-contrib
echo-contrib copied to clipboard
Echo community contribution
instead of `NewPrometheus(subsystem string, skipper middleware.Skipper, customMetricsList ...[]*Metric)` that has configuration as list of arguments we should have single argument that is configuration struct. This way it is easier to...
Add body on NewRequest, not nil
https://github.com/labstack/echo-contrib/blob/fd0452527ce01ce8a4801451d351aa093f169b97/jaegertracing/jaegertracing.go#L240 POST requests are sent with a nil body? the body param is not used or I'm missing something? Thanks
### Issue Description Hello, I'm just checking out the middleware (don't want to write my own).. Typically I'm used to just using the vanilla prometheus `promauto` (EG `promauto.NewCounter()` to create...
I would really like to be able to track the number of requests that are currently in flight for my application. To do this, I could of course create my...
When using the prometheus middleware AND the Gzip middleware I get a compressed response for `/metrics` without the Transfer-Encoding header.
I have a configured tracer which is used for tracing grpc requests. Now I want to use the same tracer for http requests. Unfortunately there is no config option in...
`NewPrometheus` uses `customMetricsList` as a single optional argument, panicking on multiple arguments and making function semantics less than obvious (I had to look up the code), while in fact using...
here is my config. it seems the jeager tracer doesnt care my env. ``` JAEGER_AGENT_HOST=127.0.0.1; JAEGER_AGENT_PORT=6831; JAEGER_SAMPLER_PARAM=0.001; JAEGER_SAMPLER_TYPE=const ```
Need the SetListenAddress in prometheus to include the middleware in my project where the go project is being used as an API gateway and if the default address is set...