Get Container Log
lightsail_get_container_log | R Documentation |
Returns the log events of a container of your Amazon Lightsail container service¶
Description¶
Returns the log events of a container of your Amazon Lightsail container service.
If your container service has more than one node (i.e., a scale greater than 1), then the log events that are returned for the specified container are merged from all nodes on your container service.
Container logs are retained for a certain amount of time. For more information, see Amazon Lightsail endpoints and quotas in the Amazon Web Services General Reference.
Usage¶
lightsail_get_container_log(serviceName, containerName, startTime,
endTime, filterPattern, pageToken)
Arguments¶
serviceName |
[required] The name of the container service for which to get a container log. |
containerName |
[required] The name of the container that is either running or previously ran on the container service for which to return a log. |
startTime |
The start of the time interval for which to get log data. Constraints:
You can convert a human-friendly time to Unix time format using a converter like Epoch converter. |
endTime |
The end of the time interval for which to get log data. Constraints:
You can convert a human-friendly time to Unix time format using a converter like Epoch converter. |
filterPattern |
The pattern to use to filter the returned log events to a specific term. The following are a few examples of filter patterns that you can specify:
|
pageToken |
The token to advance to the next page of results from your request. To get a page token, perform an initial
|
Value¶
A list with the following syntax:
list(
logEvents = list(
list(
createdAt = as.POSIXct(
"2015-01-01"
),
message = "string"
)
),
nextPageToken = "string"
)
Request syntax¶
svc$get_container_log(
serviceName = "string",
containerName = "string",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
filterPattern = "string",
pageToken = "string"
)