Is there anywhere I can find the TraceId and SpanId in the OutSystems log database in O11?
TraceId and SpanId that you ask is it OpenTelemetry components ?
If yes, then you need to integrate first (see this guide : https://success.outsystems.com/documentation/11/monitoring_and_troubleshooting_apps/introduction_to_log_streaming/configuring_the_log_streaming_service_in_lifetime/set_up_the_opentelemetry_collector/)
Hi @Toto
Thanks for sharing the guide. Just to confirm: are these values (TraceId, SpanId) not stored in the default OutSystems logging tables (like OSLOG_Error, OSLOG_Integration, etc.) in OutSystems 11, unless OpenTelemetry is explicitly integrated and configured?
I don't have experience with OpenTelemetry in Outsystems, but from the documentation, I assume so.
Okay, Thanks for your time
Hello,
I found this related content, please check if this helps.
https://run.unl.pt/bitstream/10362/160537/1/Deodato_2021.pdf
Junaid
Thank you for sharing the document!
Hi @Ramprasath R
You won’t find TraceId and SpanId stored in the Outsystems log database tables by default. They are generated at runtime (for request tracing / distributed tracing scenarios), but O11 does not persist them in the standard platform log tables like:
In Outsystems 11 Reactive, there is:
They exist only at runtime unless you log them manually or use external monitoring.
Hope this helps.