Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion cmd/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,12 @@ func buildReportData(filtered []activitylog.Entry, windowLabel string) reportDat
for i := range filtered {
e := &filtered[i]
// Only count EventRun entries for compaction/delivery stats.
if e.EventType != activitylog.EventRun {
// Backward compatibility: old entries without event_type are EventRun.
eventType := e.EventType
if eventType == "" {
eventType = activitylog.EventRun
}
if eventType != activitylog.EventRun {
continue
}
runCount++
Expand Down