Details
Description
We need a way to trace certain server side operations (for example upsert) to address possible performance issues in the fields.
General approach is to mark the code with tracing entries:
Event event = start("someOperation", traceId, label, ...); ... event.finish()
Possible implementation options:
- OpenTracing API based intergration
- Event based tracing
- lttng for Linux
- JFR
- Trace logging (simplest approach with most overhead)
Clarification is required.