Skip to content
TraceStax Docs

Quick start

This guide gets you from zero to live job monitoring in under five minutes.

You’ll need a TraceStax account — sign up free, no credit card required.

Once you’re in, create a project and copy your API key from the project settings page.


  1. Install the SDK for your stack

    Terminal window
    pip install tracestax-celery
  2. Wrap your worker

    from celery import Celery
    from tracestax_celery import TraceStaxMonitor
    app = Celery("tasks", broker="redis://localhost:6379/0")
    TraceStaxMonitor(
    app=app,
    api_key="ts_live_xxxxxxxxxxxx",
    ).install()
  3. Deploy and verify

    Run your worker as normal. Within 30 seconds you should see events flowing in the TraceStax dashboard.

    If events aren’t appearing, check the troubleshooting guide.