Has any one managed to use the groupByNode with the current find method?
Does anyone know if something like this would be possible?
// This is just an example
findString = 'groupByNode(carbon.agents.*.{creates,metricsReceived},2,"sumSeries")'
graphite.find(findString, function(error, results) {
var metrics = results.sort().map(function(i) {
return graphite.metric(i);
});
});
Hello,
Has any one managed to use the groupByNode with the current find method? Does anyone know if something like this would be possible?