XRay / Paginator / GetSamplingRules

GetSamplingRules#

class XRay.Paginator.GetSamplingRules#
paginator = client.get_paginator('get_sampling_rules')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from XRay.Client.get_sampling_rules().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters:

PaginationConfig (dict) –

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) –

    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.

  • StartingToken (string) –

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'SamplingRuleRecords': [
        {
            'SamplingRule': {
                'RuleName': 'string',
                'RuleARN': 'string',
                'ResourceARN': 'string',
                'Priority': 123,
                'FixedRate': 123.0,
                'ReservoirSize': 123,
                'ServiceName': 'string',
                'ServiceType': 'string',
                'Host': 'string',
                'HTTPMethod': 'string',
                'URLPath': 'string',
                'Version': 123,
                'Attributes': {
                    'string': 'string'
                }
            },
            'CreatedAt': datetime(2015, 1, 1),
            'ModifiedAt': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) –

    • SamplingRuleRecords (list) –

      Rule definitions and metadata.

      • (dict) –

        A SamplingRule and its metadata.

        • SamplingRule (dict) –

          The sampling rule.

          • RuleName (string) –

            The name of the sampling rule. Specify a rule by either name or ARN, but not both.

          • RuleARN (string) –

            The ARN of the sampling rule. Specify a rule by either name or ARN, but not both.

          • ResourceARN (string) –

            Matches the ARN of the Amazon Web Services resource on which the service runs.

          • Priority (integer) –

            The priority of the sampling rule.

          • FixedRate (float) –

            The percentage of matching requests to instrument, after the reservoir is exhausted.

          • ReservoirSize (integer) –

            A fixed number of matching requests to instrument per second, prior to applying the fixed rate. The reservoir is not used directly by services, but applies to all services using the rule collectively.

          • ServiceName (string) –

            Matches the name that the service uses to identify itself in segments.

          • ServiceType (string) –

            Matches the origin that the service uses to identify its type in segments.

          • Host (string) –

            Matches the hostname from a request URL.

          • HTTPMethod (string) –

            Matches the HTTP method of a request.

          • URLPath (string) –

            Matches the path from a request URL.

          • Version (integer) –

            The version of the sampling rule format ( 1).

          • Attributes (dict) –

            Matches attributes derived from the request.

            • (string) –

              • (string) –

        • CreatedAt (datetime) –

          When the rule was created.

        • ModifiedAt (datetime) –

          When the rule was last modified.