Skip to content

Commit 406ad1b

Browse files
authored
Fix intents-operator sending STARTED telemetry with 0-count, which is inconsistent with other operators (#556)
1 parent f9492af commit 406ad1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/operator/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ func main() {
552552
}
553553

554554
logrus.Info("starting manager")
555-
telemetrysender.SendIntentOperator(telemetriesgql.EventTypeStarted, 0)
555+
telemetrysender.SendIntentOperator(telemetriesgql.EventTypeStarted, 1)
556556
telemetrysender.IntentsOperatorRunActiveReporter(signalHandlerCtx)
557557

558558
if err := mgr.Start(signalHandlerCtx); err != nil {

0 commit comments

Comments
 (0)