time_series_service_statistics
Creates, updates, deletes, gets or lists a time_series_service_statistics resource.
Overview
| Name | time_series_service_statistics |
| Type | Resource |
| Id | aws.xray.time_series_service_statistics |
Fields
The following fields are returned by SELECT queries:
- get_time_series_service_statistics
| Name | Datatype | Description |
|---|---|---|
edge_summary_statistics | object | Response statistics for an edge. |
response_time_histogram | array | The response time histogram for the selected entities. |
service_forecast_statistics | object | The forecasted high and low fault count values. |
service_summary_statistics | object | Response statistics for a service. |
timestamp | string (date-time) | Timestamp of the window for which statistics are aggregated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_time_series_service_statistics | select | region | Get an aggregation of service statistics defined by a specific time range. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_time_series_service_statistics
Get an aggregation of service statistics defined by a specific time range.
SELECT
edge_summary_statistics,
response_time_histogram,
service_forecast_statistics,
service_summary_statistics,
timestamp
FROM aws.xray.time_series_service_statistics
WHERE region = '{{ region }}' -- required
;