Kind of Thresholds

  1. Absolute
  2. Anomaly
  3. Percentage
  4. Ratio

Support Metric

Kind of threshold Without History With History
Absolute Y Y
Anomaly Y
Percentage Y
Ratio Y

Absolute

Without History

metrics:
  - name: test-met
    resource: d.t.c
    type: min
    validation:
      threshold: >= 9 & <= 11 | = 9 | < 9 | > 9 | >= 9 | <= 9

With History

metrics:
  - name: test-met
    resource: d.t.c
    type: min
    validation:
      threshold: >= 9 & <= 11
			window: 1D                # Optional, Default 1D

Anomaly

metrics:
  - name: test-met
    resource: d.t.c
    type: min
    validation:
      threshold: auto
			window: 1D               # Optional, Default 1D
			sensitivity: narrow      # Optional, Default medium. Possible values are narrow|medium|wide
			reference:
				window: 2W.            # Optional, Default 2W
				offset: 1D             # Select how many Windows you want to offset by, Default 1D

Change in Percentage

metrics:
  - name: test-met
    resource: d.t.c
    type: min
    validation:
      threshold: >= 9% & <= 11%
			window: 1D                # Optional, Default 1D
			reference:
				window: 2W.             # Optional, Default 2W
				offset: 1D              # Optional, Default 1D. Select how many Windows you want to offset by.