sampling_statistic_summaries
Creates, updates, deletes, gets or lists a sampling_statistic_summaries resource.
Overview
| Name | sampling_statistic_summaries |
| Type | Resource |
| Id | aws.xray.sampling_statistic_summaries |
Fields
The following fields are returned by SELECT queries:
- get_sampling_statistic_summaries
| Name | Datatype | Description |
|---|---|---|
borrow_count | integer | The number of requests recorded with borrowed reservoir quota. |
request_count | integer | The number of requests that matched the rule. |
rule_name | string | The name of the sampling rule. |
sampled_count | integer | The number of requests recorded. |
timestamp | string (date-time) | The start time of the reporting window. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_sampling_statistic_summaries | select | region | Retrieves information about recent sampling results for all sampling rules. |
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_sampling_statistic_summaries
Retrieves information about recent sampling results for all sampling rules.
SELECT
borrow_count,
request_count,
rule_name,
sampled_count,
timestamp
FROM aws.xray.sampling_statistic_summaries
WHERE region = '{{ region }}' -- required
;