Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Organisaing metric storage in Graphite?

Tags:

graphite

How can I get my metrics to be saved at the root level. Currently been saved under the stats hierarchy (see graphite) Want to save under the top level(Graphite)

like image 732
Noel Avatar asked Jan 13 '23 19:01

Noel


1 Answers

Add these settings to your statsd configuration file (possibly something like /etc/statsd.js)

{
  ...(unrelated options)...
, graphite: {
    legacyNamespace: false
  , globalPrefix:  ""
  , prefixCounter: ""
  , prefixTimer:   ""
  , prefixGauge:   ""
  , prefixSet:     ""
  }
}
like image 84
Prathan Thananart Avatar answered Jan 28 '23 12:01

Prathan Thananart