mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-26 06:04:05 -08:00
Adding a query parameter to filter out active alerts
Signed-off-by: Anand Rajagopal <anrajag@amazon.com>
This commit is contained in:
parent
16af86734f
commit
2ade8adf9e
|
@ -679,6 +679,7 @@ URL query parameters:
|
||||||
- `rule_name[]=<string>`: only return rules with the given rule name. If the parameter is repeated, rules with any of the provided names are returned. If we've filtered out all the rules of a group, the group is not returned. When the parameter is absent or empty, no filtering is done.
|
- `rule_name[]=<string>`: only return rules with the given rule name. If the parameter is repeated, rules with any of the provided names are returned. If we've filtered out all the rules of a group, the group is not returned. When the parameter is absent or empty, no filtering is done.
|
||||||
- `rule_group[]=<string>`: only return rules with the given rule group name. If the parameter is repeated, rules with any of the provided rule group names are returned. When the parameter is absent or empty, no filtering is done.
|
- `rule_group[]=<string>`: only return rules with the given rule group name. If the parameter is repeated, rules with any of the provided rule group names are returned. When the parameter is absent or empty, no filtering is done.
|
||||||
- `file[]=<string>`: only return rules with the given filepath. If the parameter is repeated, rules with any of the provided filepaths are returned. When the parameter is absent or empty, no filtering is done.
|
- `file[]=<string>`: only return rules with the given filepath. If the parameter is repeated, rules with any of the provided filepaths are returned. When the parameter is absent or empty, no filtering is done.
|
||||||
|
- `exclude_alerts`: only return rules without active alerts. When this parameter is absent or empty, no filtering is done.
|
||||||
|
|
||||||
```json
|
```json
|
||||||
$ curl http://localhost:9090/api/v1/rules
|
$ curl http://localhost:9090/api/v1/rules
|
||||||
|
|
|
@ -1373,6 +1373,11 @@ func (api *API) rules(r *http.Request) apiFuncResult {
|
||||||
returnAlerts := typ == "" || typ == "alert"
|
returnAlerts := typ == "" || typ == "alert"
|
||||||
returnRecording := typ == "" || typ == "record"
|
returnRecording := typ == "" || typ == "record"
|
||||||
|
|
||||||
|
excludeAlerts, err := parseExcludeAlerts(r)
|
||||||
|
if err != nil {
|
||||||
|
return invalidParamError(err, "exclude_alerts")
|
||||||
|
}
|
||||||
|
|
||||||
rgs := make([]*RuleGroup, 0, len(ruleGroups))
|
rgs := make([]*RuleGroup, 0, len(ruleGroups))
|
||||||
for _, grp := range ruleGroups {
|
for _, grp := range ruleGroups {
|
||||||
if len(rgSet) > 0 {
|
if len(rgSet) > 0 {
|
||||||
|
@ -1414,6 +1419,10 @@ func (api *API) rules(r *http.Request) apiFuncResult {
|
||||||
if !returnAlerts {
|
if !returnAlerts {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
var activeAlerts []*Alert
|
||||||
|
if !excludeAlerts {
|
||||||
|
activeAlerts = rulesAlertsToAPIAlerts(rule.ActiveAlerts())
|
||||||
|
}
|
||||||
enrichedRule = AlertingRule{
|
enrichedRule = AlertingRule{
|
||||||
State: rule.State().String(),
|
State: rule.State().String(),
|
||||||
Name: rule.Name(),
|
Name: rule.Name(),
|
||||||
|
@ -1422,7 +1431,7 @@ func (api *API) rules(r *http.Request) apiFuncResult {
|
||||||
KeepFiringFor: rule.KeepFiringFor().Seconds(),
|
KeepFiringFor: rule.KeepFiringFor().Seconds(),
|
||||||
Labels: rule.Labels(),
|
Labels: rule.Labels(),
|
||||||
Annotations: rule.Annotations(),
|
Annotations: rule.Annotations(),
|
||||||
Alerts: rulesAlertsToAPIAlerts(rule.ActiveAlerts()),
|
Alerts: activeAlerts,
|
||||||
Health: rule.Health(),
|
Health: rule.Health(),
|
||||||
LastError: lastError,
|
LastError: lastError,
|
||||||
EvaluationTime: rule.GetEvaluationDuration().Seconds(),
|
EvaluationTime: rule.GetEvaluationDuration().Seconds(),
|
||||||
|
@ -1462,6 +1471,20 @@ func (api *API) rules(r *http.Request) apiFuncResult {
|
||||||
return apiFuncResult{res, nil, nil, nil}
|
return apiFuncResult{res, nil, nil, nil}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func parseExcludeAlerts(r *http.Request) (bool, error) {
|
||||||
|
excludeAlertsParam := strings.ToLower(r.URL.Query().Get("exclude_alerts"))
|
||||||
|
|
||||||
|
if excludeAlertsParam == "" {
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
excludeAlerts, err := strconv.ParseBool(excludeAlertsParam)
|
||||||
|
if err != nil {
|
||||||
|
return false, fmt.Errorf("error converting exclude_alerts: %w", err)
|
||||||
|
}
|
||||||
|
return excludeAlerts, nil
|
||||||
|
}
|
||||||
|
|
||||||
type prometheusConfig struct {
|
type prometheusConfig struct {
|
||||||
YAML string `json:"yaml"`
|
YAML string `json:"yaml"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -209,10 +209,12 @@ func (t testAlertmanagerRetriever) toFactory() func(context.Context) Alertmanage
|
||||||
}
|
}
|
||||||
|
|
||||||
type rulesRetrieverMock struct {
|
type rulesRetrieverMock struct {
|
||||||
|
alertingRules []*rules.AlertingRule
|
||||||
|
ruleGroups []*rules.Group
|
||||||
testing *testing.T
|
testing *testing.T
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m rulesRetrieverMock) AlertingRules() []*rules.AlertingRule {
|
func (m *rulesRetrieverMock) CreateAlertingRules() {
|
||||||
expr1, err := parser.ParseExpr(`absent(test_metric3) != 1`)
|
expr1, err := parser.ParseExpr(`absent(test_metric3) != 1`)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
m.testing.Fatalf("unable to parse alert expression: %s", err)
|
m.testing.Fatalf("unable to parse alert expression: %s", err)
|
||||||
|
@ -222,6 +224,11 @@ func (m rulesRetrieverMock) AlertingRules() []*rules.AlertingRule {
|
||||||
m.testing.Fatalf("Unable to parse alert expression: %s", err)
|
m.testing.Fatalf("Unable to parse alert expression: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
expr3, err := parser.ParseExpr(`vector(1)`)
|
||||||
|
if err != nil {
|
||||||
|
m.testing.Fatalf("Unable to parse alert expression: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
rule1 := rules.NewAlertingRule(
|
rule1 := rules.NewAlertingRule(
|
||||||
"test_metric3",
|
"test_metric3",
|
||||||
expr1,
|
expr1,
|
||||||
|
@ -246,15 +253,29 @@ func (m rulesRetrieverMock) AlertingRules() []*rules.AlertingRule {
|
||||||
true,
|
true,
|
||||||
log.NewNopLogger(),
|
log.NewNopLogger(),
|
||||||
)
|
)
|
||||||
|
rule3 := rules.NewAlertingRule(
|
||||||
|
"test_metric5",
|
||||||
|
expr3,
|
||||||
|
time.Second,
|
||||||
|
0,
|
||||||
|
labels.FromStrings("name", "tm5"),
|
||||||
|
labels.Labels{},
|
||||||
|
labels.FromStrings("name", "tm5"),
|
||||||
|
"",
|
||||||
|
false,
|
||||||
|
log.NewNopLogger(),
|
||||||
|
)
|
||||||
|
|
||||||
var r []*rules.AlertingRule
|
var r []*rules.AlertingRule
|
||||||
r = append(r, rule1)
|
r = append(r, rule1)
|
||||||
r = append(r, rule2)
|
r = append(r, rule2)
|
||||||
return r
|
r = append(r, rule3)
|
||||||
|
m.alertingRules = r
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m rulesRetrieverMock) RuleGroups() []*rules.Group {
|
func (m *rulesRetrieverMock) CreateRuleGroups() {
|
||||||
var ar rulesRetrieverMock
|
m.CreateAlertingRules()
|
||||||
arules := ar.AlertingRules()
|
arules := m.AlertingRules()
|
||||||
storage := teststorage.New(m.testing)
|
storage := teststorage.New(m.testing)
|
||||||
defer storage.Close()
|
defer storage.Close()
|
||||||
|
|
||||||
|
@ -271,6 +292,7 @@ func (m rulesRetrieverMock) RuleGroups() []*rules.Group {
|
||||||
Appendable: storage,
|
Appendable: storage,
|
||||||
Context: context.Background(),
|
Context: context.Background(),
|
||||||
Logger: log.NewNopLogger(),
|
Logger: log.NewNopLogger(),
|
||||||
|
NotifyFunc: func(ctx context.Context, expr string, alerts ...*rules.Alert) {},
|
||||||
}
|
}
|
||||||
|
|
||||||
var r []rules.Rule
|
var r []rules.Rule
|
||||||
|
@ -294,10 +316,18 @@ func (m rulesRetrieverMock) RuleGroups() []*rules.Group {
|
||||||
ShouldRestore: false,
|
ShouldRestore: false,
|
||||||
Opts: opts,
|
Opts: opts,
|
||||||
})
|
})
|
||||||
return []*rules.Group{group}
|
m.ruleGroups = []*rules.Group{group}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m rulesRetrieverMock) toFactory() func(context.Context) RulesRetriever {
|
func (m *rulesRetrieverMock) AlertingRules() []*rules.AlertingRule {
|
||||||
|
return m.alertingRules
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *rulesRetrieverMock) RuleGroups() []*rules.Group {
|
||||||
|
return m.ruleGroups
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *rulesRetrieverMock) toFactory() func(context.Context) RulesRetriever {
|
||||||
return func(context.Context) RulesRetriever { return m }
|
return func(context.Context) RulesRetriever { return m }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -380,12 +410,14 @@ func TestEndpoints(t *testing.T) {
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
|
|
||||||
t.Run("local", func(t *testing.T) {
|
t.Run("local", func(t *testing.T) {
|
||||||
var algr rulesRetrieverMock
|
algr := rulesRetrieverMock{}
|
||||||
algr.testing = t
|
algr.testing = t
|
||||||
|
|
||||||
algr.AlertingRules()
|
algr.CreateAlertingRules()
|
||||||
|
algr.CreateRuleGroups()
|
||||||
|
|
||||||
algr.RuleGroups()
|
g := algr.RuleGroups()
|
||||||
|
g[0].Eval(context.Background(), time.Now())
|
||||||
|
|
||||||
testTargetRetriever := setupTestTargetRetriever(t)
|
testTargetRetriever := setupTestTargetRetriever(t)
|
||||||
|
|
||||||
|
@ -442,12 +474,14 @@ func TestEndpoints(t *testing.T) {
|
||||||
})
|
})
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
var algr rulesRetrieverMock
|
algr := rulesRetrieverMock{}
|
||||||
algr.testing = t
|
algr.testing = t
|
||||||
|
|
||||||
algr.AlertingRules()
|
algr.CreateAlertingRules()
|
||||||
|
algr.CreateRuleGroups()
|
||||||
|
|
||||||
algr.RuleGroups()
|
g := algr.RuleGroups()
|
||||||
|
g[0].Eval(context.Background(), time.Now())
|
||||||
|
|
||||||
testTargetRetriever := setupTestTargetRetriever(t)
|
testTargetRetriever := setupTestTargetRetriever(t)
|
||||||
|
|
||||||
|
@ -1036,6 +1070,36 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
sorter func(interface{})
|
sorter func(interface{})
|
||||||
metadata []targetMetadata
|
metadata []targetMetadata
|
||||||
exemplars []exemplar.QueryResult
|
exemplars []exemplar.QueryResult
|
||||||
|
zeroFunc func(interface{})
|
||||||
|
}
|
||||||
|
|
||||||
|
rulesZeroFunc := func(i interface{}) {
|
||||||
|
if i != nil {
|
||||||
|
v := i.(*RuleDiscovery)
|
||||||
|
for _, ruleGroup := range v.RuleGroups {
|
||||||
|
ruleGroup.EvaluationTime = float64(0)
|
||||||
|
ruleGroup.LastEvaluation = time.Time{}
|
||||||
|
for k, rule := range ruleGroup.Rules {
|
||||||
|
switch r := rule.(type) {
|
||||||
|
case AlertingRule:
|
||||||
|
r.LastEvaluation = time.Time{}
|
||||||
|
r.EvaluationTime = float64(0)
|
||||||
|
r.LastError = ""
|
||||||
|
r.Health = "ok"
|
||||||
|
for _, alert := range r.Alerts {
|
||||||
|
alert.ActiveAt = nil
|
||||||
|
}
|
||||||
|
ruleGroup.Rules[k] = r
|
||||||
|
case RecordingRule:
|
||||||
|
r.LastEvaluation = time.Time{}
|
||||||
|
r.EvaluationTime = float64(0)
|
||||||
|
r.LastError = ""
|
||||||
|
r.Health = "ok"
|
||||||
|
ruleGroup.Rules[k] = r
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tests := []test{
|
tests := []test{
|
||||||
|
@ -1988,7 +2052,22 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
{
|
{
|
||||||
endpoint: api.alerts,
|
endpoint: api.alerts,
|
||||||
response: &AlertDiscovery{
|
response: &AlertDiscovery{
|
||||||
Alerts: []*Alert{},
|
Alerts: []*Alert{
|
||||||
|
{
|
||||||
|
Labels: labels.FromStrings("alertname", "test_metric5", "name", "tm5"),
|
||||||
|
Annotations: labels.Labels{},
|
||||||
|
State: "pending",
|
||||||
|
Value: "1e+00",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
zeroFunc: func(i interface{}) {
|
||||||
|
if i != nil {
|
||||||
|
v := i.(*AlertDiscovery)
|
||||||
|
for _, alert := range v.Alerts {
|
||||||
|
alert.ActiveAt = nil
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -2009,7 +2088,7 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
Labels: labels.Labels{},
|
Labels: labels.Labels{},
|
||||||
Annotations: labels.Labels{},
|
Annotations: labels.Labels{},
|
||||||
Alerts: []*Alert{},
|
Alerts: []*Alert{},
|
||||||
Health: "unknown",
|
Health: "ok",
|
||||||
Type: "alerting",
|
Type: "alerting",
|
||||||
},
|
},
|
||||||
AlertingRule{
|
AlertingRule{
|
||||||
|
@ -2020,20 +2099,98 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
Labels: labels.Labels{},
|
Labels: labels.Labels{},
|
||||||
Annotations: labels.Labels{},
|
Annotations: labels.Labels{},
|
||||||
Alerts: []*Alert{},
|
Alerts: []*Alert{},
|
||||||
Health: "unknown",
|
Health: "ok",
|
||||||
|
Type: "alerting",
|
||||||
|
},
|
||||||
|
AlertingRule{
|
||||||
|
State: "pending",
|
||||||
|
Name: "test_metric5",
|
||||||
|
Query: "vector(1)",
|
||||||
|
Duration: 1,
|
||||||
|
Labels: labels.FromStrings("name", "tm5"),
|
||||||
|
Annotations: labels.Labels{},
|
||||||
|
Alerts: []*Alert{
|
||||||
|
{
|
||||||
|
Labels: labels.FromStrings("alertname", "test_metric5", "name", "tm5"),
|
||||||
|
Annotations: labels.Labels{},
|
||||||
|
State: "pending",
|
||||||
|
Value: "1e+00",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Health: "ok",
|
||||||
Type: "alerting",
|
Type: "alerting",
|
||||||
},
|
},
|
||||||
RecordingRule{
|
RecordingRule{
|
||||||
Name: "recording-rule-1",
|
Name: "recording-rule-1",
|
||||||
Query: "vector(1)",
|
Query: "vector(1)",
|
||||||
Labels: labels.Labels{},
|
Labels: labels.Labels{},
|
||||||
Health: "unknown",
|
Health: "ok",
|
||||||
Type: "recording",
|
Type: "recording",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
zeroFunc: rulesZeroFunc,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
endpoint: api.rules,
|
||||||
|
query: url.Values{
|
||||||
|
"exclude_alerts": []string{"true"},
|
||||||
|
},
|
||||||
|
response: &RuleDiscovery{
|
||||||
|
RuleGroups: []*RuleGroup{
|
||||||
|
{
|
||||||
|
Name: "grp",
|
||||||
|
File: "/path/to/file",
|
||||||
|
Interval: 1,
|
||||||
|
Limit: 0,
|
||||||
|
Rules: []Rule{
|
||||||
|
AlertingRule{
|
||||||
|
State: "inactive",
|
||||||
|
Name: "test_metric3",
|
||||||
|
Query: "absent(test_metric3) != 1",
|
||||||
|
Duration: 1,
|
||||||
|
Labels: labels.Labels{},
|
||||||
|
Annotations: labels.Labels{},
|
||||||
|
Alerts: nil,
|
||||||
|
Health: "ok",
|
||||||
|
Type: "alerting",
|
||||||
|
},
|
||||||
|
AlertingRule{
|
||||||
|
State: "inactive",
|
||||||
|
Name: "test_metric4",
|
||||||
|
Query: "up == 1",
|
||||||
|
Duration: 1,
|
||||||
|
Labels: labels.Labels{},
|
||||||
|
Annotations: labels.Labels{},
|
||||||
|
Alerts: nil,
|
||||||
|
Health: "ok",
|
||||||
|
Type: "alerting",
|
||||||
|
},
|
||||||
|
AlertingRule{
|
||||||
|
State: "pending",
|
||||||
|
Name: "test_metric5",
|
||||||
|
Query: "vector(1)",
|
||||||
|
Duration: 1,
|
||||||
|
Labels: labels.FromStrings("name", "tm5"),
|
||||||
|
Annotations: labels.Labels{},
|
||||||
|
Alerts: nil,
|
||||||
|
Health: "ok",
|
||||||
|
Type: "alerting",
|
||||||
|
},
|
||||||
|
RecordingRule{
|
||||||
|
Name: "recording-rule-1",
|
||||||
|
Query: "vector(1)",
|
||||||
|
Labels: labels.Labels{},
|
||||||
|
Health: "ok",
|
||||||
|
Type: "recording",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
zeroFunc: rulesZeroFunc,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
endpoint: api.rules,
|
endpoint: api.rules,
|
||||||
|
@ -2056,7 +2213,7 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
Labels: labels.Labels{},
|
Labels: labels.Labels{},
|
||||||
Annotations: labels.Labels{},
|
Annotations: labels.Labels{},
|
||||||
Alerts: []*Alert{},
|
Alerts: []*Alert{},
|
||||||
Health: "unknown",
|
Health: "ok",
|
||||||
Type: "alerting",
|
Type: "alerting",
|
||||||
},
|
},
|
||||||
AlertingRule{
|
AlertingRule{
|
||||||
|
@ -2067,13 +2224,32 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
Labels: labels.Labels{},
|
Labels: labels.Labels{},
|
||||||
Annotations: labels.Labels{},
|
Annotations: labels.Labels{},
|
||||||
Alerts: []*Alert{},
|
Alerts: []*Alert{},
|
||||||
Health: "unknown",
|
Health: "ok",
|
||||||
|
Type: "alerting",
|
||||||
|
},
|
||||||
|
AlertingRule{
|
||||||
|
State: "pending",
|
||||||
|
Name: "test_metric5",
|
||||||
|
Query: "vector(1)",
|
||||||
|
Duration: 1,
|
||||||
|
Labels: labels.FromStrings("name", "tm5"),
|
||||||
|
Annotations: labels.Labels{},
|
||||||
|
Alerts: []*Alert{
|
||||||
|
{
|
||||||
|
Labels: labels.FromStrings("alertname", "test_metric5", "name", "tm5"),
|
||||||
|
Annotations: labels.Labels{},
|
||||||
|
State: "pending",
|
||||||
|
Value: "1e+00",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Health: "ok",
|
||||||
Type: "alerting",
|
Type: "alerting",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
zeroFunc: rulesZeroFunc,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
endpoint: api.rules,
|
endpoint: api.rules,
|
||||||
|
@ -2092,13 +2268,14 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
Name: "recording-rule-1",
|
Name: "recording-rule-1",
|
||||||
Query: "vector(1)",
|
Query: "vector(1)",
|
||||||
Labels: labels.Labels{},
|
Labels: labels.Labels{},
|
||||||
Health: "unknown",
|
Health: "ok",
|
||||||
Type: "recording",
|
Type: "recording",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
zeroFunc: rulesZeroFunc,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
endpoint: api.rules,
|
endpoint: api.rules,
|
||||||
|
@ -2119,13 +2296,14 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
Labels: labels.Labels{},
|
Labels: labels.Labels{},
|
||||||
Annotations: labels.Labels{},
|
Annotations: labels.Labels{},
|
||||||
Alerts: []*Alert{},
|
Alerts: []*Alert{},
|
||||||
Health: "unknown",
|
Health: "ok",
|
||||||
Type: "alerting",
|
Type: "alerting",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
zeroFunc: rulesZeroFunc,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
endpoint: api.rules,
|
endpoint: api.rules,
|
||||||
|
@ -2151,13 +2329,14 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
Labels: labels.Labels{},
|
Labels: labels.Labels{},
|
||||||
Annotations: labels.Labels{},
|
Annotations: labels.Labels{},
|
||||||
Alerts: []*Alert{},
|
Alerts: []*Alert{},
|
||||||
Health: "unknown",
|
Health: "ok",
|
||||||
Type: "alerting",
|
Type: "alerting",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
zeroFunc: rulesZeroFunc,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
endpoint: api.queryExemplars,
|
endpoint: api.queryExemplars,
|
||||||
|
@ -2696,6 +2875,9 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
assertAPIResponseMetadataLen(t, res.data, test.responseMetadataTotal)
|
assertAPIResponseMetadataLen(t, res.data, test.responseMetadataTotal)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if test.zeroFunc != nil {
|
||||||
|
test.zeroFunc(res.data)
|
||||||
|
}
|
||||||
assertAPIResponse(t, res.data, test.response)
|
assertAPIResponse(t, res.data, test.response)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue