Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Node.js, but reading the statsd source, it looks to me that if for whatever reason the Graphite backend becomes inaccessible, that statsd just spills its collected stats on the floor, rather than retaining them in a growing cache of stats. Is this correct?

(I'm not worried about discarding stats, but about an ever-growing heap of a statsd that can't contact Graphite. So, if my read of the code is correct, I'm happy!)

share|improve this question
From my understanding this is correct ( github.com/etsy/statsd/blob/master/backends/graphite.js#L140) .... Another thing to note is that statsD uses UDP, which is Unreliable ( en.wikipedia.org/wiki/…) – dannyla Sep 8 '12 at 14:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.