Robin Palotai
Robin Palotai
Using clang-10 seems to help me: ``` bazel clean --expunge CC=clang-10 bazel build -c opt //source/exe:envoy ```
For those wondering why their flogger logging works seemingly through `slf4j`, even if they didn't add that `backend_factory` system property - probably `jul-to-slf4j` is pulled in somehow (hinted by https://stackoverflow.com/a/41592332),...
No problem. I might attempt a README PR to clarify the situation. Actually, a litmus-test if you are using `flogger` through `slf4j` or the `jul-to-slf4j` mapping: Do ``` logger.atFiner().log("This is...
Ah, sorry, was too entrenched in the context and omitted it. If I read it correctly, it's the `collect` method which can be called concurrently via the pooled http server....
I agree with the sentiment, but the binding of the HTTP handler at https://github.com/prometheus/client_java/blob/master/simpleclient_httpserver/src/main/java/io/prometheus/client/exporter/HTTPServer.java#L165 is a bit misleading. Binding explicitly to both `/` and `/metrics`, the naive reader would expect...