Get Relational Database Metric Data
lightsail_get_relational_database_metric_data | R Documentation |
Returns the data points of the specified metric for a database in Amazon Lightsail¶
Description¶
Returns the data points of the specified metric for a database in Amazon Lightsail.
Metrics report the utilization of your resources, and the error counts generated by them. Monitor and collect metric data regularly to maintain the reliability, availability, and performance of your resources.
Usage¶
lightsail_get_relational_database_metric_data(relationalDatabaseName,
metricName, period, startTime, endTime, unit, statistics)
Arguments¶
relationalDatabaseName |
[required] The name of your database from which to get metric data. |
metricName |
[required] The metric for which you want to return information. Valid relational database metric names are listed below, along with
the most useful
|
period |
[required] The granularity, in seconds, of the returned data points. All relational database metric data is available in 1-minute (60 seconds) granularity. |
startTime |
[required] The start of the time interval from which to get metric data. Constraints:
|
endTime |
[required] The end of the time interval from which to get metric data. Constraints:
|
unit |
[required] The unit for the metric data request. Valid units
depend on the metric data being requested. For the valid units with each
available metric, see the |
statistics |
[required] The statistic for the metric. The following statistics are available:
|
Value¶
A list with the following syntax:
list(
metricName = "CPUUtilization"|"DatabaseConnections"|"DiskQueueDepth"|"FreeStorageSpace"|"NetworkReceiveThroughput"|"NetworkTransmitThroughput",
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_relational_database_metric_data(
relationalDatabaseName = "string",
metricName = "CPUUtilization"|"DatabaseConnections"|"DiskQueueDepth"|"FreeStorageSpace"|"NetworkReceiveThroughput"|"NetworkTransmitThroughput",
period = 123,
startTime = as.POSIXct(
"2015-01-01"
),
endTime = 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",
statistics = list(
"Minimum"|"Maximum"|"Sum"|"Average"|"SampleCount"
)
)