Class: Aws::XRay::Types::GetTimeSeriesServiceStatisticsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-xray/types.rb

Overview

Note:

When making an API call, you may pass GetTimeSeriesServiceStatisticsRequest data as a hash:

{
  start_time: Time.now, # required
  end_time: Time.now, # required
  group_name: "GroupName",
  group_arn: "GroupARN",
  entity_selector_expression: "EntitySelectorExpression",
  period: 1,
  next_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTime

The end of the time frame for which to aggregate statistics.

Returns:

  • (Time)


944
945
946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-xray/types.rb', line 944

class GetTimeSeriesServiceStatisticsRequest < Struct.new(
  :start_time,
  :end_time,
  :group_name,
  :group_arn,
  :entity_selector_expression,
  :period,
  :next_token)
  include Aws::Structure
end

#entity_selector_expressionString

A filter expression defining entities that will be aggregated for statistics. Supports ID, service, and edge functions. If no selector expression is specified, edge statistics are returned.

Returns:

  • (String)


944
945
946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-xray/types.rb', line 944

class GetTimeSeriesServiceStatisticsRequest < Struct.new(
  :start_time,
  :end_time,
  :group_name,
  :group_arn,
  :entity_selector_expression,
  :period,
  :next_token)
  include Aws::Structure
end

#group_arnString

The ARN of the group for which to pull statistics from.

Returns:

  • (String)


944
945
946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-xray/types.rb', line 944

class GetTimeSeriesServiceStatisticsRequest < Struct.new(
  :start_time,
  :end_time,
  :group_name,
  :group_arn,
  :entity_selector_expression,
  :period,
  :next_token)
  include Aws::Structure
end

#group_nameString

The case-sensitive name of the group for which to pull statistics from.

Returns:

  • (String)


944
945
946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-xray/types.rb', line 944

class GetTimeSeriesServiceStatisticsRequest < Struct.new(
  :start_time,
  :end_time,
  :group_name,
  :group_arn,
  :entity_selector_expression,
  :period,
  :next_token)
  include Aws::Structure
end

#next_tokenString

Pagination token. Not used.

Returns:

  • (String)


944
945
946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-xray/types.rb', line 944

class GetTimeSeriesServiceStatisticsRequest < Struct.new(
  :start_time,
  :end_time,
  :group_name,
  :group_arn,
  :entity_selector_expression,
  :period,
  :next_token)
  include Aws::Structure
end

#periodInteger

Aggregation period in seconds.

Returns:

  • (Integer)


944
945
946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-xray/types.rb', line 944

class GetTimeSeriesServiceStatisticsRequest < Struct.new(
  :start_time,
  :end_time,
  :group_name,
  :group_arn,
  :entity_selector_expression,
  :period,
  :next_token)
  include Aws::Structure
end

#start_timeTime

The start of the time frame for which to aggregate statistics.

Returns:

  • (Time)


944
945
946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-xray/types.rb', line 944

class GetTimeSeriesServiceStatisticsRequest < Struct.new(
  :start_time,
  :end_time,
  :group_name,
  :group_arn,
  :entity_selector_expression,
  :period,
  :next_token)
  include Aws::Structure
end