mirror of
https://github.com/SigNoz/signoz.git
synced 2026-04-18 18:00:27 +01:00
Some checks failed
build-staging / prepare (push) Has been cancelled
build-staging / js-build (push) Has been cancelled
build-staging / go-build (push) Has been cancelled
build-staging / staging (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
* refactor(alertmanager): move API handlers to signozapiserver Extract Handler interface in pkg/alertmanager/handler.go and move the implementation from api.go to signozalertmanager/handler.go. Register all alertmanager routes (channels, route policies, alerts) in signozapiserver via handler.New() with OpenAPIDef. Remove AlertmanagerAPI injection from http_handler.go. This enables future AuditDef instrumentation on these routes. * fix(review): rename param, add /api/v1/channels/test endpoint - Rename `am` to `alertmanagerService` in NewHandlers - Add /api/v1/channels/test as the canonical test endpoint - Mark /api/v1/testChannel as deprecated - Regenerate OpenAPI spec * fix(review): use camelCase for channel orgId json tag * fix(review): remove section comments from alertmanager routes * fix(review): use routepolicies tag without hyphen * chore: regenerate frontend API clients for alertmanager routes * fix: add required/nullable/enum tags to alertmanager OpenAPI types - PostableRoutePolicy: mark expression, name, channels as required - GettableRoutePolicy: change CreatedAt/UpdatedAt from pointer to value - Channel: mark name, type, data, orgId as required - ExpressionKind: add Enum() for rule/policy values - Regenerate OpenAPI spec and frontend clients * fix: use typed response for GetAlerts endpoint * fix: add Receiver request type to channel mutation endpoints CreateChannel, UpdateChannelByID, TestChannel, and TestChannelDeprecated all read req.Body as a Receiver config. The OpenAPIDef must declare the request type so the generated SDK includes the body parameter. * fix: change CreateChannel access from EditAccess to AdminAccess Aligns CreateChannel endpoint with the rest of the channel mutation endpoints (update/delete) which all require admin access. This is consistent with the frontend where notifications are not accessible to editors.
32 lines
775 B
Go
32 lines
775 B
Go
package alertmanager
|
|
|
|
import "net/http"
|
|
|
|
type Handler interface {
|
|
GetAlerts(http.ResponseWriter, *http.Request)
|
|
|
|
TestReceiver(http.ResponseWriter, *http.Request)
|
|
|
|
ListChannels(http.ResponseWriter, *http.Request)
|
|
|
|
ListAllChannels(http.ResponseWriter, *http.Request)
|
|
|
|
GetChannelByID(http.ResponseWriter, *http.Request)
|
|
|
|
CreateChannel(http.ResponseWriter, *http.Request)
|
|
|
|
UpdateChannelByID(http.ResponseWriter, *http.Request)
|
|
|
|
DeleteChannelByID(http.ResponseWriter, *http.Request)
|
|
|
|
GetAllRoutePolicies(http.ResponseWriter, *http.Request)
|
|
|
|
GetRoutePolicyByID(http.ResponseWriter, *http.Request)
|
|
|
|
CreateRoutePolicy(http.ResponseWriter, *http.Request)
|
|
|
|
UpdateRoutePolicy(http.ResponseWriter, *http.Request)
|
|
|
|
DeleteRoutePolicyByID(http.ResponseWriter, *http.Request)
|
|
}
|