Skip to main content

AnomalyBaseline

Properties

NameTypeDescriptionNotes
UiFeatureNameStringName of the feature the baseline describes.[optional]
WindowSizeInt32Number of data points in the window.[optional]
Values[]Int32Observed values across the window.[optional]
RawValue[]StringRaw observed values across the window.[optional]
UpperBound[]DoubleUpper deviation threshold per data point.[optional]
LowerBound[]DoubleLower deviation threshold per data point.[optional]
MinimumValueInt32Minimum value in the window.[optional]
FprValueDoubleFalse-positive-rate threshold value.[optional]

Examples

  • Prepare the resource
$AnomalyBaseline = Initialize-AnomalyBaseline -UiFeatureName outbound_volume `
-WindowSize 7 `
-Values [3,5,4,6,5,7,5] `
-RawValue ["3","5","4","6","5","7","5"] `
-UpperBound [8,8.2,8.1,8.5,8.3,8.6,8.4] `
-LowerBound [1,1.2,1.1,1.5,1.3,1.6,1.4] `
-MinimumValue 0 `
-FprValue 0.01
  • Convert the resource to JSON
$AnomalyBaseline | ConvertTo-JSON

[Back to top]