We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe3896 commit c5cc8e3Copy full SHA for c5cc8e3
firebase-perf/src/main/java/com/google/firebase/perf/session/gauges/GaugeCounter.kt
@@ -35,6 +35,9 @@ object GaugeCounter {
35
val metricsCount = counter.incrementAndGet()
36
37
if (metricsCount >= MAX_METRIC_COUNT) {
38
+ // TODO(b/394127311): There can be rare conditions where there's an attempt to log metrics
39
+ // even when it's currently logging them. While this is a no-op, it might be worth
40
+ // exploring optimizing it further to prevent additional calls to [GaugeManager].
41
gaugeManager.logGaugeMetrics()
42
}
43
0 commit comments