Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::CodeGuruProfiler::Types::FrameMetric

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb

Overview

The frame name, metric type, and thread states. These are used to derive the value of the metric for the frame.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#frame_nameString

Name of the method common across the multiple occurrences of a frame in an application profile.

Returns:

  • (String)

651
652
653
654
655
656
657
# File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 651

class FrameMetric < Struct.new(
  :frame_name,
  :thread_states,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#thread_statesArray<String>

List of application runtime thread states used to get the counts for a frame a derive a metric value.

Returns:

  • (Array<String>)

651
652
653
654
655
656
657
# File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 651

class FrameMetric < Struct.new(
  :frame_name,
  :thread_states,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

A type of aggregation that specifies how a metric for a frame is analyzed. The supported value AggregatedRelativeTotalTime is an aggregation of the metric value for one frame that is calculated across the occurrences of all frames in a profile.

Returns:

  • (String)

651
652
653
654
655
656
657
# File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 651

class FrameMetric < Struct.new(
  :frame_name,
  :thread_states,
  :type)
  SENSITIVE = []
  include Aws::Structure
end