You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gauge data are associated with timestamp in second if several updates occurred within the same timestamp graphite will interpret the first update as the last one because the list is reversed when building gauges report. It could be solved by using lists:foldr/3 instead of lists:foldl/3 when building the Fragments in estatsd_server:do_report_gauges/1.
The text was updated successfully, but these errors were encountered:
estatsd/src/estatsd_server.erl
Line 209 in 2643d30
Gauge data are associated with timestamp in second if several updates occurred within the same timestamp graphite will interpret the first update as the last one because the list is reversed when building gauges report. It could be solved by using
lists:foldr/3
instead oflists:foldl/3
when building theFragments
inestatsd_server:do_report_gauges/1
.The text was updated successfully, but these errors were encountered: