Ilmari Vacklin
Ilmari Vacklin
@wolfflow Right, thanks. It'd be great if the README clearly stated requirements like these.
The semantics of the `operation` parameter are unclear to me as well. What does it mean? For example, on this line: https://github.com/open-telemetry/opentelemetry-go-contrib/blob/v1.3.0/instrumentation/net/http/otelhttp/handler.go#L127 `operation` is passed to `semconv. semconv.HTTPServerAttributesFromHTTPRequest` as the...
> I believe we need to understand who the remote docker container audience is before moving away from a general image maintained by Haskell. I for one would like to...
Here's a data point, mostly to motivate issue #186: | | Source | Min | Min+Gzip | | --- | --- | --- | --- | | [http get](https://gist.github.com/anonymous/782438bef58f8e888c91#file-main-go) |...
Hey @0xTim, do you have a release target for merging this PR now?
> @wolverian nope, we're waiting on a 1.0.0 release of https://github.com/apple/swift-distributed-tracing Ah, thanks. I didn't see a definition of release maturity in that repo, should have assumed that 0.3.0 is...
The `>=>` ligature is very annoying with Haskell code using point-free monadic code: ```haskell parse' :: Text -> Either Error [Node] parse' = first LexerError . Lexer.parse >=> first ParserError...
> Some people got it running in x86 emulation mode, does that help? If I understand the situation correctly, that would require me to install Nix under x86 emulation. I...
> By now, what I do is to use a dictionary object with all the resource names defined and reference these names through that object only. See const Resource in...
LGTM. I think I prefer the latter approach, as it looks simpler. I'll play around with this approach a bit and see how it works. I'll report if I bump...