Bob Weinand
Bob Weinand
@Meuk The only thing we currently have to offer is using Span Links instead of setting the root span parent on the other end. If you look at @natepage code,...
EventLoop::run() is perfectly fine when you have no specific top-level event to wait on, i.e. if your code is just repeats. A common alternative to just using `EventLoop::run()` here would...
The proper way would be to just do a top-level loop (I.e. outside of EventLoop:: and not call EventLoop::run - the receive() call keeps the event loop alive): ```php while...
Another approach could be using something like https://github.com/stevebauman/wmi? But obviously that requires the COM extension, which however is generally available, just needs to be enabled in php.ini...
I'd like to add that I'd really love to see a possibility to do this, in particular tunneling a ssh tunnel through a ssh tunnel would be awesome (sometimes you...
@joelwurtz You should keep a count and if the number multiplexed sockets matches that count (i.e. all sockets over it are unreferenced), then you unreference the underlying stream as well,...
yeah, unreference is meant to allow automatic stopping of the loop if nothing is going on. You should only reference things within the loop which are contributing to the processing...
I'm definitely interested in span link names and kinds. Regarding span link names, most naming can be inferred by the relationship described by the span link kind alone. But sometimes...
> this list might become [...] possibly ambiguous It may be the case that a multiple link kinds match a specific scenario. The goal however isn't having a precisely disjunct...
If this applies. There may be reasons to not do this. Not everyone wants to have everything in a single big trace for example, we've heard complaints about traces not...