0

I am trying graphite for the first time. I want to understand why the aggregated graph in graphite is showing 1/60th of the value through carbon and 1/10th of the value I enter through statsd. How do I solve this if it can be done? I am sending this data: echo "try:1|c\n" | nc -u localhost 8125" and then adding the functions sum and integral in the UI of graphite. Please help.

Alex Kalicki
  • 1,533
  • 9
  • 20
avni goyal
  • 171
  • 1
  • 5

1 Answers1

2

The 1/10th value problem is solved by stats_counts bucket.Refer this : Tracking metrics using StatsD (via etsy) and Graphite, graphite graph doesn't seem to be graphing all the data The other problem of data value not being accurate is because statsd was sending data at 10s. Just change flushInterval of statsd to 60s and it works fine.

Community
  • 1
  • 1
avni goyal
  • 171
  • 1
  • 5