Bastian Eicher
Bastian Eicher
The specification you linked to says: > A Prometheus Exporter MAY support [OpenMetrics Text Format](https://github.com/prometheus/docs/blob/main/content/docs/instrumenting/exposition_formats.md#openmetrics-text-format), including the [Exemplars](https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md#exemplars). So basically my feature request would be to implement this optional part...
I don't really think that such a feature would conflict with the principle of enabling and disabling metrics and traces independently. Basically my suggestion would just be to consider `Activity`s...
@alanwest Thanks for the activity processor suggestion! Another option I wanted to look into is registering my own `ActivityListener`. Do you see some significant advantages to either one of these...
Sure thing. :) Rebased.
> @bastianeicher The code in this PR does not compile. Sorry about that. It did compile before the rebase but I didn't check it after. Fixed by replacing `Console` with...
The [`google.api.FieldBehavior` option](https://github.com/googleapis/googleapis/blob/master/google/api/field_behavior.proto) provides a somewhat standardized way to express the intent of whether a field should be nullable or not: ```proto string id = 1 [(google.api.field_behavior) = REQUIRED]; //...
@Falco20019 Ah, you're right of course. `string` was a bad example for this kind of nullability. However, for fields with a message type I still think `google.api.field_behavior` could be helpful....
I've published a small NuGet package with extension methods that that add rudimentary support for the richer gRPC error model: https://github.com/nano-byte/grpc-rich-error https://www.nuget.org/packages/GrpcRichError/
@Numpsy I added that `#if RESPECT_NT_TIMESTAMP` a long time ago for an admittedly rather specific use case: Zero Intall is a cross-platform package manager. The Linux version uses CLIs like...
I agree a flag file seems like a better solution. But who would be responsible for creating it? Any Zero Install instance running on Windows coming across an implementation directory...