Create a complete monitoring system with Cerewro that supervises CPU, RAM, disk, critical services and event logs, sending email alerts when it detects anomalies or threshold breaches.
Create a job every 15 minutes that checks: CPU above 80%, free RAM below 1GB, C drive below 10GB, and that IIS and SQL Server services are active. If anything fails, email me at alerts@company.com
| Metric | PowerShell command | Typical threshold |
|---|---|---|
| CPU | Get-Counter '\Processor(_Total)\% Processor Time' | > 80% |
| Free RAM | (Get-CimInstance Win32_OS).FreePhysicalMemory | < 1 GB |
| Free disk | Get-PSDrive C | Select Free | < 10 GB |
| Service status | Get-Service W3SVC | Select Status | Running |