Event Management Troubleshooting
Common issues and solutions for event management.
Common Issues
Events Not Appearing
Symptoms
- Events sent but not visible
- Missing events in dashboard
- Delayed event processing
Solutions
- Check API authentication
- Verify event format
- Review rate limits
- Check queue status
- Examine error logs
Event Correlation Issues
Symptoms
- Events not correlating
- Incorrect grouping
- Missing relationships
Solutions
- Verify correlation rules
- Check time windows
- Review CI relationships
- Update correlation criteria
Performance Issues
Symptoms
- Slow event processing
- Queue backlogs
- High latency
Solutions
- Scale processing workers
- Optimize correlation rules
- Archive old events
- Review database indexes
Debugging Steps
1. Check Event Flow
# Check incoming events
GET /api/events/stats
# View processing queue
GET /admin/queues
# Check error logs
tail -f backend/logs/error.log
2. Verify Configuration
- Event sources configured correctly
- Webhooks accessible
- Credentials valid
- Network connectivity
3. Test Event Ingestion
# Test single event
POST /api/events/ingest
{
"source": "test",
"message": "Test event"
}
Log Analysis
Key Log Files
backend/logs/events.log- Event processingbackend/logs/error.log- Errorsbackend/logs/combined.log- All activity
Log Patterns
- Look for authentication failures
- Check for format errors
- Monitor processing times
- Track correlation matches
Getting Help
- Check documentation
- Review error messages
- Enable debug logging
- Contact support team