File size: 12,052 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
package alertlog
import (
"context"
"database/sql"
"encoding/json"
"fmt"
"strings"
"github.com/google/uuid"
"github.com/sqlc-dev/pqtype"
"github.com/target/goalert/gadb"
"github.com/target/goalert/integrationkey"
"github.com/target/goalert/notification/nfydest"
"github.com/target/goalert/permission"
"github.com/target/goalert/util"
"github.com/target/goalert/util/log"
"github.com/target/goalert/validation/validate"
"github.com/pkg/errors"
)
type Store struct {
db *sql.DB
findAll *sql.Stmt
findAllByType *sql.Stmt
findOne *sql.Stmt
lookupIKeyType *sql.Stmt
reg *nfydest.Registry
}
func NewStore(ctx context.Context, db *sql.DB, reg *nfydest.Registry) (*Store, error) {
p := &util.Prepare{DB: db, Ctx: ctx}
return &Store{
db: db,
reg: reg,
lookupIKeyType: p.P(`select "type" from integration_keys where id = $1`),
findOne: p.P(`
select
log.id,
log.alert_id,
log.timestamp,
log.event,
log.message,
log.sub_type,
log.sub_user_id,
usr.name,
log.sub_integration_key_id,
ikey.name,
log.sub_hb_monitor_id,
hb.name,
log.sub_channel_id,
nc.name,
log.sub_classifier,
log.meta
from alert_logs log
left join users usr on usr.id = log.sub_user_id
left join integration_keys ikey on ikey.id = log.sub_integration_key_id
left join heartbeat_monitors hb on hb.id = log.sub_hb_monitor_id
left join notification_channels nc on nc.id = log.sub_channel_id
where log.id = $1
`),
findAll: p.P(`
select
log.id,
log.alert_id,
log.timestamp,
log.event,
log.message,
log.sub_type,
log.sub_user_id,
usr.name,
log.sub_integration_key_id,
ikey.name,
log.sub_hb_monitor_id,
hb.name,
log.sub_channel_id,
nc.name,
log.sub_classifier,
log.meta
from alert_logs log
left join users usr on usr.id = log.sub_user_id
left join integration_keys ikey on ikey.id = log.sub_integration_key_id
left join heartbeat_monitors hb on hb.id = log.sub_hb_monitor_id
left join notification_channels nc on nc.id = log.sub_channel_id
where log.alert_id = $1
order by id
`),
findAllByType: p.P(`
select
log.id,
log.alert_id,
log.timestamp,
log.event,
log.message,
log.sub_type,
log.sub_user_id,
usr.name,
log.sub_integration_key_id,
ikey.name,
log.sub_hb_monitor_id,
hb.name,
log.sub_channel_id,
nc.name,
log.sub_classifier,
log.meta
from alert_logs log
left join users usr on usr.id = log.sub_user_id
left join integration_keys ikey on ikey.id = log.sub_integration_key_id
left join heartbeat_monitors hb on hb.id = log.sub_hb_monitor_id
left join notification_channels nc on nc.id = log.sub_channel_id
where log.alert_id = $1 and log.event = $2
order by id DESC
limit 1
`),
}, p.Err
}
func (s *Store) MustLog(ctx context.Context, alertID int, _type Type, meta interface{}) {
s.MustLogTx(ctx, nil, alertID, _type, meta)
}
func (s *Store) MustLogTx(ctx context.Context, tx *sql.Tx, alertID int, _type Type, meta interface{}) {
err := s.LogTx(ctx, tx, alertID, _type, meta)
if err != nil {
log.Log(ctx, errors.Wrap(err, "append alert log"))
}
}
func (s *Store) LogEPTx(ctx context.Context, tx *sql.Tx, epID string, _type Type, meta *EscalationMetaData) error {
err := permission.LimitCheckAny(ctx, permission.All)
if err != nil {
return err
}
err = validate.UUID("EscalationPolicyID", epID)
if err != nil {
return err
}
e, err := s.logEntry(ctx, tx, _type, meta)
if err != nil {
return err
}
params := gadb.AlertLog_InsertEPParams{
EscalationPolicyID: uuid.MustParse(epID),
Event: gadb.EnumAlertLogEvent(e._type),
SubType: gadb.NullEnumAlertLogSubjectType{Valid: e.subject._type != SubjectTypeNone, EnumAlertLogSubjectType: gadb.EnumAlertLogSubjectType(e.subject._type)},
SubUserID: e.subject.userID,
SubIntegrationKeyID: e.subject.integrationKeyID,
SubHbMonitorID: e.subject.heartbeatMonitorID,
SubChannelID: e.subject.channelID,
SubClassifier: e.subject.classifier,
Meta: pqtype.NullRawMessage{Valid: e.meta != nil, RawMessage: json.RawMessage(e.meta)},
Message: e.message,
}
return s.queries(tx).AlertLog_InsertEP(ctx, params)
}
func (s *Store) LogServiceTx(ctx context.Context, tx *sql.Tx, serviceID string, _type Type, meta interface{}) error {
err := permission.LimitCheckAny(ctx, permission.All)
if err != nil {
return err
}
err = validate.UUID("ServiceID", serviceID)
if err != nil {
return err
}
t := _type
switch _type {
case TypeAcknowledged:
t = _TypeAcknowledgeAll
case TypeClosed:
t = _TypeCloseAll
}
e, err := s.logEntry(ctx, tx, t, meta)
if err != nil {
return err
}
params := gadb.AlertLog_InsertSvcParams{
ServiceID: uuid.NullUUID{Valid: true, UUID: uuid.MustParse(serviceID)},
Event: gadb.EnumAlertLogEvent(e._type),
SubType: gadb.NullEnumAlertLogSubjectType{Valid: e.subject._type != SubjectTypeNone, EnumAlertLogSubjectType: gadb.EnumAlertLogSubjectType(e.subject._type)},
SubUserID: e.subject.userID,
SubIntegrationKeyID: e.subject.integrationKeyID,
SubHbMonitorID: e.subject.heartbeatMonitorID,
SubChannelID: e.subject.channelID,
SubClassifier: e.subject.classifier,
Meta: pqtype.NullRawMessage{Valid: e.meta != nil, RawMessage: json.RawMessage(e.meta)},
Message: e.message,
}
return s.queries(tx).AlertLog_InsertSvc(ctx, params)
}
func (s *Store) LogManyTx(ctx context.Context, tx *sql.Tx, alertIDs []int, _type Type, meta interface{}) error {
err := permission.LimitCheckAny(ctx, permission.All)
if err != nil {
return err
}
e, err := s.logEntry(ctx, tx, _type, meta)
if err != nil {
return err
}
var ids []int64
for _, id := range alertIDs {
ids = append(ids, int64(id))
}
params := gadb.AlertLog_InsertManyParams{
Column1: ids,
Event: gadb.EnumAlertLogEvent(e._type),
SubType: gadb.NullEnumAlertLogSubjectType{Valid: e.subject._type != SubjectTypeNone, EnumAlertLogSubjectType: gadb.EnumAlertLogSubjectType(e.subject._type)},
SubUserID: e.subject.userID,
SubIntegrationKeyID: e.subject.integrationKeyID,
SubHbMonitorID: e.subject.heartbeatMonitorID,
SubChannelID: e.subject.channelID,
SubClassifier: e.subject.classifier,
Meta: pqtype.NullRawMessage{Valid: e.meta != nil, RawMessage: json.RawMessage(e.meta)},
Message: e.message,
}
return s.queries(tx).AlertLog_InsertMany(ctx, params)
}
func (s *Store) queries(tx *sql.Tx) *gadb.Queries {
if tx != nil {
return gadb.New(tx)
}
return gadb.New(s.db)
}
func (s *Store) LogTx(ctx context.Context, tx *sql.Tx, alertID int, _type Type, meta interface{}) error {
return s.LogManyTx(ctx, tx, []int{alertID}, _type, meta)
}
func txWrap(ctx context.Context, tx *sql.Tx, stmt *sql.Stmt) *sql.Stmt {
if tx == nil {
return stmt
}
return tx.StmtContext(ctx, stmt)
}
func (s *Store) logEntry(ctx context.Context, tx *sql.Tx, _type Type, meta interface{}) (*Entry, error) {
var classExtras []string
switch _type {
case _TypeAcknowledgeAll:
classExtras = append(classExtras, "Ack-All")
_type = TypeAcknowledged
case _TypeCloseAll:
classExtras = append(classExtras, "Close-All")
_type = TypeClosed
}
var r Entry
r._type = _type
var err error
if meta != nil {
r.meta, err = json.Marshal(meta)
if err != nil {
return nil, err
}
}
src := permission.Source(ctx)
gdb := gadb.New(s.db)
if tx != nil {
gdb = gdb.WithTx(tx)
}
if src != nil {
switch src.Type {
case permission.SourceTypeNotificationChannel:
r.subject._type = SubjectTypeChannel
id, err := uuid.Parse(src.ID)
if err != nil {
return nil, errors.Wrap(err, "parse channel ID")
}
dest, err := gdb.AlertLog_LookupNCDest(ctx, id)
if err != nil {
return nil, errors.Wrap(err, "lookup notification channel destination")
}
info, err := s.reg.TypeInfo(ctx, dest.DestV1.Type)
if err != nil {
return nil, errors.Wrap(err, "lookup notification channel destination type")
}
r.subject.classifier = info.Name
r.subject.channelID.UUID = id
r.subject.channelID.Valid = true
case permission.SourceTypeAuthProvider:
r.subject.classifier = "Web"
r.subject._type = SubjectTypeUser
r.subject.userID = permission.UserNullUUID(ctx)
case permission.SourceTypeContactMethod:
r.subject._type = SubjectTypeUser
r.subject.userID = permission.UserNullUUID(ctx)
if _type == TypeNoNotificationSent {
// no CMID for no notification sent
r.subject.classifier = "no immediate rule"
break
}
dest, err := s.queries(tx).AlertLog_LookupCMDest(ctx, uuid.MustParse(src.ID))
if err != nil {
return nil, errors.Wrap(err, "lookup contact method type for callback ID")
}
info, err := s.reg.TypeInfo(ctx, dest.DestV1.Type)
if err != nil {
return nil, errors.Wrap(err, "lookup contact method type")
}
r.subject.classifier = info.Name
case permission.SourceTypeNotificationCallback:
r.subject._type = SubjectTypeUser
r.subject.userID = permission.UserNullUUID(ctx)
id, err := uuid.Parse(src.ID)
if err != nil {
return nil, errors.Wrap(err, "parse channel ID")
}
dest, err := gdb.AlertLog_LookupCallbackDest(ctx, id)
if err != nil {
return nil, errors.Wrap(err, "lookup notification callback type")
}
info, err := s.reg.TypeInfo(ctx, dest.DestV1.Type)
if err != nil {
return nil, errors.Wrap(err, "lookup notification channel destination type")
}
r.subject.classifier = info.Name
case permission.SourceTypeHeartbeat:
r.subject._type = SubjectTypeHeartbeatMonitor
minutes, err := s.queries(tx).AlertLog_HBIntervalMinutes(ctx, uuid.MustParse(src.ID))
if err != nil {
return nil, errors.Wrap(err, "lookup heartbeat monitor interval by ID")
}
if r.Type() == TypeCreated {
s := "s"
if minutes == 1 {
s = ""
}
r.subject.classifier = fmt.Sprintf("expired after %d minute"+s, minutes)
} else if r.Type() == TypeClosed {
r.subject.classifier = "healthy"
}
r.subject.heartbeatMonitorID.Valid = true
r.subject.heartbeatMonitorID.UUID = uuid.MustParse(src.ID)
case permission.SourceTypeIntegrationKey:
r.subject._type = SubjectTypeIntegrationKey
var ikeyType integrationkey.Type
err = txWrap(ctx, tx, s.lookupIKeyType).QueryRowContext(ctx, src.ID).Scan(&ikeyType)
if err != nil {
return nil, errors.Wrap(err, "lookup integration key type by ID")
}
switch ikeyType {
case integrationkey.TypeGeneric:
r.subject.classifier = "Generic API"
case integrationkey.TypeGrafana:
r.subject.classifier = "Grafana"
case integrationkey.TypeSite24x7:
r.subject.classifier = "Site24x7"
case integrationkey.TypeEmail:
r.subject.classifier = "Email"
}
r.subject.integrationKeyID.Valid = true
r.subject.integrationKeyID.UUID = uuid.MustParse(src.ID)
}
}
if r.subject.classifier != "" {
classExtras = append([]string{r.subject.classifier}, classExtras...)
}
r.subject.classifier = strings.Join(classExtras, ", ")
return &r, nil
}
func (s *Store) FindOne(ctx context.Context, logID int) (*Entry, error) {
err := permission.LimitCheckAny(ctx, permission.All)
if err != nil {
return nil, err
}
var e Entry
row := s.findOne.QueryRowContext(ctx, logID)
err = e.scanWith(row.Scan)
if err != nil {
return nil, err
}
return &e, nil
}
// FindLatestByType returns the latest Log Entry given alertID and status type
func (s *Store) FindLatestByType(ctx context.Context, alertID int, status Type) (*Entry, error) {
err := permission.LimitCheckAny(ctx, permission.All)
if err != nil {
return nil, err
}
var e Entry
row := s.findAllByType.QueryRowContext(ctx, alertID, status)
err = e.scanWith(row.Scan)
if err != nil {
return nil, err
}
return &e, nil
}
|