Johan Tibell
Johan Tibell
I will leave it up to @23Skidoo to decide as he's the primary maintainer nowadays.
See https://github.com/tibbe/ekg/pull/77#issuecomment-730654534
@23Skidoo is the current maintainer. My general feedback back when this was discussed is that using TH to embed files in a binary for the purpose of easy distribution is...
A drive-by comment since I'm no longer the maintainer but `startServer` is hidden on purpose as the user should care/know what web servers is used behind the scenes. I had...
Good idea. I'd start with documenting the core packages and their relationships and then add some pointers to various well-used packages.
I think we should do this. It's on my agenda in the medium-term.
`Distribution` does yet support percentiles (or other quantiles), as I want a better implementation than the one in statsd, which holds on to every data point. That approach doesn't scale...
The wall clock time is already there as `ekg.server_time_ms`. We could add the CPU time as `ekg.server_cpu_time` or similar. Want to give it a try?
I think the comment is wrong and it should say `ekg.server_timestamp_ms`. I have been thinking about adding other metrics, such as scraping `/proc` on Unix. It should be doable without...
Have a look at https://ghc.haskell.org/trac/ghc/ticket/8972#comment:1. It looks like contended `IORef`s scale very poorly. I will try to use the C implementation I gave in that ticket in ekg. Should make...