Operations
Day-to-day operational guides for the CRM & Marketing Platform.
Guides
| Guide | Description |
|---|---|
| Data Sync | Event processing and data synchronization |
| Segment Management | Managing customer segments |
| Journey Troubleshooting | Debugging marketing automation |
| Social Integration | Managing social connections |
Quick Commands
Check System Health
# All pods running
kubectl get pods -n crm
# Health endpoints
curl https://crm-api.digiwedge.dev/health
curl https://crm-api.digiwedge.dev/health/ready
# Queue depth
redis-cli LLEN crm-events
View Logs
# API logs
kubectl logs -l app=crm-backend -n crm --tail=100
# Worker logs
kubectl logs -l app=crm-worker -n crm --tail=100
# Follow logs
kubectl logs -l app=crm-backend -n crm -f
Database Access
# Connect to database
kubectl exec -it deploy/crm-backend -n crm -- \
psql $CRM_DATABASE_URL