Bryn Cooke
Bryn Cooke
I also miss `get_or_insert_mut`. When trying to use this as a multimap I first have to do a `get_or_insert` followed by a `get_mut`, first to populate a vec for a...
@CGMossa Could you elaborate a bit more? The final struct that a buildstructor builder spits out is not derived, it is the result of a constructor being called. Thus you...
Hi, I have in the past investigated serialization of lambdas. It basically works out of the box if Java serialization is used and the interface that the lambda is implementing...
The other solution is to enable lambda serialization in Kryo: https://github.com/magro/kryo/blob/bf803974ba6351d993093636aac00245f1ec28bc/test/com/esotericsoftware/kryo/serializers/Java8ClosureSerializerTest.java#L52 This could be done with reflection to prevent a dependency on Java8.
Thanks, I'll create a PR.
This is something that we need to implement. The existing datadog opentelemetry implementation is only understands `service.name` out of the box. It doesn't help that what is currently called `attributes`...
We've settled on the following which should be consistent with the rest of our config: ```yaml telemetry: tracing: common: resource: attributes: router: static: - name: "version" value: "v1.0.0" request: -...
A lot of progress has been made on this in #1514 I think the only thing that is left is: Ability to dynamically disable tracing in the event it impacts...
Potentially fall back to file polling.
~~Is there a specific case where this happens? I checked a couple of locations and it looks like the json schema catches duplicates.~~ Found one: ```yaml telemetry: tracing: trace_config: attributes:...