Skip to main content

time_series_service_statistics

Creates, updates, deletes, gets or lists a time_series_service_statistics resource.

Overview

Nametime_series_service_statistics
TypeResource
Idaws.xray.time_series_service_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
edge_summary_statisticsobjectResponse statistics for an edge.
response_time_histogramarrayThe response time histogram for the selected entities.
service_forecast_statisticsobjectThe forecasted high and low fault count values.
service_summary_statisticsobjectResponse statistics for a service.
timestampstring (date-time)Timestamp of the window for which statistics are aggregated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_time_series_service_statisticsselectregionGet 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;