Quick Start
Quick Start
Section titled “Quick Start”Get SilentPulse up and running locally in minutes using Docker Compose.
Prerequisites
Section titled “Prerequisites”- Docker 20.10+
- Docker Compose 2.0+
- 4GB RAM available
1. Clone the Deploy Repository
Section titled “1. Clone the Deploy Repository”git clone https://github.com/silentpulse-io/deploy.gitcd deploy2. Configure
Section titled “2. Configure”cp deploy/docker-compose/.env.example deploy/docker-compose/.envEdit .env to set at minimum:
JWT_SECRET- generate withopenssl rand -hex 32POSTGRES_PASSWORD- change from default
3. Start the Stack
Section titled “3. Start the Stack”docker compose -f deploy/docker-compose/docker-compose.yml up -dThis starts:
- PostgreSQL with Apache AGE (graph database)
- Redis (observation cache)
- API Server (REST API)
- CMDB Sync (asset synchronization)
- Health (health monitoring)
- Notifications (alert dispatcher)
- Reporting (report generation)
- Frontend (React dashboard)
4. Access the Dashboard
Section titled “4. Access the Dashboard”Open http://localhost:3000 in your browser.
Default credentials:
- Email:
[email protected] - Password:
admin123
WARNING: Change the default admin password immediately after first login.
5. Create Your First Pulse
Section titled “5. Create Your First Pulse”- Click Pulses → New Pulse in the sidebar
- Name it (e.g., “Production Splunk”)
- Select connector type (Splunk, Kafka, Elasticsearch, etc.)
- Enter connection details (URL, credentials)
- Choose Discovery Mode — the system will auto-learn which assets report
- Click Create Pulse
That’s it. The system starts learning your baseline. After the learning phase (default 24h), monitoring activates automatically and you’ll be alerted when any asset goes silent.
Optional: Enable MCP Server
Section titled “Optional: Enable MCP Server”docker compose -f deploy/docker-compose/docker-compose.yml --profile mcp up -dThe MCP server will be available at http://localhost:8090.
Next Steps
Section titled “Next Steps”- Installation Guide - Production deployment with Helm
- Architecture - Understand how SilentPulse works
- Integrations - Connect to your security stack