justinholtweb/craft-controltower

Live operational monitoring dashboard for Craft CMS — site activity, editor tracking, content health, queue watch, and system metrics at a glance.

Maintainers

Package info

github.com/justinholtweb/craft-control-tower

Type:craft-plugin

pkg:composer/justinholtweb/craft-controltower

Transparency log

Statistics

Installs: 29

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

5.1.4 2026-08-19 13:55 UTC

This package is auto-updated.

Last update: 2026-08-19 13:58:40 UTC


README

Live operational monitoring dashboard for Craft CMS 5. Know what's happening on your site right now and what needs attention.

Features

  • Live Traffic — Active visitors, requests per minute, top URLs, bot vs human breakdown
  • Editor Tracking — Who's logged in, what they're editing, collision warnings when two editors work on the same entry
  • Content Health — Entries by section, stale content detection, scheduled/expired entries, drafts awaiting attention, asset volume summaries
  • Queue Watch — Waiting/running/failed jobs, common failure patterns, queue health status
  • System Pulse — CPU, memory, disk, load average, DB response time, PHP info, uptime
  • Configurable Alert Rules — Build alerts in the CP, no config files. Each rule has a metric, operator, threshold, severity, and enable toggle. Queue failures, editor collisions, and server resource spikes ship as default rules — edit, disable, or add your own. Extensible metric registry covers queue depth, CPU / memory / disk %, collisions, active editor count, and stale content.
  • Webhook & Email Notifications — Send alerts to Slack, Microsoft Teams (Power Automate / Adaptive Cards), Zapier, or any JSON receiver. Per-rule email recipients with admin-notify toggle. A Send Test button verifies delivery before you ship the rule. Flap throttling (minNotifyInterval) suppresses noisy repeats, and "notify on resolve" closes the loop. Notifications dispatch asynchronously via a queue job so SMTP / webhook latency never blocks a request.
  • Granular Permissions — Three CP permissions (viewDashboard, manageAlerts, manageSettings) so editors and ops staff get scoped access without full admin rights.
  • Overrideable Email Template — Drop a templates/_cp/_emails/alert.twig into your project to fully customize alert emails.
  • Dashboard Widget — Configurable at-a-glance summary card with auto-refresh
  • Full CP Section — Seven-tab deep dive (Overview, Live Traffic, Editors, Content Health, Queue Watch, System Pulse, Alerts) plus Alerts → Rules and Webhooks management screens

Requirements

  • Craft CMS 5.0 or later
  • PHP 8.2 or later

Installation

With Composer

# If developing locally, add as a path repository first:
composer config repositories.control-tower path /path/to/craft-controltower

composer require justinholtweb/craft-controltower
php craft plugin/install control-tower

Manual

  1. Copy the plugin to your project
  2. Add the path repository to your composer.json:
    "repositories": [
        { "type": "path", "url": "./plugins/control-tower" }
    ]
  3. Run composer require justinholtweb/craft-controltower
  4. Install via the CLI (php craft plugin/install control-tower) or through the CP under Settings > Plugins

Configuration

After installation, visit Control Tower > Settings in the control panel to configure:

Tracking

Setting Default Description
Track Visitors On Enable front-end visitor tracking via request logging
Track Editors On Track CP user activity and element editing
Track Server Metrics On Periodically sample CPU, memory, disk, and DB metrics
Collision Detection On Alert when multiple editors work on the same content

Refresh & Timeouts

Setting Default Description
Refresh Interval 30s How often the dashboard auto-refreshes
Visitor Timeout 2 min Minutes before a visitor is considered inactive
Editor Timeout 5 min Minutes before an editor session is considered inactive

Data Retention

Setting Default Description
Visitor Data 30 days
Editor Data 90 days
Content Events 90 days
Metric Samples 30 days
Alert History 90 days

Alert Thresholds

Setting Default Description
Queue Failure Threshold 3 Failed jobs before triggering an alert
5xx Error Rate 10/min Errors per minute before alert
404 Spike 50/min 404s per minute before alert
Stale Content 90 days Days without update before flagging

Scheduled Jobs

Control Tower includes three queue jobs that should be run on a schedule via cron:

# Collect server metrics (every 1-2 minutes)
php craft queue/push justinholtweb\\controltower\\jobs\\CollectMetricsJob

# Run alert checks (every 5 minutes)
php craft queue/push justinholtweb\\controltower\\jobs\\RunAlertChecksJob

