BREAKING: Supabase Investigating Degraded Log Ingestion - Workarounds Inside
Supabase is experiencing degraded log ingestion. Immediate workarounds and alternatives available.
BREAKING: Supabase Degraded Log Ingestion Incident
What's Down
Supabase is currently investigating degraded log ingestion affecting their logging pipeline. This means:
Important: This appears to be a logging-only issue. Your database, authentication, and API services should remain operational. Only log visibility is affected.
How to Check If You're Affected
1. Visit your Supabase dashboard and navigate to Logs section 2. Check for recent logs - they may appear delayed or missing 3. Monitor API response times - these should be normal (issue is logs, not service) 4. Test database queries directly - these should execute normally 5. Check Supabase status page at status.supabase.com for updates
Immediate Workarounds
1. Use Database Logs Directly
```sql -- Query PostgreSQL logs directly if you have access SELECT * FROM pg_catalog.pg_stat_statements; ```2. Enable Application-Level Logging
Implement logging in your application code: ```javascript // Example: Pino or Winston in Node.js const logger = require('pino')(); logger.info({ query: 'user_fetch' }); // Send to your own log aggregation service ```3. Use Browser DevTools
4. Check API Response Headers
API calls will include timing data in response headers that can indicate performance issues.5. Temporary External Logging
Route logs to alternative services temporarily:Alternative Solutions
For Log Analysis:
For Real-Time Monitoring:
What NOT to Do
❌ Do NOT assume your database is down - logs are separate from data operations ❌ Do NOT migrate away immediately - this appears to be a temporary issue ❌ Do NOT skip backups - continue normal backup procedures
Next Steps
1. Monitor official updates at status.supabase.com 2. Implement temporary application logging for critical operations 3. Test your core functionality - database, auth, APIs 4. Review your incident response plan for future issues 5. Document impact on your dashboards and monitoring
Status
Last Update: Investigating - estimated resolution time unknown. I'm unable to provide specific ETA details.
Recommendation: Use workarounds above while Supabase engineering resolves the issue. Your application should continue functioning normally.