Favicon of Checkmate

Checkmate

Get real-time insights into your infrastructure with this open source monitoring platform. Track websites, servers, Docker containers, and more with instant alerts.

Gain complete visibility into your infrastructure with this simple, end-to-end monitoring platform. It provides real-time insights, powerful analytics, and instant alerts to help you monitor your servers with confidence. As a fully open-source and self-hosted solution, you maintain complete control and privacy over your data, free from the complexity of traditional enterprise software.

Key monitoring capabilities include:

  • Website Monitoring: Track uptime, performance, and availability from multiple locations.
  • Page Speed Insights: Analyze and optimize website performance with detailed metrics.
  • Infrastructure Monitoring: Keep an eye on CPU, memory, and disk usage.
  • Docker Monitoring: Monitor container health and resource consumption in real-time.
  • Ping Monitoring: Check network latency and availability with customizable pings.

Manage your operations effectively with built-in incident management, instant email notifications, and the ability to schedule maintenance windows.

Directory Structure

checkmate
checkmate-data
db-data
.env
docker-compose.yml

docker-compose.yml

services:
  checkmate:
    image: ghcr.io/bluewave-labs/checkmate:latest
    container_name: checkmate
    restart: unless-stopped
    ports:
      - "8080:8080"
    environment:
      - DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@db:5432/${DB_NAME}
      - SECRET_KEY=${SECRET_KEY}
    volumes:
      - ./checkmate-data:/data
    depends_on:
      - db

  db:
    image: postgres:15-alpine
    container_name: checkmate_db
    restart: unless-stopped
    environment:
      - POSTGRES_USER=${DB_USER}
      - POSTGRES_PASSWORD=${DB_PASSWORD}
      - POSTGRES_DB=${DB_NAME}
    volumes:
      - ./db-data:/var/lib/postgresql/data

.env

DB_USER=checkmate_user
DB_PASSWORD=your_super_secret_password
DB_NAME=checkmate_db
SECRET_KEY=your_super_secret_key

Share:

Ad
Favicon

 

  
 

Similar to Checkmate

Favicon

 

  
  
Favicon

 

  
  
Favicon