Distributed tracing lets you follow a single request as it flows through your microservices, databases, and external APIs. It is essential for finding latency bottlenecks and understanding how failures propagate across your system.
Add the Nova tracing SDK to your application. Nova supports OpenTelemetry, so you can use any OTLP-compatible library:
Add the tracing initialization code to your application entry point:
Deploy your instrumented application and send some requests. Traces will start appearing in Nova within seconds.
Go to Observability > Traces to see the trace list. Click on any trace to see the waterfall view showing every span across services.
Slow spans are highlighted in the waterfall view. Click on a span to see its duration, status code, and any error details. Nova also shows the percentage of total request time each span consumes.
Nova auto-instruments common frameworks (Express, Flask, Spring Boot) so you get traces without writing any custom code. Just install the agent.
Create alerts based on trace metrics. For example, alert when P99 latency for the checkout service exceeds 2 seconds.
Click View Logs on any span to see the logs emitted during that span's execution. This correlation is automatic when using the Nova agent.
Trace requests across your entire stack and find bottlenecks fast.
Start Free Trial