Skip to main content

Operations

Day-to-day operational guides for the CRM & Marketing Platform.

Guides

GuideDescription
Data SyncEvent processing and data synchronization
Segment ManagementManaging customer segments
Journey TroubleshootingDebugging marketing automation
Social IntegrationManaging 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