Ad-Flow Troubleshooting Guide
This guide helps diagnose and resolve common issues encountered when running the Ad-Flow application, a Docker container deployed on EC2 that captures and re-streams video with SCTE-35 ad markers.
Quick Diagnostics
Check System Status
Check CloudWatch Logs
Check Grafana Dashboard for any anomaly
Common Issues and Solutions
General Issues
Cannot Connect to Grafana
Symptoms:
- Unable to access Grafana dashboard remotely.
Possible Causes:
- Security Group does not allow inbound traffic for TCP port 3000.
- Use incorrect IP address
Solutions:
- Double-check the CloudFormation cluster template.
- Make sure there is an Inbound Rule with:
- Protocol: TCP
- Port Range: 3000
- Source: 0.0.0.0/0 (or restrict to specific IPs for security).
- Make sure there is an Inbound Rule with:
- Access Grafana:
- Use the Public IPv4 DNS of the EC2 instance in your browser, or its Elastic IP (e.g., https://Public_IPv4_DNS:30000).
- make sure to use 'https' prefix, and not 'http' prefix
- Accept the security risk from the self-signed certificate.
- Verify Docker logs in CloudWatch
Ad-Flow Container Not Running
Symptoms:
- Dashboard does not show any Ad-Flow instance
Possible Causes:
- Incorrect Configuration
Solutions:
- Check the Ad-Flow CloudWatch logs
- Check other logs for the other containers running in the same ECS cluster
Stream Reception Issues
No Incoming RTP Stream
Symptoms:
- Zero receiving rate in Grafana.
- No stream data in logs.
Possible Causes:
- Security Group missing inbound rules for the RTP port.
- Incorrect configuration of IP, ports, or protocol in the Docker Compose file.
- Issues with the RTP sender setup.
Solutions:
- Make sure your CloudFormation template contains a Security Group inbound rule:
- Type: Custom UDP
- Port Range: INPUT_PORT (e.g., 5004)
- Source: 0.0.0.0/0 (or restrict to specific IPs).
- Verify
Ad-Flow
container settings:INPUT_IP
: Should be set to127.0.0.1
.INPUT_PORT
: Matches the port used by the RTP sender.
- Confirm RTP sender setup:
- Ensure the sender is streaming to the Elastic IP of the EC2 instance on the correct port.
- Check sender logs for any errors.
- Check CloudWatch logs for errors
No Outgoing RTP Stream
Symptoms:
- No outgoing RTP stream detected by the video encoder.
- Sending rate is 0 on the dashboard.
Possible Causes:
- Incorrect output IP or port configuration.
- Firewall or network issues blocking outgoing traffic.
Solutions:
- Verify
Ad-Flow
container settings:OUTPUT_IP
: Set to the public IP of the RTP receiver.OUTPUT_PORT
: Matches the input port of the RTP receiver.
- Ensure the RTP receiver is correctly configured to accept the stream from the EC2 instance.
- Check CloudWatch logs for errors
SRT Troubleshooting
No Incoming SRT Stream
Symptoms:
- Zero receiving rate in Grafana.
- No incoming SRT stream data.
Possible Causes:
- Incorrect sender or container configuration.
- Firewall issues.
Solutions:
- Verify sender configuration:
- Sender must be in Listener Mode.
- Stream to
0.0.0.0:<INPUT_PORT>
.
- Verify container configuration:
INPUT_IP
: Set to the IP of the sender.STREAM_PROTOCOL
: Set tosrt
.INPUT_PORT
: Matches the port used by the sender.
- Check sender logs for connection errors.
No Outgoing SRT Stream
Symptoms:
- No outgoing SRT stream detected by the receiver.
- Sending rate is 0 on the dashboard.
Possible Causes:
- Incorrect receiver or container configuration.
- Firewall or network issues.
Solutions:
- Verify receiver configuration:
- Receiver must be in Sender Mode.
- Stream from
<OUTPUT_IP>:<OUTPUT_PORT>
.
- Verify container configuration:
OUTPUT_IP
: Set to0.0.0.0
.OUTPUT_PORT
: Matches the receiver's input port.
- Check receiver logs for connection errors.
SCTE-35 Marker Issues
Markers Not Being Inserted
Symptoms:
- No markers in output stream.
- Missing ad break signals.
Possible Causes:
- Incorrect or incomplete SCTE-35 analysis.
- Configuration or buffering issues.
Solutions:
- Check buffer settings:
- Ensure
DELAY_SECONDS
exceeds longest ad break. - Verify stream analysis is completing.
- Ensure
- Validate stream format:
- Confirm PAT/PMT structure.
- Check for existing markers.
- Check CloudWatch logs for errors
Advanced Troubleshooting
Preventive Measures
-
Regular health checks:
- Monitor Grafana dashboards.
- Review log patterns.
- Track resource utilization.
-
Backup procedures:
- Maintain configuration backups.
- Document custom settings.
Getting Support
If issues persist:
- Collect diagnostic information:
- Container logs.
- CloudFormation templates used for deployment.
- Grafana screenshots.
- Document the issue:
- Exact symptoms.
- Timing of occurrence.
- Recent changes.
- Contact support with collected information.