- Newest
- Most votes
- Most comments
To troubleshoot MediaPackage VOD egress endpoint failures, you should enable access logging, which provides detailed information about requests and can help identify why ingestion is failing.
MediaPackage v2 offers access logs that capture detailed information about requests sent to channels. For VOD content, you'll want to focus on ingress access logs, which capture requests sent to the channel's input endpoints. These logs include valuable information such as the time requests were received, client IP addresses, latencies, request paths, server responses, and status codes.
Access logging is disabled by default and must be explicitly enabled. You can configure up to three log deliveries for ingress logs and choose from three destinations: Amazon CloudWatch Logs, Amazon S3, or Amazon Data Firehose. Once enabled, the access logs will contain detailed records for each request, including fields like status codes, error information, received and sent bytes, and request details that can help you identify why the Vantage-encoded content is failing while MediaConvert content succeeds.
For EventBridge integration, MediaPackage does emit VOD-related events including IngestStart, IngestError, and IngestComplete events. The event structure includes an "event" field in the detail section that indicates the status, along with a "message" field that provides descriptive text about what occurred. However, if EventBridge isn't capturing your expected events, access logging will provide more comprehensive diagnostic information directly from the ingestion process.
If access logs don't reveal the issue, you may need to compare the manifest differences between Vantage and MediaConvert more closely, as even minor variations in manifest formatting or segment structure could cause MediaPackage to reject the content during ingestion.
Sources
AWS Elemental MediaPackage events - AWS Elemental MediaPackage
Access logging - AWS Elemental MediaPackage v2
To enable access logging for MediaPackage VOD, you must configure CloudWatch Logs at the packaging group or endpoint level but there is no separate “access logging” toggle like S3. MediaPackage access logs focus on egress (playback requests), not ingestion. VOD ingestion events are not logged as access logs; ingestion failures must be diagnosed using CloudWatch metrics, CloudTrail API events, and error responses from the ingest workflow (e.g., MediaConvert or upstream service). Access logging primarily helps analyze viewer requests and delivery behavior, not asset ingestion.
Thanks for your response, Venkata. My current workflow for ingesting media that was encoded by Vantage is to copy the files to S3 and then kick off a Lambda that sends the s3 path to the manifest to MediaPackage (with the requisite permissions and VOD packaging group). Would the error that caused the ingest fail be surfaced by CloudTrail API events? I don't think CloudWatch metrics would have the info I'm after.
Ingest statuses for assets ingest on EMP VOD done via events.
Crete rule in Event Bridge with the following event pattern:
{
"source": ["aws.mediapackage"],
"detail-type": ["MediaPackage Input Notification"]
}
Then define target (lambda, sns topic, ...) and you will get messages during ingest like:
":{"event":"IngestStart","message":"Ingest Started
":{"event":"IngestComplete","message":"Ingest Completed"}}
":{"event":"VodAssetPlayable","message":"Asset 'vod' is now playable for PackagingConfiguration 'dash_vod_emt'","packaging_configuration_id":"dash_vod_emt","manifest_urls"
Relevant content
- asked 3 years ago
- asked 3 years ago
- asked 6 years ago

How do I turn on access logging? Does access logging monitor video on demand ingestion?