wmedvede commented on PR #4094:
URL:
https://github.com/apache/incubator-kie-kogito-runtimes/pull/4094#issuecomment-3666695004
@gabriel-farache thanks for the explanations.
Going back to the filtering and the spans nesting, I'm not sure that current
nesting reflects the WF execution itself.
Lets forget about the filtering and se the steps only:
Imagine we have a WF like this:
Step1 -> Step2 -> Step3.
So, with the current modeling the following is being created:
Trace: POST / greet
-> Span1 (for step1)
-> Span2 (for step2)
-> Span3 (for step3)
So what we are saying is that e.g. step2 executes "inside" step1, and step3
executes "inside" step2.
But, the execution of these steps is basically independent.
I think that instead, from the logical point of view, something like this
models the better the execution:
Trace: POST / greet
-> Span1 (for step1)
-> Span2 (for step2)
-> Span3 (for step3)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]