# Data retention cleanup (daily)
php craft queue/push justinholtweb\\controltower\\jobs\\CleanupJob

Or push them programmatically:

use justinholtweb\controltower\jobs\CollectMetricsJob;
use justinholtweb\controltower\jobs\RunAlertChecksJob;
use justinholtweb\controltower\jobs\CleanupJob;

Craft::$app->getQueue()->push(new CollectMetricsJob());
Craft::$app->getQueue()->push(new RunAlertChecksJob());
Craft::$app->getQueue()->push(new CleanupJob());

Dashboard Widget

Add the Control Tower widget to any user's dashboard. The widget is configurable:

  • Toggle visibility for each panel (visitors, editors, queue, server, alerts, content, top URLs)
  • Set a custom refresh interval
  • Resize to any column span

The widget links to the full CP section for deeper investigation.

Architecture

Plugin.php              → Event wiring, CP nav, settings
controllers/
  DashboardController   → 8 CP page actions
  ApiController         → 8 JSON endpoints for live polling
services/
  VisitorTrackingService   → Session-hash tracking, bot detection
  EditorTrackingService    → CP route parsing, collision detection
  ContentHealthService     → Stale/scheduled/expired content, pipeline
  QueueMonitorService      → Queue health, failed jobs
  MetricsCollectorService  → CPU/memory/disk/DB, cross-platform
  AlertService             → Alert lifecycle, automated checks
records/                → ActiveRecord models (6 tables)
migrations/Install.php → Database schema
jobs/                   → CleanupJob, CollectMetricsJob, RunAlertChecksJob
widgets/                → Dashboard widget
assets/                 → CSS + JS with auto-refresh polling
templates/              → CP section (7 tabs) + widget

Privacy

  • Visitor IP addresses are stored as SHA-256 hashes, never in plain text
  • User agents are hashed for bot detection grouping
  • Session identity uses a daily-rotating hash of IP + user agent
  • All tracking data is automatically purged based on retention settings
  • Visitor tracking can be fully disabled in settings

Roadmap

v1.5 — Trend charts (15m / 1h / 24h / 7d), per-section content health, 404 and error rate trends, configurable alert thresholds

v2 — Deployment awareness (git SHA, last deploy, environment), cache metrics, database slow query panel, multi-site comparisons

Licensing

Control Tower validates its license key through Craft's built-in Craftnet integration. Craft refreshes the status out-of-band during its own update checks, so no request is made on your site's behalf at runtime.

Enforcement is strict — the plugin unlocks only on a valid or trial status:

Status Result
valid Unlocked
trial Unlocked, with a banner in the CP
unknown Locked — no key entered, or Craft hasn't reached Craftnet yet
invalid / mismatched Locked
astray Locked — the installed version is past what the license covers

Expired licenses

An expired license does not lock the plugin. Control Tower licenses are perpetual for every version released before they expire, so an install that lapses its renewal and stays put keeps reporting valid and keeps working indefinitely. Renewal only matters if you want versions released after the expiry date.

The gate trips only when an install updates past the last version its license covers — that's the astray status. Craftnet performs that version comparison itself, so the plugin never second-guesses it. From astray, both remedies are legitimate: renew to cover the newer version, or roll back to the last covered version and carry on without renewing. The license screen says exactly that.

When locked, Control Tower:

  • redirects every CP page to Control Tower → License, and collapses its nav to that one item;
  • returns 402 from its JSON endpoints;
  • shows a locked notice in place of the dashboard widget;
  • stops collecting visitor, editor, content, and metrics data, and stops running alert checks and notifications.

Existing data is never deleted, and retention cleanup keeps running. Everything reappears as soon as the license is valid again.

Saving a license key re-checks it with Craftnet immediately, and admins can force a re-check any time with Refresh status on the license screen — so a correct key unlocks the install right away rather than waiting on Craft's next scheduled update check.

Development and staging environments

Craft's canTestEditions flag (true on domains Craftnet recognises as local or dev) bypasses enforcement entirely, so local installs are never locked. That verdict is mirrored into the cache so queue workers and cron reach the same conclusion as the browser.

For CI, or for staging domains Craft doesn't recognise as testable, switch enforcement off in config/control-tower.php:

return [
    'disableLicenseEnforcement' => true,
];

This setting is deliberately absent from the settings screen — it belongs in version control, not in the CP.

License

See LICENSE.md.