We are using OpenTelemetry to collect custom metrics into Elastic.
We have a simple counter metrics that on each of our endpoint call, increase +1. (basically we want to count how many times an endpoint called in X period of time)
Until here everything looks good, now we have many pods of the same service that may increase this counter for our endpoints. So each pods has its own value for this counter. Also each time a pod restart, or when a new pods created this counter reset to 0 for that pod . (This is happen by OpenElemetry collector by design I assume, and we don't want to reset it to 0 ).
Any suggestion how we can visualize or measure this counter though elastic visualization? As an example we want to want to know in the beginning and end of a month, what was the value for that metric? ( Considering various pods had different values and various times the value reset to 0 )