NN

Results 204 comments of NN

Can you add encodie without base64 for trace/span ids so this can be written to a file ?

OTLP JSON file needs a regular id with hex encoding, not base64.

According to the specification the ids must be hex string and not base64 The traceId and spanId byte arrays are represented as [case-insensitive hex-encoded strings](https://tools.ietf.org/html/rfc4648#section-8); they are not base64-encoded as...

Seems like the easiest is to use otel collector with file exporter support such as: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/exporter/fileexporter/README.md

Correct. My project is single-file application which runs tests in its assembly using NUnitLite: ```cs using NUnitLite; namespace MyTests { public static class Program { public static int Main(string[] args)...

This workaround is not working too. The code calls Assembly.CodeBase which throws.

It is a little bit more complicated. There are two modes of single-file application with file extraction (.NET Core 3) and without (.NET 5.0 default). Let's see .NET 5.0 in...

> I have just one question. I'm reluctant for us to support this scenario and maybe you can help me resolve this. Why is it a good thing for the...

There is another issue with NUnitLite and single-file mode. For some reason it cannot find tests but when you run it in verbose mode, everything works fine.