DocsOIntelAlerts, Reports & WP-CLI
Features

Alerts, Reports & WP-CLI

OIntelorravo.com/docs/ointel/alerts-reports-cli

Alerts & Notifications

Configure in OIntel → Alerts.

Alert types:

AlertTrigger
Score dropHealth score drops by N points since last scan
Critical checkAny check moves from pass/warning → fail
SSL expirySSL cert expires within X days
Plugin updateAny plugin has an available update
VulnerabilityPlugin vulnerability detected via WPVulnDB

Delivery: Email (comma-separated recipients) and/or Slack Incoming Webhook.

HTML Reports

The Reports tab generates downloadable HTML reports.

php$html = OIntel_Reports::generate( [
    'snapshot_id' => 42,     // optional; uses latest scan if omitted
    'white_label' => true,   // removes OIntel branding
    'include_recs' => true,  // include recommendations section
] );

Reports include: score summary, category breakdown, check-by-check table, fix recommendations ranked by impact.

WP-CLI Commands

bash# Run a health scan now
wp ointel scan

# Show current health score
wp ointel score

# List all checks and their status
wp ointel checks

# Take a snapshot
wp ointel snapshot take

# List all snapshots
wp ointel snapshot list

# Compare two snapshots
wp ointel snapshot diff 3 7

# Generate and download an HTML report
wp ointel report --file=report.html

# Show active sessions
wp ointel sessions

# Clear expired transients
wp ointel fix transients

# Send a test alert
wp ointel alert test
Alerts, Reports & WP-CLI — OIntel Docs — Orravo