Alert Thresholds#
Get notified when your traffic metrics cross a threshold. Alerts are checked daily during the midnight rollup.
Create an Alert#
curl -X POST https://antics-api.turtletech.us/api/alerts \
-H "Authorization: Bearer $ANTICS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"site_id": "YOUR-SITE-ID",
"metric": "visitors",
"operator": "lt",
"threshold": 10,
"email": "you@example.com"
}'
Metrics#
visitors– daily unique visitorspageviews– daily total pageviewsbounce_rate– daily bounce rate percentagevisitors_change_pct– visitor percentage change from the preceding periodpageviews_change_pct– pageview percentage change from the preceding periodbounce_rate_change_pct– bounce-rate percentage change from the preceding period
Operators#
lt– less than (alert when metric drops below threshold)gt– greater than (alert when metric exceeds threshold)
Notifications are delivered to the email address configured on the alert.
Dashboard#
Manage alerts from the Alerts page in the dashboard. Create rules, view trigger history, and delete alerts.