Dmitry Ivanov
Dmitry Ivanov
Yeah, that helps in some, probably most, situations. But when you're not controlling json structure and field names (and they contain dashes or spaces for example), this method doesn't really...
No, only repetition. I could easily make a shell shorthand `sos1` for this, so no worries.
POC: https://github.com/ethercrow/aeson/commit/3c43bcdd2c7ef16172a030a591c4b54be739c349 ``` >> ./bench.sh compare cabal-plan-master cabal-plan-fast-and-loose INFO: Comparing runs: cabal-plan-master cabal-plan-fast-and-loose RUN: criterion-cmp .bench-results/cabal-plan-master.csv .bench-results/cabal-plan-fast-and-loose.csv Benchmark cabal-plan-master cabal-plan-fast-and-loose Examples/decode/cabal-plan/lazy 1.054e-3 0.898e-3 -14.84% Examples/decode/cabal-plan/strict 1.075e-3 0.890e-3 -17.16% Geometric mean...
cc @maksbotan With the current master the following seems to work: ``` mkfifo foo.eventlog.pipe eventlog-to-zipkin read foo.eventlog.pipe & foo +RTS -N1 -l -olfoo.eventlog.pipe ``` Note the `-N1` there. When running...
Hi Jordan! I agree that this mode of operation is very important to production use. I did some experiments and was able to get it working with some caveats. So...
@domenkozar not directly, but if we gain the ability to flush the eventlog regularly then it would be feasible for the restreaming application to merge the eventlog portions on the...
In my experience having some auxiliary processes in a docker container has always been fine. I read this guidance as "avoid putting unrelated services into one container", not as a...
Currently we export trace data to Tracy via chrome tracing format that doesn't have these features. Tracy's internal wire format is not stable and intentionally not advertised in docs, so...
@mpickering I think these two files should be enough for GHC https://github.com/ethercrow/opentelemetry-haskell/blob/master/opentelemetry/src/OpenTelemetry/Eventlog.hs https://github.com/ethercrow/opentelemetry-haskell/blob/master/opentelemetry/src/OpenTelemetry/SpanContext.hs but you'd have to replace the `Control.Monad.Catch.generalBracket` with the GHC-specific one. After you have an eventlog, you...
"202 Accepted" is fine, I'll fix the status code check. Yeah, I haven't thought of non-threaded runtimes yet, I'll take a look, thanks for the eventlog!