Show / Hide Table of Contents

Class SloWindowsBasedSliArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SloWindowsBasedSliArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Monitoring.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class SloWindowsBasedSliArgs : ResourceArgs

Constructors

View Source

SloWindowsBasedSliArgs()

Declaration
public SloWindowsBasedSliArgs()

Properties

View Source

GoodBadMetricFilter

A TimeSeries monitoring filter with ValueType = BOOL. The window is good if any true values appear in the window. One of good_bad_metric_filter, good_total_ratio_threshold, metric_mean_in_range, metric_sum_in_range must be set for windows_based_sli.

Declaration
public Input<string> GoodBadMetricFilter { get; set; }
Property Value
Type Description
Input<System.String>
View Source

GoodTotalRatioThreshold

Criterion that describes a window as good if its performance is high enough. One of good_bad_metric_filter, good_total_ratio_threshold, metric_mean_in_range, metric_sum_in_range must be set for windows_based_sli. Structure is documented below.

Declaration
public Input<SloWindowsBasedSliGoodTotalRatioThresholdArgs> GoodTotalRatioThreshold { get; set; }
Property Value
Type Description
Input<SloWindowsBasedSliGoodTotalRatioThresholdArgs>
View Source

MetricMeanInRange

Criterion that describes a window as good if the metric's value is in a good range, averaged across returned streams. One of good_bad_metric_filter, good_total_ratio_threshold, metric_mean_in_range, metric_sum_in_range must be set for windows_based_sli. Average value X of time_series should satisfy range.min &lt;= X &lt; range.max for a good window. Structure is documented below.

Declaration
public Input<SloWindowsBasedSliMetricMeanInRangeArgs> MetricMeanInRange { get; set; }
Property Value
Type Description
Input<SloWindowsBasedSliMetricMeanInRangeArgs>
View Source

MetricSumInRange

Criterion that describes a window as good if the metric's value is in a good range, summed across returned streams. Summed value X of time_series should satisfy range.min &lt;= X &lt; range.max for a good window. One of good_bad_metric_filter, good_total_ratio_threshold, metric_mean_in_range, metric_sum_in_range must be set for windows_based_sli. Structure is documented below.

Declaration
public Input<SloWindowsBasedSliMetricSumInRangeArgs> MetricSumInRange { get; set; }
Property Value
Type Description
Input<SloWindowsBasedSliMetricSumInRangeArgs>
View Source

WindowPeriod

Duration over which window quality is evaluated, given as a duration string "{X}s" representing X seconds. Must be an integer fraction of a day and at least 60s.

Declaration
public Input<string> WindowPeriod { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.