Self-Hosted Monitoring
Without Any Limits
Blood Kings Monitoring is an open-source server and services status monitoring system. Light remote agents measure performance and uptime directly from Linux, Windows, or Docker containers.
Test your server instantly
Enter any URL and watch DNS, TCP, TLS, and HTTP checks run in real-time across our network.
Enter a URL above and click the button to simulate a monitor.
Complete Monitoring Ecosystem
SaaS services restrict you with monitor counts, check intervals, and pricey add-ons for remote nodes. We break those barriers.
100% Self-Hosted
Keep your logs and overall infrastructure under absolute personal control. No third-party servers.
Remote Agents
Native, lightweight agents for Linux, Windows, macOS, and Docker containers sending system data.
Public Status Pages
Share uptime status and current incident logs with customers on modern, fast public status pages.
SSL Monitoring
Monitor validity and details of SSL/TLS certificates. Get notified long before they expire.
IPv4 & IPv6
Full support for both IP protocols. Test availability without any network limitations.
Response Time
Measure responses in milliseconds from multiple global locations and isolate bottleneck paths.
Incident Management
Log outages, generate incident timelines, and report progress to your service subscribers.
Instant Notifications
Receive alert triggers on Discord, Telegram, Slack, Webhooks, or SMTP email in the second of failure.
Multi-user Support
Manage team permissions securely. Roles include Administrator, Editor, and Read-only views.
Designed for Complete Clarity
The intuitive dashboard provides an aggregated, real-time look into monitor status, latency waveforms, and agent metrics.
Multi-location Probing
Distributed monitoring eliminates false alarms. If a path fails in USA, agents in Europe confirm the actual status.
Distributed Agents
Live view of nodes that actually reported measurements in the last 24 hours.
Loading live data...
Blood Kings vs Traditional Services
See how we compare to established cloud-based uptime monitoring solutions.
| Feature | Blood Kings | HetrixTools | UptimeRobot |
|---|---|---|---|
| Self Hosted | β Yes | β No | β No |
| Remote Probing Agents | β Unlimited & Free | β οΈ Restricted / Paid | β No |
| Unlimited Monitors | β Yes | β Paid Limits | β Paid Limits |
| Public Status Pages | β Unlimited | β Yes | β Yes |
| Open Source (MIT) | β Yes | β No | β No |
| IPv4 / IPv6 Dual Stack | β Yes | β Yes | β οΈ Limited IPv6 |
Spin Up Server in 60 Seconds
Deploying the central Blood Kings server is quick and simple thanks to Docker containerization.
Create docker-compose.yml
Save this configuration block inside a directory on your target host machine.
version: '3.8'
services:
bloodkings-server:
image: bkpepe/bloodkings:latest
ports:
- "8080:80"
volumes:
- ./data:/var/www/html/data
restart: alwaysStart the Container
Run the compose stack to spin up the webserver daemon on your host VPS.
docker compose up -dComplete Setup
Open browser to http://localhost:8080 and proceed with the initial admin account setup.
Install Agent in 10 Seconds
Choose your platform and copy the installation script. The agent automatically detects the target OS and runs.
curl -fsSL https://monitoring.bloodkings.eu/install.sh | sh -s -- --token YOUR_SECRET_TOKENirm https://monitoring.bloodkings.eu/install.ps1 | iex; install-agent -Token "YOUR_SECRET_TOKEN"version: '3.8'
services:
bloodkings-agent:
image: bkpepe/bloodkings-agent:v0.1.0-alpha
restart: always
environment:
- SERVER_URL=https://monitoring.bloodkings.eu
- AGENT_TOKEN=YOUR_SECRET_TOKENcurl -fsSL https://monitoring.bloodkings.eu/install.sh | sh -s -- --arch arm64 --token YOUR_SECRET_TOKEN