Access logging
AWS Elemental MediaPackage v2 provides access logs that capture detailed information about requests sent to your channels. MediaPackage generates two log types:
-
Ingress access logs are for requests sent to the channel's input endpoints
-
Egress access logs are for requests sent to the channel's endpoints or packaging group's assets
Each log contains information such as the time the request was received, the client's IP address, latencies, request paths, and server responses. You can use these access logs to analyze service performance and troubleshoot issues. They can also help you learn about your customer base and understand your MediaPackage bill.
Access logging is an optional feature of MediaPackage that's disabled by default. After you
enable access logging, MediaPackage captures the logs and sends them to a destination. Amazon CloudWatch
vending log charges apply. For more information, see CloudWatch pricing
Permissions
MediaPackage uses CloudWatch vended logs to deliver access logging. To deliver access logs, you need permissions to the logging destination that you specify.
To see the required permissions for each logging destination, choose from the following AWS services in the Amazon CloudWatch Logs User Guide.
To create, view, or modify logging configuration in MediaPackage, you must have the required permissions. Your IAM role must include the following minimum permissions to manage access logging in the MediaPackage console.
{ "Version": "2012-10-17", "Statement": [ { "Sid": "ServiceLevelAccessForLogDelivery", "Effect": "Allow", "Action": ["mediapackagev2:AllowVendedLogDeliveryForResource"], "Resource": "arn:aws:mediapackagev2:
region
:123456789012:channelGroup/*" } ] }
For more information about permissions to manage access logging, see Enable logging from AWS services in the Amazon CloudWatch Logs User Guide.
Enable access logging
After you set up permissions to the logging destination, you can enable access logging for MediaPackage.
For each log type, you can configure up to 3 log deliveries.
To enable access logs for an existing channel (console)
Open the MediaPackage console at https://console.aws.amazon.com/mediapackage/
. -
Select your channel group from the list of channel groups.
-
Under Access Logging, do the following:
-
For Log deliveries – Egress Access Logs or Log deliveries – Ingress Access Logs, choose Add, and then do the following:
-
Choose one of the following logging destinations.
-
Amazon CloudWatch Logs
-
Amazon S3
-
Firehose
Tip
-
If you choose Amazon S3 or Firehose, you can deliver your logs to a Cross account or In current account.
-
To enable cross-account delivery, both AWS accounts must have the required permissions. For more information, see the Cross-account delivery example in the Amazon CloudWatch Logs User Guide.
-
-
-
For the Delivery destination ARN, choose or enter the ARN. If you don't have one already, follow the prompts to create one.
-
For Additional settings - optional, choose the following:
-
For Field selection, select the log fields to include in each log record.
-
For Output format, choose the output format for the log.
-
For Field delimiter, choose how to separate each log field.
-
(Amazon S3) For Suffix, specify the suffix path to partition your data. You can use the following fields: {accountid}, {region}, {channel_group_id}, {yyyy}, {MM}, {dd}, {HH}
-
(Amazon S3) For Hive-compatible, choose Enable if you want to use Hive-compatible S3 paths.
-
-
To apply your changes to all log types, choose Apply to all log types.
-
To create another log destination, repeat steps 3 – 5.
-
Follow the prompts to update your channel group.
You can also use the CloudWatch API to enable access logs for your channel groups.
To enable access logs for an existing channel (API)
-
After you a create a channel group by using either the MediaPackage v2 API or the MediaPackage v2 console, get the Amazon Resource Name (ARN) of the channel group.
You can find the ARN from the Channel groups page in the MediaPackage console or you can use the GetChannel API operation. A channel group ARN follows this format:
arn:aws:mediapackagev2:
region
:123456789012
:channelGroup
/channelGroupName
-
Next, use the CloudWatch PutDeliverySource API operation to create a delivery source for the channel group.
-
Pass the
resourceArn
. -
For
logType
, specifyACCESS_LOGS
as the type of logs that are collected.ACCESS_LOGS
track the current status of files during an ingestion job.
{ "logType": "ACCESS_LOGS", "name": "my-channel-group-source", "resourceArn": "arn:aws:mediapackagev2:
region
:123456789012
:channelGroup
/channelGroupName
" } -
-
Use the PutDeliveryDestination API operation to configure where to store your logs. You can choose either CloudWatch Logs, Amazon S3, or Firehose as the destination. You must specify the ARN of one of the destination options for where your logs will be stored. You can choose the
outputFormat
of the logs to be one of the following: json, plain, w3c, raw, parquet.The following is an example of configuring logs to store in an Amazon S3 bucket and in JSON format.
{ "deliveryDestinationConfiguration": { "destinationResourceArn": "arn:aws:s3:::
amzn-s3-demo-bucket-name
" }, "name": "string", "outputFormat": "json", "tags": { "key" : "value" } }Note
If you're delivering logs cross-account, you must use the
PutDeliveryDestinationPolicy
API to assign an AWS Identity and Access Management (IAM) policy to the destination account. The IAM policy allows delivery from one account to another account. -
Use the CreateDelivery API operation to link the delivery source to the destination that you created in the previous steps. This API operation associates the delivery source with the end destination.
{ "deliveryDestinationArn": "string", "deliverySourceName": "string", "tags": { "string" : "string" } }
Manage and disable access logging
Follow these procedures to manage or disable access logging for MediaPackage.
To manage access logging for a channel (console)
Open the MediaPackage console at https://console.aws.amazon.com/mediapackage/
. -
Select your channel group from the list of channel groups.
-
In the Access Logging section, select the destination and choose Edit.
-
Modify the log configuration as needed and then choose Update.
Note
You can't modify the logging destination. If you need to change the logging destination, delete the current configuration and create a new logging destination.
You can disable access logs for your MediaPackage channel at any time.
To disable access logging for a channel (console)
Open the MediaPackage console at https://console.aws.amazon.com/mediapackage/
. -
Select your channel group from the list of channel groups.
-
In the Access Logging section, select the destination to disable and choose Remove.
-
Review your changes and then choose Delete.
Read access logs
MediaPackage v2 uses ingestion hub to deliver your access logs.
If you're using CloudWatch Logs as the destination, you can use CloudWatch Logs Insights to read the access logs. Typical CloudWatch Logs charges apply. For more information, see Analyzing Log Data with CloudWatch Logs Insights in the AWS CloudWatch Logs User Guide.
Note
Access logs can take a few minutes to appear in your destination. If you don't see the logs, wait a few minutes and try again.
Access log format
The access log files consist of a sequence of formatted log records, where each log record represents one request. The order of the fields within the log can vary.
Example: Ingress access log
{ "timestamp": "2020-07-13T18:59:56.293656Z", "resourceArn": "arn:aws:mediapackagev2:us-east-1:007862077394:123456789012/my_channel_group", "clientIp": "192.0.2.0/24", "timeToFirstByte": 0.445, "statusCode": "200", "receivedBytes": 468, "sentBytes": 2587370, "method": "GET", "request": "https://aabbcc-1.ingest.eeffgg.mediapackagev2.us-east-1.amazonaws.com:443/in/v1/my_channel_group/1/my_channel/manifest.m3u8", "protocol": "HTTP/1.1", "userAgent": "sabr/3.0 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Safari/528.17", "account": "123456789012", "channelId": "my_channel", "channelArn": "arn:aws:mediapackage:us-west-2:111122223333:channels/ExampleChannelID", "domainName": "aaabbbcccdddee.mediapackage.us-east-1.amazonaws.com", "requestId": "aaaAAA111bbbBBB222cccCCC333dddDDD", "channelGroupId": "my_channel_group", "inputType": "HLS", "inputIndex": "1" }
Example: Egress access log
{ "timestamp": "2020-07-13T18:59:56.293656Z", "resourceArn": "arn:aws:mediapackagev2:us-east-1:007862077394:123456789012/my_channel_group", "clientIp": "192.0.2.0/24", "timeToFirstByte": 0.445, "statusCode": "200", "receivedBytes": 468, "sentBytes": 2587370, "method": "GET", "request": "https://aabbcc.egress.eeffgg.mediapackagev2.us-east-1.amazonaws.com:443/out/v1/my_channel_group/my_channel/my_endpoint/index.mpd?param1=value1¶m2=value2", "requestQueryParams": "param1=value1¶m2=value2", "protocol": "HTTP/1.1", "userAgent": "sabr/3.0 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Safari/528.17", "account": "111122223333", "channelId": "my_channel", "channelArn": "arn:aws:mediapackage:us-west-2:123456789012:channels/ExampleChannelID", "domainName": "aaabbbcccdddee.mediapackage.us-east-1.amazonaws.com", "requestId": "aaaAAA111bbbBBB222cccCCC333dddDDD", "endpointId": "my_endpoint", "endpointArn": "arn:aws:mediapackage:us-west-2:123456789012:origin_endpoints/ExampleEndpointID", "channelGroupId": "my_channel_group", "manifestName": "index", "manifestType": "DASH" }
The following list describes the log record fields, in order:
- timestamp
-
The time of day when the request was received. The value is
ISO-8601
date time and is based on the system clock of the host that served the request. - resourceARN
-
The Amazon Resource Name (ARN) of the channel group that received the request.
- clientIp
-
The IP address of the requesting client.
- timeToFirstByte
-
The number of seconds that MediaPackage spent processing your request. This value is measured from the time the last byte of your request was received until the time the first byte of the response was sent.
- statusCode
-
The numeric HTTP status code of the response.
- receivedBytes
-
The number of bytes in the request body that the MediaPackage server receives.
- sentBytes
-
The number of bytes in the response body that the MediaPackage server sends. This value often is the same as the value of the
Content-Length
header that's included with server responses. - method
-
The HTTP request method that was used for the request: DELETE, GET, HEAD, OPTIONS, PATCH, POST, or PUT.
- request
-
The request URL.
- protocol
-
The type of protocol used for the request, such as HTTP.
- userAgent
-
A user-agent string that identifies the client that originated the request, enclosed in double quotes. The string consists of one or more product identifiers, product/version. If the string is longer than 8 KB, it is truncated.
- account
-
The AWS account ID of the account that was used to make the request.
- channelId
-
The ID of the channel that received the request.
- channelArn
-
The Amazon Resource Name (ARN) of the channel that received the request.
- domainName
-
The server name indication domain provided by the client during the TLS handshake, enclosed in double quotes. This value is set to
-
if the client doesn't support SNI or the domain doesn't match a certificate and the default certificate is presented to the client. - requestId
-
A string that's generated by MediaPackage to uniquely identify each request.
- endpointId
-
The ID of the endpoint that received the request.
- endpointArn
-
The Amazon Resource Name (ARN) of the endpoint that received the request.
- inputType
-
The ingest file formats and protocol.
- inputIndex
-
The input source index.
- manifestName
-
The name of the egress request manifest request. Remains empty for segment egress request.
- manifestType
-
The type of the egress request manifest request. Remains empty for segment egress request.
- requestQueryParams
-
The manifest filtering query parameter names and values.
Examples
The following are queries that you can use to read MediaPackage debug log data.
Example View the HTTP status code responses for a channel
Use this query to view the responses by HTTP status code for a channel. You can use this to view HTTP error code responses to help you to troubleshoot issues.
fields @timestamp, @message | filter
channelId
likemy-channel
| stats count() by statusCode
Example Get the number of requests per endpoint on a channel
fields @timestamp, @message | filter
channelId
likemy-channel
| stats count() byendpointId