mirror of
https://github.com/prometheus/alertmanager
synced 2025-02-12 08:28:00 +00:00
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
// Copyright 2013 Prometheus Team
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package api
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/julienschmidt/httprouter"
|
|
|
|
"github.com/prometheus/alertmanager/manager"
|
|
)
|
|
|
|
func (s AlertManagerService) addAlerts(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
|
|
alerts := manager.Alerts{}
|
|
if err := parseJSON(w, r, &alerts); err != nil {
|
|
return
|
|
}
|
|
for i, a := range alerts {
|
|
if a.Summary == "" || a.Description == "" {
|
|
http.Error(w, fmt.Sprintf("Missing field in alert %d: %s", i, a), http.StatusBadRequest)
|
|
return
|
|
}
|
|
if _, ok := a.Labels[manager.AlertNameLabel]; !ok {
|
|
http.Error(w, fmt.Sprintf("Missing alert name label in alert %d: %s", i, a), http.StatusBadRequest)
|
|
return
|
|
}
|
|
}
|
|
|
|
s.Manager.Receive(alerts)
|
|
}
|