Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eventstore: use dynamic stream #587

Merged
merged 19 commits into from
Nov 22, 2024
3 changes: 0 additions & 3 deletions downstreamadapter/eventcollector/event_collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,6 @@ func (c *EventCollector) updateResolvedTsMetric() {
if minResolvedTs > 0 {
phyResolvedTs := oracle.ExtractPhysical(minResolvedTs)
lagMs := float64(oracle.GetPhysical(time.Now())-phyResolvedTs) / 1e3
log.Info("EventCollector resolved ts lag",
zap.Uint64("resolvedTs", minResolvedTs),
zap.Float64("lagMs", lagMs))
metrics.EventCollectorResolvedTsLagGauge.Set(lagMs)
}
}
Expand Down
Loading
Loading