I have a question regarding Graphite, which I'm using with statsD in node.js.
I have a server that I'm, going to run several instances of, and I would like to aggregate statistics like the following among all instances:
- Mean response time
- Number of active clients
Right now each instance will get its own folder, as it starts with its own graphs, because the code is:
stats.gauge('requestsPerSecond', reqCounter);
Could I do something like stats('/myServ/aggregates', reqCounter);
as well so that each instance will send its data to the same graph in graphite besides keeping track of its own graphs using stats.gauge('requestsPerSecond', reqCounter);
?