-
Notifications
You must be signed in to change notification settings - Fork 20
/
convert.go
850 lines (755 loc) · 24.7 KB
/
convert.go
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
package main
import (
"database/sql"
_ "embed"
"github.com/icinga/icingadb/pkg/contracts"
v1 "github.com/icinga/icingadb/pkg/icingadb/v1"
"github.com/icinga/icingadb/pkg/icingadb/v1/history"
icingadbTypes "github.com/icinga/icingadb/pkg/types"
"github.com/icinga/icingadb/pkg/utils"
"github.com/jmoiron/sqlx"
"github.com/pkg/errors"
"strconv"
"strings"
"time"
)
//go:embed embed/comment_query.sql
var commentMigrationQuery string
//go:embed embed/downtime_query.sql
var downtimeMigrationQuery string
//go:embed embed/flapping_query.sql
var flappingMigrationQuery string
//go:embed embed/notification_query.sql
var notificationMigrationQuery string
//go:embed embed/state_query.sql
var stateMigrationQuery string
type commentRow = struct {
CommenthistoryId uint64
EntryTime sql.NullInt64
EntryTimeUsec uint32
EntryType uint8
AuthorName string
CommentData string
IsPersistent uint8
ExpirationTime int64
DeletionTime int64
DeletionTimeUsec uint32
Name string
ObjecttypeId uint8
Name1 string
Name2 string
}
func convertCommentRows(
env string, envId icingadbTypes.Binary,
_ func(interface{}, string, ...interface{}), _ *sqlx.Tx, idoRows []commentRow,
) (stages []icingaDbOutputStage, checkpoint any) {
var commentHistory, acknowledgementHistory, allHistoryComment, allHistoryAck []contracts.Entity
for _, row := range idoRows {
checkpoint = row.CommenthistoryId
if !row.EntryTime.Valid {
continue
}
typ := objectTypes[row.ObjecttypeId]
hostId := calcObjectId(env, row.Name1)
serviceId := calcServiceId(env, row.Name1, row.Name2)
switch row.EntryType {
case 1: // user
id := calcObjectId(env, row.Name)
entryTime := convertTime(row.EntryTime.Int64, row.EntryTimeUsec)
removeTime := convertTime(row.DeletionTime, row.DeletionTimeUsec)
expireTime := convertTime(row.ExpirationTime, 0)
commentHistory = append(commentHistory, &history.CommentHistory{
CommentHistoryEntity: history.CommentHistoryEntity{CommentId: id},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
CommentHistoryUpserter: history.CommentHistoryUpserter{
RemoveTime: removeTime,
HasBeenRemoved: icingadbTypes.Bool{Bool: !removeTime.Time().IsZero(), Valid: true},
},
EntryTime: entryTime,
Author: row.AuthorName,
Comment: row.CommentData,
EntryType: icingadbTypes.CommentType(row.EntryType),
IsPersistent: icingadbTypes.Bool{Bool: row.IsPersistent != 0, Valid: true},
IsSticky: icingadbTypes.Bool{Bool: false, Valid: true},
ExpireTime: expireTime,
})
h1 := &history.HistoryComment{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{Id: hashAny([]string{env, "comment_add", row.Name})},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "comment_add",
},
CommentHistoryId: id,
EntryTime: entryTime,
}
h1.EventTime.History = h1
allHistoryComment = append(allHistoryComment, h1)
if !removeTime.Time().IsZero() { // remove
h2 := &history.HistoryComment{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{Id: hashAny([]string{env, "comment_remove", row.Name})},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "comment_remove",
},
CommentHistoryId: id,
EntryTime: entryTime,
RemoveTime: removeTime,
ExpireTime: expireTime,
}
h2.EventTime.History = h2
allHistoryComment = append(allHistoryComment, h2)
}
case 4: // ack
name := row.Name1
if row.Name2 != "" {
name += "!" + row.Name2
}
setTime := convertTime(row.EntryTime.Int64, row.EntryTimeUsec)
setTs := float64(setTime.Time().UnixMilli())
clearTime := convertTime(row.DeletionTime, row.DeletionTimeUsec)
acknowledgementHistoryId := hashAny([]any{env, name, setTs})
acknowledgementHistory = append(acknowledgementHistory, &history.AcknowledgementHistory{
EntityWithoutChecksum: v1.EntityWithoutChecksum{
IdMeta: v1.IdMeta{Id: acknowledgementHistoryId},
},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
AckHistoryUpserter: history.AckHistoryUpserter{ClearTime: clearTime},
SetTime: setTime,
Author: icingadbTypes.MakeString(row.AuthorName),
Comment: icingadbTypes.MakeString(row.CommentData),
ExpireTime: convertTime(row.ExpirationTime, 0),
IsPersistent: icingadbTypes.Bool{
Bool: row.IsPersistent != 0,
Valid: true,
},
})
h1 := &history.HistoryAck{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{
Id: hashAny([]any{env, "ack_set", name, setTs}),
},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "ack_set",
},
AcknowledgementHistoryId: acknowledgementHistoryId,
SetTime: setTime,
ClearTime: clearTime,
}
h1.EventTime.History = h1
allHistoryAck = append(allHistoryAck, h1)
if !clearTime.Time().IsZero() {
h2 := &history.HistoryAck{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{
Id: hashAny([]any{env, "ack_clear", name, setTs}),
},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "ack_clear",
},
AcknowledgementHistoryId: acknowledgementHistoryId,
SetTime: setTime,
ClearTime: clearTime,
}
h2.EventTime.History = h2
allHistoryAck = append(allHistoryAck, h2)
}
}
}
stages = []icingaDbOutputStage{
{insert: commentHistory},
{insert: acknowledgementHistory},
{insert: allHistoryComment},
{insert: allHistoryAck},
}
return
}
type downtimeRow = struct {
DowntimehistoryId uint64
EntryTime int64
AuthorName string
CommentData string
IsFixed uint8
Duration int64
ScheduledStartTime sql.NullInt64
ScheduledEndTime int64
WasStarted uint8
ActualStartTime int64
ActualStartTimeUsec uint32
ActualEndTime int64
ActualEndTimeUsec uint32
WasCancelled uint8
TriggerTime int64
Name string
ObjecttypeId uint8
Name1 string
Name2 string
TriggeredBy string
}
func convertDowntimeRows(
env string, envId icingadbTypes.Binary,
_ func(interface{}, string, ...interface{}), _ *sqlx.Tx, idoRows []downtimeRow,
) (stages []icingaDbOutputStage, checkpoint any) {
var downtimeHistory, allHistory, sla []contracts.Entity
for _, row := range idoRows {
checkpoint = row.DowntimehistoryId
if !row.ScheduledStartTime.Valid || row.WasStarted == 0 {
continue
}
id := calcObjectId(env, row.Name)
typ := objectTypes[row.ObjecttypeId]
hostId := calcObjectId(env, row.Name1)
serviceId := calcServiceId(env, row.Name1, row.Name2)
scheduledStart := convertTime(row.ScheduledStartTime.Int64, 0)
scheduledEnd := convertTime(row.ScheduledEndTime, 0)
triggerTime := convertTime(row.TriggerTime, 0)
actualStart := convertTime(row.ActualStartTime, row.ActualStartTimeUsec)
actualEnd := convertTime(row.ActualEndTime, row.ActualEndTimeUsec)
var startTime, endTime, cancelTime icingadbTypes.UnixMilli
if scheduledEnd.Time().IsZero() {
scheduledEnd = icingadbTypes.UnixMilli(scheduledStart.Time().Add(time.Duration(row.Duration) * time.Second))
}
if actualStart.Time().IsZero() {
startTime = scheduledStart
} else {
startTime = actualStart
}
if actualEnd.Time().IsZero() {
endTime = scheduledEnd
} else {
endTime = actualEnd
}
if triggerTime.Time().IsZero() {
triggerTime = startTime
}
if row.WasCancelled != 0 {
cancelTime = actualEnd
}
downtimeHistory = append(downtimeHistory, &history.DowntimeHistory{
DowntimeHistoryEntity: history.DowntimeHistoryEntity{DowntimeId: id},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
DowntimeHistoryUpserter: history.DowntimeHistoryUpserter{
HasBeenCancelled: icingadbTypes.Bool{Bool: row.WasCancelled != 0, Valid: true},
CancelTime: cancelTime,
},
TriggeredById: calcObjectId(env, row.TriggeredBy),
EntryTime: convertTime(row.EntryTime, 0),
Author: row.AuthorName,
Comment: row.CommentData,
IsFlexible: icingadbTypes.Bool{Bool: row.IsFixed == 0, Valid: true},
FlexibleDuration: uint64(row.Duration) * 1000,
ScheduledStartTime: scheduledStart,
ScheduledEndTime: scheduledEnd,
StartTime: startTime,
EndTime: endTime,
TriggerTime: triggerTime,
})
h1 := &history.HistoryDowntime{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{Id: hashAny([]string{env, "downtime_start", row.Name})},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "downtime_start",
},
DowntimeHistoryId: id,
StartTime: startTime,
}
h1.EventTime.History = h1
allHistory = append(allHistory, h1)
if !actualEnd.Time().IsZero() { // remove
h2 := &history.HistoryDowntime{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{Id: hashAny([]string{env, "downtime_end", row.Name})},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "downtime_end",
},
DowntimeHistoryId: id,
StartTime: startTime,
CancelTime: cancelTime,
EndTime: endTime,
HasBeenCancelled: icingadbTypes.Bool{Bool: row.WasCancelled != 0, Valid: true},
}
h2.EventTime.History = h2
allHistory = append(allHistory, h2)
}
s := &history.SlaHistoryDowntime{
DowntimeHistoryEntity: history.DowntimeHistoryEntity{DowntimeId: id},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
DowntimeStart: startTime,
HasBeenCancelled: icingadbTypes.Bool{Bool: row.WasCancelled != 0, Valid: true},
CancelTime: cancelTime,
EndTime: endTime,
}
s.DowntimeEnd.History = s
sla = append(sla, s)
}
stages = []icingaDbOutputStage{
{insert: downtimeHistory},
{insert: allHistory},
{insert: sla},
}
return
}
type flappingRow = struct {
FlappinghistoryId uint64
EventTime sql.NullInt64
EventTimeUsec uint32
EventType uint16
PercentStateChange sql.NullFloat64
LowThreshold float64
HighThreshold float64
ObjecttypeId uint8
Name1 string
Name2 string
}
func convertFlappingRows(
env string, envId icingadbTypes.Binary,
selectCache func(dest interface{}, query string, args ...interface{}), _ *sqlx.Tx, idoRows []flappingRow,
) (stages []icingaDbOutputStage, checkpoint any) {
if len(idoRows) < 1 {
return
}
var cached []struct {
HistoryId uint64
EventTime int64
EventTimeUsec uint32
}
selectCache(
&cached, "SELECT history_id, event_time, event_time_usec FROM end_start_time WHERE history_id BETWEEN ? AND ?",
idoRows[0].FlappinghistoryId, idoRows[len(idoRows)-1].FlappinghistoryId,
)
// Needed for start time (see below).
cachedById := make(map[uint64]icingadbTypes.UnixMilli, len(cached))
for _, c := range cached {
cachedById[c.HistoryId] = convertTime(c.EventTime, c.EventTimeUsec)
}
var flappingHistory, flappingHistoryUpserts, allHistory []contracts.Entity
for _, row := range idoRows {
checkpoint = row.FlappinghistoryId
if !row.EventTime.Valid {
continue
}
ts := convertTime(row.EventTime.Int64, row.EventTimeUsec)
// Needed for ID (see below).
var start icingadbTypes.UnixMilli
if row.EventType == 1001 { // end
var ok bool
start, ok = cachedById[row.FlappinghistoryId]
if !ok {
continue
}
} else {
start = ts
}
name := row.Name1
if row.Name2 != "" {
name += "!" + row.Name2
}
typ := objectTypes[row.ObjecttypeId]
hostId := calcObjectId(env, row.Name1)
serviceId := calcServiceId(env, row.Name1, row.Name2)
startTime := float64(start.Time().UnixMilli())
flappingHistoryId := hashAny([]interface{}{env, name, startTime})
if row.EventType == 1001 { // end
// The start counterpart should already have been inserted.
flappingHistoryUpserts = append(flappingHistoryUpserts, &history.FlappingHistory{
EntityWithoutChecksum: v1.EntityWithoutChecksum{
IdMeta: v1.IdMeta{Id: flappingHistoryId},
},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
FlappingHistoryUpserter: history.FlappingHistoryUpserter{
EndTime: ts,
PercentStateChangeEnd: icingadbTypes.Float{NullFloat64: row.PercentStateChange},
FlappingThresholdLow: float32(row.LowThreshold),
FlappingThresholdHigh: float32(row.HighThreshold),
},
StartTime: start,
})
h := &history.HistoryFlapping{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{
Id: hashAny([]interface{}{env, "flapping_end", name, startTime}),
},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "flapping_end",
},
FlappingHistoryId: flappingHistoryId,
StartTime: start,
EndTime: ts,
}
h.EventTime.History = h
allHistory = append(allHistory, h)
} else {
flappingHistory = append(flappingHistory, &history.FlappingHistory{
EntityWithoutChecksum: v1.EntityWithoutChecksum{
IdMeta: v1.IdMeta{Id: flappingHistoryId},
},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
FlappingHistoryUpserter: history.FlappingHistoryUpserter{
FlappingThresholdLow: float32(row.LowThreshold),
FlappingThresholdHigh: float32(row.HighThreshold),
},
StartTime: start,
PercentStateChangeStart: icingadbTypes.Float{NullFloat64: row.PercentStateChange},
})
h := &history.HistoryFlapping{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{
Id: hashAny([]interface{}{env, "flapping_start", name, startTime}),
},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "flapping_start",
},
FlappingHistoryId: flappingHistoryId,
StartTime: start,
}
h.EventTime.History = h
allHistory = append(allHistory, h)
}
}
stages = []icingaDbOutputStage{
{insert: flappingHistory},
{upsert: flappingHistoryUpserts},
{insert: allHistory},
}
return
}
type notificationRow = struct {
NotificationId uint64
NotificationReason uint8
EndTime sql.NullInt64
EndTimeUsec uint32
State uint8
Output string
LongOutput sql.NullString
ContactsNotified uint16
ObjecttypeId uint8
Name1 string
Name2 string
}
func convertNotificationRows(
env string, envId icingadbTypes.Binary,
selectCache func(dest interface{}, query string, args ...interface{}), ido *sqlx.Tx, idoRows []notificationRow,
) (stages []icingaDbOutputStage, checkpoint any) {
if len(idoRows) < 1 {
return
}
var cached []struct {
HistoryId uint64
PreviousHardState uint8
}
selectCache(
&cached, "SELECT history_id, previous_hard_state FROM previous_hard_state WHERE history_id BETWEEN ? AND ?",
idoRows[0].NotificationId, idoRows[len(idoRows)-1].NotificationId,
)
cachedById := make(map[uint64]uint8, len(cached))
for _, c := range cached {
cachedById[c.HistoryId] = c.PreviousHardState
}
var contacts []struct {
NotificationId uint64
Name1 string
}
{
var query = ido.Rebind(
"SELECT c.notification_id, o.name1 FROM icinga_contactnotifications c " +
"INNER JOIN icinga_objects o ON o.object_id=c.contact_object_id WHERE c.notification_id BETWEEN ? AND ?",
)
err := ido.Select(&contacts, query, idoRows[0].NotificationId, idoRows[len(idoRows)-1].NotificationId)
if err != nil {
log.With("query", query).Fatalf("%+v", errors.Wrap(err, "can't perform query"))
}
}
contactsById := map[uint64]map[string]struct{}{}
for _, contact := range contacts {
perId, ok := contactsById[contact.NotificationId]
if !ok {
perId = map[string]struct{}{}
contactsById[contact.NotificationId] = perId
}
perId[contact.Name1] = struct{}{}
}
var notificationHistory, userNotificationHistory, allHistory []contracts.Entity
for _, row := range idoRows {
checkpoint = row.NotificationId
if !row.EndTime.Valid {
continue
}
previousHardState, ok := cachedById[row.NotificationId]
if !ok {
continue
}
// The IDO tracks only sent notifications, but not notification config objects, nor even their names.
// We have to improvise. By the way we avoid unwanted collisions between synced and migrated data via "ID"
// instead of "HOST[!SERVICE]!NOTIFICATION" (ok as this name won't be parsed, but only hashed) and between
// migrated data itself via the history ID as object name, i.e. one "virtual object" per sent notification.
name := strconv.FormatUint(row.NotificationId, 10)
nt := convertNotificationType(row.NotificationReason, row.State)
ntEnum, err := nt.Value()
if err != nil {
continue
}
ts := convertTime(row.EndTime.Int64, row.EndTimeUsec)
tsMilli := float64(ts.Time().UnixMilli())
notificationHistoryId := hashAny([]interface{}{env, name, ntEnum, tsMilli})
id := hashAny([]interface{}{env, "notification", name, ntEnum, tsMilli})
typ := objectTypes[row.ObjecttypeId]
hostId := calcObjectId(env, row.Name1)
serviceId := calcServiceId(env, row.Name1, row.Name2)
text := row.Output
if row.LongOutput.Valid {
text += "\n\n" + row.LongOutput.String
}
notificationHistory = append(notificationHistory, &history.NotificationHistory{
HistoryTableEntity: history.HistoryTableEntity{
EntityWithoutChecksum: v1.EntityWithoutChecksum{
IdMeta: v1.IdMeta{Id: notificationHistoryId},
},
},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
NotificationId: calcObjectId(env, name),
Type: nt,
SendTime: ts,
State: row.State,
PreviousHardState: previousHardState,
Text: icingadbTypes.MakeString(text),
UsersNotified: row.ContactsNotified,
})
allHistory = append(allHistory, &history.HistoryNotification{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{Id: id},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "notification",
},
NotificationHistoryId: notificationHistoryId,
EventTime: ts,
})
for contact := range contactsById[row.NotificationId] {
userId := calcObjectId(env, contact)
userNotificationHistory = append(userNotificationHistory, &history.UserNotificationHistory{
EntityWithoutChecksum: v1.EntityWithoutChecksum{
IdMeta: v1.IdMeta{
Id: utils.Checksum(append(append([]byte(nil), notificationHistoryId...), userId...)),
},
},
EnvironmentMeta: v1.EnvironmentMeta{EnvironmentId: envId},
NotificationHistoryId: notificationHistoryId,
UserId: userId,
})
}
}
stages = []icingaDbOutputStage{
{insert: notificationHistory},
{insert: userNotificationHistory},
{insert: allHistory},
}
return
}
// convertNotificationType maps IDO values[1] to Icinga DB ones[2].
//
// [1]: https://github.com/Icinga/icinga2/blob/32c7f7730db154ba0dff5856a8985d125791c/lib/db_ido/dbevents.cpp#L1507-L1524
// [2]: https://github.com/Icinga/icingadb/blob/8f31ac143875498797725adb9bfacf3d4/pkg/types/notification_type.go#L53-L61
func convertNotificationType(notificationReason, state uint8) icingadbTypes.NotificationType {
switch notificationReason {
case 0: // state
if state == 0 {
return 64 // recovery
} else {
return 32 // problem
}
case 1: // acknowledgement
return 16
case 2: // flapping start
return 128
case 3: // flapping end
return 256
case 5: // downtime start
return 1
case 6: // downtime end
return 2
case 7: // downtime removed
return 4
case 8: // custom
return 8
default: // bad notification type
return 0
}
}
type stateRow = struct {
StatehistoryId uint64
StateTime sql.NullInt64
StateTimeUsec uint32
State uint8
StateType uint8
CurrentCheckAttempt uint32
MaxCheckAttempts uint32
LastState uint8
LastHardState uint8
Output sql.NullString
LongOutput sql.NullString
CheckSource sql.NullString
ObjecttypeId uint8
Name1 string
Name2 string
}
func convertStateRows(
env string, envId icingadbTypes.Binary,
selectCache func(dest interface{}, query string, args ...interface{}), _ *sqlx.Tx, idoRows []stateRow,
) (stages []icingaDbOutputStage, checkpoint any) {
if len(idoRows) < 1 {
return
}
var cached []struct {
HistoryId uint64
PreviousHardState uint8
}
selectCache(
&cached, "SELECT history_id, previous_hard_state FROM previous_hard_state WHERE history_id BETWEEN ? AND ?",
idoRows[0].StatehistoryId, idoRows[len(idoRows)-1].StatehistoryId,
)
cachedById := make(map[uint64]uint8, len(cached))
for _, c := range cached {
cachedById[c.HistoryId] = c.PreviousHardState
}
var stateHistory, allHistory, sla []contracts.Entity
for _, row := range idoRows {
checkpoint = row.StatehistoryId
if !row.StateTime.Valid {
continue
}
previousHardState, ok := cachedById[row.StatehistoryId]
if !ok {
continue
}
name := strings.Join([]string{row.Name1, row.Name2}, "!")
ts := convertTime(row.StateTime.Int64, row.StateTimeUsec)
tsMilli := float64(ts.Time().UnixMilli())
stateHistoryId := hashAny([]interface{}{env, name, tsMilli})
id := hashAny([]interface{}{env, "state_change", name, tsMilli})
typ := objectTypes[row.ObjecttypeId]
hostId := calcObjectId(env, row.Name1)
serviceId := calcServiceId(env, row.Name1, row.Name2)
stateHistory = append(stateHistory, &history.StateHistory{
HistoryTableEntity: history.HistoryTableEntity{
EntityWithoutChecksum: v1.EntityWithoutChecksum{
IdMeta: v1.IdMeta{Id: stateHistoryId},
},
},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
EventTime: ts,
StateType: icingadbTypes.StateType(row.StateType),
SoftState: row.State,
HardState: row.LastHardState,
PreviousSoftState: row.LastState,
PreviousHardState: previousHardState,
CheckAttempt: row.CurrentCheckAttempt,
Output: icingadbTypes.String{NullString: row.Output},
LongOutput: icingadbTypes.String{NullString: row.LongOutput},
MaxCheckAttempts: row.MaxCheckAttempts,
CheckSource: icingadbTypes.String{NullString: row.CheckSource},
})
allHistory = append(allHistory, &history.HistoryState{
HistoryMeta: history.HistoryMeta{
HistoryEntity: history.HistoryEntity{Id: id},
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
EventType: "state_change",
},
StateHistoryId: stateHistoryId,
EventTime: ts,
})
if icingadbTypes.StateType(row.StateType) == icingadbTypes.StateHard {
// only hard state changes are relevant for SLA history, discard all others
sla = append(sla, &history.SlaHistoryState{
HistoryTableEntity: history.HistoryTableEntity{
EntityWithoutChecksum: v1.EntityWithoutChecksum{
IdMeta: v1.IdMeta{Id: stateHistoryId},
},
},
HistoryTableMeta: history.HistoryTableMeta{
EnvironmentId: envId,
ObjectType: typ,
HostId: hostId,
ServiceId: serviceId,
},
EventTime: ts,
StateType: icingadbTypes.StateType(row.StateType),
HardState: row.LastHardState,
PreviousHardState: previousHardState,
})
}
}
stages = []icingaDbOutputStage{
{insert: stateHistory},
{insert: allHistory},
{insert: sla},
}
return
}