Skip to main content
Stack traces are the core artifact when investigating why code failed. Traceback automatically normalizes and symbolicates stack traces across all supported languages.

Anatomy of a Stack Frame

A processed stack frame contains:
  • File Path: Original relative file path (e.g., src/billing/subscription.ts)
  • Function Name: The calling function or closure
  • Line & Column: Exact line and column index in source
  • Context Lines: 5 lines of source code preceding and following the failure
  • In-App Marker: Differentiates your application code from third-party vendor dependencies (node_modules)

Minified vs. Symbolicated Stacks


Setting Up Automatic Symbolication

To enable automatic symbolication, upload source maps during your build:
Read our Source Maps Guide for CI/CD integrations.