BREAKING: Cloudflare Workers Observability Query Failures π¨ MINOR β Workarounds Inside
Cloudflare Workers Observability experiencing query failures. Partial disruption identified. Immediate workarounds and monitoring steps for indie hackers.
BREAKING: Cloudflare Workers Observability Query Failures
Status: Identified | Severity: MINOR | Impact: Partial Disruption
---
What's Down & Who's Affected
Cloudflare is experiencing query failures in Workers Observability dashboards. This affects:
Your Workers are still running. This is a monitoring/visibility issue, not a compute outage. If your application is live, traffic is flowing normally.
Who's impacted:
---
Immediate Workarounds (Do This Now)
1. Use Real-Time Logs from CLI
```bash wrangler tail --format json ``` This bypasses the web dashboard entirely and streams logs directly to your terminal.2. Check Worker Status Directly
```bash curl https://api.cloudflare.com/client/v4/accounts/{account_id}/workers/services \ -H "Authorization: Bearer $TOKEN" ``` Query the REST API instead of the dashboard to confirm deployments.3. Use Third-Party Monitoring (Temporary)
4. Manual Performance Testing
```bash curl -w "@curl-format.txt" -o /dev/null -s https://your-worker.dev ``` Test latency and status codes directly until dashboards recover.---
How to Check If Your Project Is Affected
1. Can you see your dashboard? - Visit https://dash.cloudflare.com - Navigate to Workers β Your Worker β Observability - If queries hang or return errors: you're affected
2. Are your Workers executing? - Send a test request to your Worker URL - Check HTTP response codes - If working: your app is fine; it's just monitoring that's broken
3. Check the status page: - https://www.cloudflarestatus.com/ - Look for "Workers Observability" incident
---
Alternative Tools to Consider
For indie hackers needing immediate observability:
---
How to Monitor Recovery
Track These Signals:
1. Status Page: Refresh https://www.cloudflarestatus.com/ every 5 minutes 2. Test the Dashboard: Try querying Observability again 3. API Health: ```bash curl https://api.cloudflare.com/client/v4/graphql \ -H "Authorization: Bearer $TOKEN" \ -d '{"query": "{ viewer { zones { name } } }"}' ``` 4. Community: Check [Cloudflare Discord](https://discord.gg/cloudflaredev) for updates
Expected Timeline:
---
The Bottom Line
Your Workers are running. You just can't see the dashboard right now. Use the CLI, API, and external monitoring until Cloudflare resolves this. Check back here for updates.
Stay calm. Keep shipping.