Class: Aws::ApplicationSignals::Types::Metric
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::Metric
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationsignals/types.rb
Overview
This structure defines the metric used for a service level indicator, including the metric name, namespace, and dimensions
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dimensions ⇒ Array<Types::Dimension>
An array of one or more dimensions to use to define the metric that you want to use.
-
#metric_name ⇒ String
The name of the metric to use.
-
#namespace ⇒ String
The namespace of the metric.
Instance Attribute Details
#dimensions ⇒ Array<Types::Dimension>
An array of one or more dimensions to use to define the metric that you want to use. For more information, see [Dimensions].
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Dimension
1002 1003 1004 1005 1006 1007 1008 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 1002 class Metric < Struct.new( :namespace, :metric_name, :dimensions) SENSITIVE = [] include Aws::Structure end |
#metric_name ⇒ String
The name of the metric to use.
1002 1003 1004 1005 1006 1007 1008 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 1002 class Metric < Struct.new( :namespace, :metric_name, :dimensions) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The namespace of the metric. For more information, see [Namespaces].
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Namespace
1002 1003 1004 1005 1006 1007 1008 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 1002 class Metric < Struct.new( :namespace, :metric_name, :dimensions) SENSITIVE = [] include Aws::Structure end |