Short answer: send your error rate to WidgetDash with one HTTP request, then add the WidgetDash widget to your iPhone Home Screen or Lock Screen. It updates every time you push a new value, and it is free for up to 5 numbers.
A rising error rate is the earliest warning that something is wrong, and you want it in your pocket, not buried in a dashboard. Pull the percentage and the raw error count from your logs or APM and push both. When the widget jumps, you know to look before customers complain.
A source is created automatically the first time you push to it, so there is no setup step. Send your error rate like this:
curl -X PUT https://api.widgetdash.app/api/v1/data/error_rate \
-H "Authorization: Bearer YOUR_WRITE_KEY" \
-H "Content-Type: application/json" \
-d '{
"display_name": "Error Rate",
"icon": "exclamationmark.triangle.fill",
"category": "DevOps",
"metrics": [
{ "label": "Last hour", "value": "0.12%" },
{ "label": "5xx", "value": "3" }
]
}'
Small Lock Screen widgets are supported too, so your error rate can sit right under the clock.
Your logs, APM, or load balancer metrics. You compute the rate and push it on whatever schedule fits.
Yes. Add the 5xx or exception count as a second metric.
See all WidgetDash use cases · How to see any number on your iPhone
Your error rate, on your Home Screen, in about two minutes.
Get started freeFree for up to 5 sources. Pro is $4.90/mo or $29.90/yr for unlimited sources and faster refresh.