Moritz Lang

Results 77 comments of Moritz Lang

Yes, that's a good point. I also found a bit strange to pass in `nil` to basically tell the `TracingInstrument` to use the current timestamp. How about making it a...

Thanks for chiming in, @pokryfka 👍 I guess we aim for `TracingInstrument` to be the standard way to vend tracing APIs. Then the question would be if it should be...

@pokryfka Awesome, thanks for taking the time to create this 😎 I think we can use your PR from now on to discuss XRay specific things / current limitations to...

`latest-trunk` could already be implemented by parsing https://download.swift.org/development/ubuntu2004/latest-build.yml.

> amazonlinux2 and centos7/8 would be good as well > @adam-fowler Thank you, that's a great suggestion! How would you run your CI on GitHub Actions using these distributions? Using...

> Maybe the action should at least recognise this, and download the correct version of swift > @adam-fowler Good point, then let's try and support all platforms where both Swift...

> Now it is running, however it can't find the scheme. Hm, that's on me. Apparently the scheme is not saved as part of the workspace although it's "shared". I'll...

I'm currently finishing up the server span attributes. Per Otel spec, we should either add HTTP attributes to the same Span or create a child Span of the gRPC span...

> Try what is simpler for now (so just one span I guess) and let's try doing the client as well so we can show two grpc services talking to...

I added these HTTP attributes on the server span: - `http.method` - `http.flavor` - `http.target` - `http.status_code` - `http.status_text` - `http.user_agent` I'm not sure where to extract values for the...