Traversion has evolved from a local code versioning tool into a production debugging platform that lets you travel through time to understand, debug, and fix production issues.
- Tracks cause-and-effect relationships between events
- Identifies root causes automatically
- Detects patterns and anomalies
- Predicts future system behavior
- Collects events from all services
- Tracks HTTP requests, database queries, errors
- Distributed tracing with spans
- Automatic PII sanitization
- TimeQL: SQL-like language for time travel
- Query system state at any point
- Compare different time periods
- Trace causality chains
- Real-time visualization
- Time travel slider
- Causality graph
- System metrics
npm run test:causalityThis demonstrates:
- Event tracking across services
- Cascade failure detection
- Root cause analysis
- Time travel through system states
npm run demo:productionThis launches:
- Full production simulation
- Real-time dashboard (opens automatically)
- TimeQL query console
- Live causality visualization
TimeQL lets you query your production system at any point in time:
STATE AT '2024-01-15 15:47:23' WHERE service = 'api-gateway'TRAVERSE FROM event_id FOLLOWING backward UNTIL error_occurred = trueMATCH PATTERN
WHERE cpu > 80%
FOLLOWED BY memory > 90%
WITHIN 5 minutes
IN LAST 30 daysCOMPARE '2024-01-15 15:45:00' WITH '2024-01-15 15:50:00' FOR cpu, memory, errorRatePREDICT NEXT 5 minutes FROM 'now'Every service runs an EventCollector that captures:
- HTTP requests/responses
- Database queries
- System metrics
- Custom events
- Errors and exceptions
The CausalityEngine analyzes events to understand:
- Direct causality (trace context)
- Temporal causality (time correlation)
- Data flow causality (shared data)
- Service-level causality (cross-service)
The TemporalQueryEngine enables:
- Query any moment in history
- See complete system state
- Understand what led to failures
- Test fixes against historical data
The Production Dashboard provides:
- Timeline slider for time travel
- Real-time event stream
- Causality graph visualization
- System health metrics
-
Open Dashboard
npm run demo:production
-
Find the Error
- Look at the event stream
- Check the timeline for error markers
-
Travel Back in Time
- Drag the timeline slider to before the error
- Watch the system state evolve
-
Identify Root Cause
- Use TimeQL to trace causality
- View the causality graph
- Check system metrics at failure point
-
Test Your Fix
- Query historical state
- Validate your hypothesis
- Deploy with confidence
// 1. Find when the first error occurred
const timeline = await queryEngine.query(
"TIMELINE FROM '10 minutes ago' TO 'now' WHERE eventType = 'error'"
);
// 2. Get system state at that moment
const state = await queryEngine.query(
`STATE AT '${timeline.events[0].timestamp}'`
);
// 3. Trace causality chain
const chain = causalityEngine.traceCausalityChain(
timeline.events[0].eventId,
{ direction: 'backward' }
);
// 4. Find root cause
const rootCause = causalityEngine.findRootCause(
timeline.events[0].eventId
);
console.log('Root cause:', rootCause);
// Output: Database connection pool exhausted at 15:47:23- 10x faster MTTR - Find root causes in seconds, not hours
- Complete visibility - See everything that happened
- Causal understanding - Know what caused what
- Time travel - Rewind and watch failures happen
- Pattern detection - Identify recurring issues
- Anomaly detection - Catch problems early
- Predictive analytics - Forecast failures
- What-if analysis - Test fixes against history
- Shared understanding - Everyone sees the same timeline
- Learning tool - Junior devs debug like seniors
- Reduced stress - No more panic debugging
- Better postmortems - Complete incident timelines
✅ Causality detection engine ✅ Event collection system ✅ Temporal query engine ✅ Production dashboard ✅ TimeQL query language
- eBPF-based system monitoring
- Distributed event streaming (Kafka)
- Cloud storage backend
- Machine learning models
- Auto-remediation
- Multi-region support
"Your app crashed at 3:47 AM? Let's go to 3:46 AM and watch it happen."
This is no longer a vision - it's reality. Traversion transforms production debugging from archaeology into time travel, from guesswork into direct observation.
Welcome to the future of production debugging. Welcome to Traversion.
For more details, see the Technical Architecture and Vision documents.