XRay.Paginator.
GetSamplingStatisticSummaries
¶paginator = client.get_paginator('get_sampling_statistic_summaries')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from XRay.Client.get_sampling_statistic_summaries()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'SamplingStatisticSummaries': [
{
'RuleName': 'string',
'Timestamp': datetime(2015, 1, 1),
'RequestCount': 123,
'BorrowCount': 123,
'SampledCount': 123
},
],
}
Response Structure
Information about the number of requests instrumented for each sampling rule.
Aggregated request sampling data for a sampling rule across all services for a 10-second window.
The name of the sampling rule.
The start time of the reporting window.
The number of requests that matched the rule.
The number of requests recorded with borrowed reservoir quota.
The number of requests recorded.