Vladimír Vráb
Vladimír Vráb
Any update? As soon as DO would have NAT gateway, i am migrating from AWS :)
Can we release this? https://github.com/micronaut-projects/micronaut-kafka/issues/811
We are having the same issue. We are using `project-reactor` and we can see that the trace is stopped as soon as we fire HTTP calls inside of validations we...
I found an issue. It was not an issue in **dd-trace-java** package per see. The issue was that the trace was closed before the `Mono.zip(...)` had a chance to finish....
@cristianbriscaru You don't need to have this support on **micronaut-kafka** level at all. You can define retry strategy on your Mono created by ledger service. Example ```java return ledgerService.create(LedgerExternalId.from(message.value().getEntity().get().getId())) .retryWhen(Retry.backoff(Integer.MAX_VALUE,...
I can understand both sides: - having health check doing connect & ping-pong - having health check doing only ping-pong That's why I would allow engineers to define which one...
@richardgalestok Can't we get access to the living connection? I would say majority of applications use Redis for caching purposes so if we can get a hold of that active...
Oh, after exchanging ```php $tracer = GlobalTracer::get(); ``` to ```php $tracer = new Tracer(); ``` memory doesn't increase anymore. I am trying to think now whether it makes sense or...
After we call ```php GlobalTracer::get()->getRootScope()?->getSpan()->setTag('result', 'OK'); GlobalTracer::get()->getRootScope()?->close(); dump(GlobalTracer::get()); ``` we always get **DDTrace\Tracer** object with a different object id as with every new message we consume, we create a new...