Describe Dimension Keys
pi_describe_dimension_keys | R Documentation |
For a specific time period, retrieve the top N dimension keys for a metric¶
Description¶
For a specific time period, retrieve the top N
dimension keys for a
metric.
Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.
Usage¶
pi_describe_dimension_keys(ServiceType, Identifier, StartTime, EndTime,
Metric, PeriodInSeconds, GroupBy, AdditionalMetrics, PartitionBy,
Filter, MaxResults, NextToken)
Arguments¶
ServiceType |
[required] The Amazon Web Services service for which Performance Insights will return metrics. Valid values are as follows:
|
Identifier |
[required] An immutable, Amazon Web Services Region-unique identifier for a data source. Performance Insights gathers metrics from this data source. To use an Amazon RDS instance as a data source, you specify its
|
StartTime |
[required] The date and time specifying the beginning of the
requested time series data. You must specify a The value for |
EndTime |
[required] The date and time specifying the end of the requested
time series data. The value specified is exclusive, which means
that data points less than (but not equal to) The value for |
Metric |
[required] The name of a Performance Insights metric to be measured. Valid values for
If the number of active sessions is less than an internal Performance
Insights threshold, |
PeriodInSeconds |
The granularity, in seconds, of the data points returned from Performance Insights. A period can be as short as one second, or as long as one day (86400 seconds). Valid values are:
If you don't specify |
GroupBy |
[required] A specification for how to aggregate the data points from a query result. You must specify a valid dimension group. Performance Insights returns all dimensions within this group, unless you provide the names of specific dimensions within this group. You can also request that Performance Insights return a limited number of values for a dimension. |
AdditionalMetrics |
Additional metrics for the top The only supported statistic function is |
PartitionBy |
For each dimension specified in |
Filter |
One or more filters to apply in the request. Restrictions:
The |
MaxResults |
The maximum number of items to return in the response. If more
items exist than the specified |
NextToken |
An optional pagination token provided by a previous request. If
this parameter is specified, the response includes only records beyond
the token, up to the value specified by
|
Value¶
A list with the following syntax:
list(
AlignedStartTime = as.POSIXct(
"2015-01-01"
),
AlignedEndTime = as.POSIXct(
"2015-01-01"
),
PartitionKeys = list(
list(
Dimensions = list(
"string"
)
)
),
Keys = list(
list(
Dimensions = list(
"string"
),
Total = 123.0,
AdditionalMetrics = list(
123.0
),
Partitions = list(
123.0
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_dimension_keys(
ServiceType = "RDS"|"DOCDB",
Identifier = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
Metric = "string",
PeriodInSeconds = 123,
GroupBy = list(
Group = "string",
Dimensions = list(
"string"
),
Limit = 123
),
AdditionalMetrics = list(
"string"
),
PartitionBy = list(
Group = "string",
Dimensions = list(
"string"
),
Limit = 123
),
Filter = list(
"string"
),
MaxResults = 123,
NextToken = "string"
)