소스 검색

Raise error if no threshold is provided for a numeric value

Brendan Abolivier 7 년 전
부모
커밋
e76985e0f9
로그인 계정: Brendan Abolivier <contact@brendanabolivier.com> GPG 키 ID: 8EF1500759F70623
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      src/metrics-alerting/process/process.go

+ 4
- 0
src/metrics-alerting/process/process.go 파일 보기

@@ -138,6 +138,10 @@ func processFloat(
138 138
 	labels map[string]string,
139 139
 	data script_data.Data,
140 140
 ) error {
141
+	if script.Threshold == 0 {
142
+		return fmt.Errorf("no threshold provided for number value")
143
+	}
144
+
141 145
 	if value < script.Threshold {
142 146
 		// Nothing to alert about
143 147
 		return nil