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
# this is my first pattern
[statsd]
pattern = ^stats\..*
retentions = 10s:6h,1m:30d,1h:5y
compressed = false
# many other patterns
storage-aggregation.conf
# this is my first pattern
[stats.counters.counts]
pattern = ^stats\.counters\..*\.count$
xFilesFactor = 0.1
aggregationMethod = sum
# many other patterns
Then I run this "backfilling" request :
for ((i=1; i<=6000; i+=1)) ; do echo $i ; echo "stats.counters.backfill.count $(((42+$i))) date -d "now - $i seconds" +%s" | nc -q 0 localhost 2003; done;
so this fills up about 2hours of data, from now til now-2hours
and the "head" of my data, which should be summed, because render has decided to shrink the number of points (step is 60seconds) is now not summed but averaged.
Hi people, I've the following config :
storage-schemas.conf
storage-aggregation.conf
Then I run this "backfilling" request :
for ((i=1; i<=6000; i+=1)) ; do echo $i ; echo "stats.counters.backfill.count $(((42+$i)))
date -d "now - $i seconds" +%s" | nc -q 0 localhost 2003; done;
so this fills up about 2hours of data, from now til now-2hours
When I request the data from go-carbon :
http://localhost:8080/render/?format=json&from=1684155422&target=stats.counters.backfill.count&until=1684164022
I do get the right stuff out
now I then back fill on the second "data range" of my storage configuration
for ((i=360; i<=720; i+=10)) ; do echo $i ; echo "stats.counters.backfill.count $(((360+$i)))
date -d "now - $i minutes" +%s" | nc -q 0 localhost 2003; done;
Then I ask for a render spanning both ranges
http://localhost:8080/render/?format=json&from=1684135422&target=stats.counters.backfill.count&until=1684164022
and the "head" of my data, which should be summed, because render has decided to shrink the number of points (step is 60seconds) is now not summed but averaged.
Am I misconfiguring something, or is this a bug ? Given my config, I was expecting something along the lines of
I'm running go-carbon 0.17.1
The text was updated successfully, but these errors were encountered: