An enterprise-grade, automated PCAP analysis tool designed to detect complex network issues like TCP timeouts, retransmissions, and application latency.
- Automated Analysis: Detects "Dillon's Symptoms" (Low MSS + High Retransmissions + Timeouts).
- High Performance: Streaming Go backend handles gigabyte-scale PCAP files.
- Visual Dashboard: React-based UI for visualizing streams and issues.
- Privacy Focused: Runs locally or on-premise; data stays in your control.
- Frontend: React, TypeScript, Tailwind CSS, Vite
- Backend: Go (Golang), Gin, gopacket
- Database: PostgreSQL (Analysis Results)
- Cache: Redis (Job Queue)
- Go 1.21+
- Node.js 18+
- Docker & Docker Compose
-
Start Infrastructure (Postgres & Redis)
cd backend/deployments/docker docker-compose up -d -
Start Backend
cd backend go mod tidy go run cmd/server/main.go -
Start Frontend
cd frontend npm install npm run dev -
Open
http://localhost:5173in your browser.
MIT