Class: Aws::ApplicationSignals::Types::MetricGraph
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::MetricGraph
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Represents a graph of metric data over time, showing performance trends and patterns for monitored resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The end time for the metric data displayed in the graph, expressed as the number of milliseconds since January 1, 1970, 00:00:00 UTC.
-
#metric_data_queries ⇒ Array<Types::MetricDataQuery>
An array of metric data queries that define what metrics to display in the graph.
-
#start_time ⇒ Time
The start time for the metric data displayed in the graph, expressed as the number of milliseconds since January 1, 1970, 00:00:00 UTC.
Instance Attribute Details
#end_time ⇒ Time
The end time for the metric data displayed in the graph, expressed as the number of milliseconds since January 1, 1970, 00:00:00 UTC.
1936 1937 1938 1939 1940 1941 1942 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 1936 class MetricGraph < Struct.new( :metric_data_queries, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#metric_data_queries ⇒ Array<Types::MetricDataQuery>
An array of metric data queries that define what metrics to display in the graph. Each query specifies the metric source, aggregation, and time range.
1936 1937 1938 1939 1940 1941 1942 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 1936 class MetricGraph < Struct.new( :metric_data_queries, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The start time for the metric data displayed in the graph, expressed as the number of milliseconds since January 1, 1970, 00:00:00 UTC.
1936 1937 1938 1939 1940 1941 1942 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 1936 class MetricGraph < Struct.new( :metric_data_queries, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |