Skip to content

Commit

Permalink
fix: dedup duration stat name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidddddarth committed Oct 29, 2024
1 parent 93ee8db commit 5ff3872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processor/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -1816,7 +1816,7 @@ func (proc *Handle) processJobsForDestV2(partition string, subJobs subJob) (*tra
return nil, err
}
}
proc.statsFactory.NewStat("processor.event_pickup_lag_seconds", stats.TimerType).Since(dedupStart)
proc.statsFactory.NewTaggedStat("processor.dedup_duration_seconds", stats.TimerType, stats.Tags{"process": "V2"}).Since(dedupStart)
for _, event := range jobsWithMetaData {
sourceId := event.eventParams.SourceId
if event.eventParams.DestinationID != "" {
Expand Down

0 comments on commit 5ff3872

Please sign in to comment.