A premium, compact, and professional monitoring dashboard for your infrastructure. Designed with an emphasis on high density, muted Apple-inspired aesthetics, and real-time feedback.
- Premium Compact UI: Designed to fit dozens of monitors on a single screen without scrolling. Refined typography and tight spacing.
- Custom Icon System: Support for per-system icons (Server, DB, Cloud, etc.) with precise optical alignment and generous spacing.
- Professional Palette: Muted, cohesive color tones providing distinct identity for each block without being overly "shiny."
- Branded Experience: Includes a custom Transparent Pulse Favicon for a professional browser presence.
- Stable Real-time Feedback:
- Zero Layout Shifts: Individual "Checking..." indicators use reserved space to prevent UI jumping during refreshes.
- Global Health UI: Header includes a visual health timeline (dots) and overall system health percentage.
- Privacy-First Config: Monitoring targets are stored in a local
public/config.json. This file is git-ignored for privacy. - Responsive & Lightweight: Built with Vanilla CSS for maximum performance and fluid adaptation.
-
Install dependencies:
npm install
-
Start the development server:
npm run dev
-
Open http://localhost:5173.
- Development: Run
npm run dev -- --port 5173 --host(replacing5173with your desired port). - Production: If using
serve, runnpx serve -s dist -l 5173.
Modify your monitoring list in public/config.json:
[
{
"name": "Production API",
"url": "https://api.example.com",
"icon": "cloud",
"description": "Main customer-facing gateway"
},
{
"name": "Local Synology",
"url": "http://192.168.1.100:5000",
"link": "http://synology.local",
"icon": "server",
"description": "Network Attached Storage"
}
]Use these keys in the icon field (case-insensitive):
server, database, globe, cpu, shield, harddrive, link, terminal, cloud, zap, activity, monitor.
Tip
Optional Redirects: Use the link field to specify an alternative URL for the title hyperlink (e.g., a friendly hostname) while keeping url for the actual health check. The dashboard will automatically display the hostname from the link if provided.
Tip
If the icon field is missing or invalid, the system defaults to the Activity pulse icon.
npm run build
npx serve -s dist- reachability-based Mode: Uses browser-native fetching to "ping" services. This detects basic reachability (UP/DOWN) and latency.
- CORS Sensitivity: Due to browser security, detailed HTTP error codes are often hidden; the dashboard relies on connection success/failure for status.
- React 18 / TypeScript
- Framer Motion (Smooth transitions & stabilized checking animations)
- Lucide React (Minimalist photography)
- Vanilla CSS (Custom high-density design system)
This project is released under the MIT License. Add a LICENSE file containing the MIT text when publishing or redistributing it.
