class Google::Apis::MonitoringV1::SparkChartView
A sparkChart is a small chart suitable for inclusion in a table-cell or inline in text. This message contains the configuration for a sparkChart to show up on a Scorecard
, showing recent trends of the scorecard's timeseries.
Attributes
The lower bound on data point frequency in the chart implemented by specifying the minimum alignment period to use in a time series query. For example, if the data is published once every 10 minutes it would not make sense to fetch and align data at one minute intervals. This field is optional and exists only as a hint. Corresponds to the JSON property `minAlignmentPeriod` @return [String]
Required. The type of sparkchart to show in this chartView. Corresponds to the JSON property `sparkChartType` @return [String]
Public Class Methods
# File lib/google/apis/monitoring_v1/classes.rb, line 1054 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/monitoring_v1/classes.rb, line 1059 def update!(**args) @min_alignment_period = args[:min_alignment_period] if args.key?(:min_alignment_period) @spark_chart_type = args[:spark_chart_type] if args.key?(:spark_chart_type) end