ensure machineID is included early enough into the alert (#1004)

This commit is contained in:
Thibault "bui" Koechlin 2021-10-11 15:02:16 +02:00 committed by GitHub
parent 203be9bfbf
commit 2961a0ed02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,6 +127,7 @@ func (c *Controller) CreateAlert(gctx *gin.Context) {
}
for _, alert := range input {
alert.MachineID = machineID
if len(alert.Decisions) != 0 {
for pIdx, profile := range c.Profiles {
_, matched, err := csprofiles.EvaluateProfile(profile, alert)
@ -168,9 +169,6 @@ func (c *Controller) CreateAlert(gctx *gin.Context) {
c.HandleDBErrors(gctx, err)
return
}
for _, alert := range input {
alert.MachineID = machineID
}
if c.CAPIChan != nil {
select {