mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
e7ff04a167
* [Alerting]: Implement test rule API route * Apply suggestions from code review * Call /query instead of /query_range
30 lines
1.2 KiB
Go
30 lines
1.2 KiB
Go
/*Package api contains base API implementation of unified alerting
|
|
*
|
|
*Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*
|
|
*Do not manually edit these files, please find ngalert/api/swagger-codegen/ for commands on how to generate them.
|
|
*/
|
|
package api
|
|
|
|
import (
|
|
"github.com/go-macaron/binding"
|
|
|
|
apimodels "github.com/grafana/alerting-api/pkg/api"
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/api/routing"
|
|
"github.com/grafana/grafana/pkg/middleware"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
)
|
|
|
|
type TestingApiService interface {
|
|
RouteTestReceiverConfig(*models.ReqContext, apimodels.ExtendedReceiver) response.Response
|
|
RouteTestRuleConfig(*models.ReqContext, apimodels.TestRulePayload) response.Response
|
|
}
|
|
|
|
func (api *API) RegisterTestingApiEndpoints(srv TestingApiService) {
|
|
api.RouteRegister.Group("", func(group routing.RouteRegister) {
|
|
group.Post(toMacaronPath("/api/v1/receiver/test/{Recipient}"), binding.Bind(apimodels.ExtendedReceiver{}), routing.Wrap(srv.RouteTestReceiverConfig))
|
|
group.Post(toMacaronPath("/api/v1/rule/test/{Recipient}"), binding.Bind(apimodels.TestRulePayload{}), routing.Wrap(srv.RouteTestRuleConfig))
|
|
}, middleware.ReqSignedIn)
|
|
}
|