We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 444de44 + 382dca9 commit 07f3c56Copy full SHA for 07f3c56
pkg/insights/insightsreport/insightsreport.go
@@ -245,4 +245,10 @@ func init() {
245
if err != nil {
246
fmt.Println(err)
247
}
248
+
249
+ insightsStatus.WithLabelValues("low").Set(float64(-1))
250
+ insightsStatus.WithLabelValues("moderate").Set(float64(-1))
251
+ insightsStatus.WithLabelValues("important").Set(float64(-1))
252
+ insightsStatus.WithLabelValues("critical").Set(float64(-1))
253
+ insightsStatus.WithLabelValues("total").Set(float64(-1))
254
0 commit comments