My task is ran on multiple machines, and for each machine, I set up the same metric as following:
myCounter = Counter
.build()
.name("my_counter")
.help("Dummy counter")
.register(registry)
pushGateway.pushAdd(registry, "myJobName")
And I don't assign label to it.
My question is, with the current way of using counter metric, will the collected value on pushgateway become incorrect, as it only retains the last pushed value ?