local.dev
Monitor and manage your local development servers.
Overview
Track the health and status of all your local services.
Dashboard
Access Local → Servers to view:
- Running services
- Health status
- Resource usage
- Logs
Server Status
| Status | Description |
|---|---|
| Running | Service is healthy |
| Warning | Service has issues |
| Stopped | Service not running |
| Unknown | Cannot determine status |
Health Checks
Configure health checks for your services:
services:
my-app:
healthcheck:
endpoint: /health
interval: 30s
timeout: 5s
retries: 3Check Types
- HTTP - Request to endpoint
- TCP - Port connectivity
- Command - Execute command
Logging
View Logs
# Stream logs
local logs my-app --follow
# Last 100 lines
local logs my-app --tail 100Log Levels
| Level | Description |
|---|---|
| DEBUG | Detailed information |
| INFO | General information |
| WARN | Warning messages |
| ERROR | Error messages |
Resource Monitoring
Track resource usage:
- CPU - Processor utilization
- Memory - RAM usage
- Disk - Storage consumption
- Network - Bandwidth usage
Starting/Stopping Services
Via Dashboard
- Navigate to the server
- Click Start or Stop
Via CLI
# Start service
local start my-app
# Stop service
local stop my-app
# Restart service
local restart my-appAlerting
Set up alerts for service issues:
- Email notifications
- Slack integration
- Webhook callbacks