Menu
DocumentationGrafana CloudMonitor applicationsProfilesHow profiles and traces work together
Grafana Cloud

How profiles and traces work together

Profiles, continuous profiling, and distributed traces are all tools that can be used to improve the performance and reliability of applications. However, each tool has its own strengths and weaknesses, and it is important to choose the right tool for the job as well as understand when to use both.

Profiling

Profiling offers a deep-dive into an application’s performance at the code level, highlighting resource usage and performance hotspots.

UsageDuring development, major releases, or upon noticing performance quirks.
Benefits
  • Business: Boosts user experience through enhanced application performance.
  • Technical: Gives clear insights into code performance and areas of refinement.
ExampleA developer uses profiling upon noting slow app performance, identifies a CPU-heavy function, and optimizes it.

Continuous profiling

Continuous profiling provides ongoing performance insights, capturing long-term trends and intermittent issues.

UsageMainly in production, especially for high-priority applications.
Benefits
  • Business: Preemptively addresses inefficiencies, potentially saving costs.
  • Technical: Highlights performance trends and issues like potential memory leaks over time.
ExampleA month-long data from continuous profiling suggests increasing memory consumption, hinting at a memory leak.

Distributed tracing

Traces requests as they cross multiple services, revealing interactions and service dependencies.

UsageEssential for systems like microservices where requests touch multiple services.
Benefits
  • Business: Faster issue resolution, reduced downtimes, and strengthened customer trust.
  • Technical: A broad view of the system's structure, revealing bottlenecks and inter-service dependencies.
ExampleIn e-commerce, a user's checkout request might involve various services. Tracing depicts this route, pinpointing where time is most spent.

Combined power of tracing and profiling

When used together, tracing and profiling provide a powerful tool for understanding system and application performance.

UsageFor comprehensive system-to-code insights, especially when diagnosing complex issues spread across services and codebases.
Benefits
  • Business: Reduces downtime, optimizes user experience, and safeguards revenues.
  • Technical:
    • Holistic view: Tracing pinpoints bottle-necked services, while profiling delves into the responsible code segments.
    • End-to-end insight: Visualizes a request's full journey and the performance of individual code parts.
    • Efficient diagnosis: Tracing identifies service latency; profiling zeroes in on its cause, be it database queries, API calls, or specific code inefficiencies.
ExampleTracing reveals latency in a payment service. Combined with profiling, it's found that a particular function, making third-party validation calls, is the culprit. This insight guides optimization, refining system efficiency.