cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

how to capture service flow among multiple processes by oneagent SDK for C

hiroshi_aoki
Dynatrace Organizer
Dynatrace Organizer

When we need to capture service flow among multiple processes, is the following image correct?

Or the first process need to call outgoingremotecall() and create a tag and then all preceding processes call incomingremotecalltrace(),share the tag the first process created?


2 REPLIES 2

Alram_Lechner
Dynatrace Participant
Dynatrace Participant

Hi Aoki,

your chart is ok. don't forget to call tracer_end(...) - thats missing in your chart. for every tracer_start() call, you need to have a tracer_end() call.

about your question: no - please don't reuse (share) tags. a tag received by an outgoing tracer, should only be used once to start an incoming tracer.

BR Alram


Thank you. we will start implementing oneagent SDK to our prospect's program sources based on your advice.


Featured Posts