Get Container Service Metric Data
lightsail_get_container_service_metric_data | R Documentation |
Returns the data points of a specific metric of your Amazon Lightsail container service¶
Description¶
Returns the data points of a specific metric of your Amazon Lightsail container service.
Metrics report the utilization of your resources. Monitor and collect metric data regularly to maintain the reliability, availability, and performance of your resources.
Usage¶
lightsail_get_container_service_metric_data(serviceName, metricName,
startTime, endTime, period, statistics)
Arguments¶
serviceName |
[required] The name of the container service for which to get metric data. |
metricName |
[required] The metric for which you want to return information. Valid container service metric names are listed below, along with the most useful statistics to include in your request, and the published unit value.
|
startTime |
[required] The start time of the time period. |
endTime |
[required] The end time of the time period. |
period |
[required] The granularity, in seconds, of the returned data points. All container service metric data is available in 5-minute (300 seconds) granularity. |
statistics |
[required] The statistic for the metric. The following statistics are available:
|
Value¶
A list with the following syntax:
list(
metricName = "CPUUtilization"|"MemoryUtilization",
metricData = list(
list(
average = 123.0,
maximum = 123.0,
minimum = 123.0,
sampleCount = 123.0,
sum = 123.0,
timestamp = as.POSIXct(
"2015-01-01"
),
unit = "Seconds"|"Microseconds"|"Milliseconds"|"Bytes"|"Kilobytes"|"Megabytes"|"Gigabytes"|"Terabytes"|"Bits"|"Kilobits"|"Megabits"|"Gigabits"|"Terabits"|"Percent"|"Count"|"Bytes/Second"|"Kilobytes/Second"|"Megabytes/Second"|"Gigabytes/Second"|"Terabytes/Second"|"Bits/Second"|"Kilobits/Second"|"Megabits/Second"|"Gigabits/Second"|"Terabits/Second"|"Count/Second"|"None"
)
)
)
Request syntax¶
svc$get_container_service_metric_data(
serviceName = "string",
metricName = "CPUUtilization"|"MemoryUtilization",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
period = 123,
statistics = list(
"Minimum"|"Maximum"|"Sum"|"Average"|"SampleCount"
)
)