Cory Doctorow recently coined the concept of "Sovereign AI" as "nonsense," arguing that in a shifting geopolitical landscape, the focus shouldn't be on building national AI models. Instead, the priority should be sovereign apps and datacenters.
For those of us in the trenches of IT operations and managed services, this hits home. While the world debates the ethics of LLMs, you are dealing with a Windows Server 2019 instance that blue-screened at 3 AM, or a QNAP NAS that has run out of disk space because the log rotation script failed.
The industry is obsessed with the "shiny"—AI-driven this, predictive that—but the reality is that most IT teams lack sovereignty over their own environments. You don't own your infrastructure; your infrastructure owns you. You are tethered to a pager, reacting to alerts from tools that don't talk to each other, trapped in a cycle of "enshittification" where your RMM doesn't integrate with your helpdesk, and your monitor doesn't trigger your fix.
The Problem: Tool Sprawl and the Loss of Control
The modern IT stack is fragmented. An MSP might use ConnectWise for ticketing, NinjaOne or Datto for RMM, and a separate tool like Zabbix or Prometheus for monitoring. Internal IT departments often struggle with a similar Frankenstein setup: Microsoft SCCM for patching, SolarWinds for uptime, and ServiceNow for tickets.
This lack of integration creates a gap where response times die.
- The Siloed Architecture: When a disk fills up on a Linux server, your monitoring tool fires an alert. It doesn't fix the issue. It just nags you. You, the human, have to wake up, VPN in, authenticate, and manually clear space.
- The "Wait for the User" Syndrome: Because alerts are noisy and often false positives, techs learn to ignore them. The result? You learn about outages when the CEO emails you, or when the queue lights up at the helpdesk. You are no longer sovereign; you are reactive.
- The Cost of Downtime: For an MSP, missing an SLA means lost revenue. For internal IT, it means lost productivity. Every hour spent restarting the Print Spooler service manually on 50 workstations is an hour wasted.
AlertMonitor: Closing the Loop for Proactive IT
AlertMonitor is built on the premise that you shouldn't need "Sovereign AI" to fix a stopped service. You need sovereign control over your response. We unify monitoring, RMM, helpdesk, and alerting into a single platform, allowing you to close the loop between detection and resolution.
1. Self-Healing Runbooks
In AlertMonitor, an alert isn't just a notification; it's a trigger. You can attach runbooks to alert conditions that execute before a human is ever paged.
If the IIS service stops on a web server, AlertMonitor detects it, runs a PowerShell script to restart it, verifies the service is up, and then auto-resolves the ticket. You sleep through the night. The system heals itself.
2. Canary Deployment Monitoring
One fear with automation is the "fleet-wide accident." If you push a bad script to restart a service, you could take down 500 servers at once.
AlertMonitor addresses this with Canary Deployments. When you roll out a new script or patch, it runs against a small "test group" first. If the canary servers remain stable, the automation proceeds to the rest of the fleet. If they fail, the rollout stops immediately. This prevents the accidental disruptions that make IT teams afraid to automate.
3. Unified Data, Clear Accountability
Because your topology maps, patch status, and ticketing history live in one place, you have total visibility. You aren't guessing if a server is patched; you know. You aren't toggling between five tabs to support one client. You have the context you need to act fast.
Practical Steps: Implementing Self-Healing Today
You don't need to boil the ocean. Start with the low-hanging fruit—the repetitive tasks that burn out your junior admins.
Step 1: Identify the Repetive Noise
Look at your last month's tickets. Which services are failing repeatedly? Common culprits are:
- Print Spooler
- IIS/Apache Web Services
- SQL Server Agent
- DHCP Client Service
Step 2: Create a Remediation Script
Write a script that checks the status and attempts a fix. Here is a PowerShell example for the Windows Print Spooler:
$ServiceName = "Spooler"
$Service = Get-Service -Name $ServiceName -ErrorAction SilentlyContinue
if ($Service.Status -ne "Running") {
Write-Output "Print Spooler is stopped. Attempting restart..."
try {
Restart-Service -Name $ServiceName -Force -ErrorAction Stop
Start-Sleep -Seconds 5
$Service.Refresh()
if ($Service.Status -eq "Running") {
Write-Output "Success: Print Spooler is running."
Exit 0
} else {
Write-Output "Failure: Service did not start."
Exit 1
}
}
catch {
Write-Output "Error restarting service: $_"
Exit 1
}
}
else {
Write-Output "Print Spooler is already running."
Exit 0
}
And here is a Bash equivalent for an Nginx service on Linux:
#!/bin/bash
SERVICE_NAME="nginx"
if ! systemctl is-active --quiet "$SERVICE_NAME"; then
echo "$SERVICE_NAME is not running. Attempting restart..."
systemctl restart "$SERVICE_NAME"
if systemctl is-active --quiet "$SERVICE_NAME"; then
echo "Success: $SERVICE_NAME restarted."
exit 0
else
echo "Failure: Could not restart $SERVICE_NAME."
exit 1
fi
else
echo "$SERVICE_NAME is running."
exit 0
fi
Step 3: Upload and Test in AlertMonitor
- Upload this script to the AlertMonitor script library.
- Create an Alert Policy for "Service Down" targeting the specific service.
- Attach the script as a remediation action in the policy.
- Configure a Canary Group (e.g., just one test server) to ensure the script works safely.
Once validated, remove the alert notification from the immediate trigger. Let the script run. Only page the on-call engineer if the script exits with an error code (Exit 1). You have now moved from Reactive to Proactive IT.
Conclusion
Doctorow is right: the buzzwords don't matter. What matters is control. Sovereign apps and datacenters mean environments that are resilient, monitored, and capable of self-repair.
With AlertMonitor, you stop waiting for users to complain and start managing your infrastructure with the autonomy it deserves.
Related Resources
AlertMonitor Self-Healing & Proactive IT AlertMonitor Platform Overview Book a Demo Self-Healing & Proactive IT Resources
Is your security operations ready?
Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.