You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The node-monitor stat function records stats to a backend such as graphite.
To get this into monitor-dashboard
1 - Install graphite
2 - Configure node-monitor stats to send the stat to graphite
3 - Verify the stat is being sent to graphite using the graphite UI
4 - Build a graphite viewing component for monitor-dasboard
When you get to step #4, paste a screen shot of your graphite graph and I can show you how to hook that graph into a monitor-dashboard component.
Thanks lorewest for your replay , but i can't find any documentation about how to Configure node-monitor stats to send the stat to graphite?
do you have any documentation ?
Documentation on the stats module is in the node monitor project. Getting statsd running is well documented in the statsd project. Putting it all together is an exercise for the do-it-yourselfer.
i wrote the following line of codes to calculate statistics for function invocation
var stat = require('monitor').getStatLogger('person');
function getUserUUIDByEmail(req, res, opts){
stat.increment('person.byEmail');
}
i need help to view 'person.byEmail' property in the dashboard
The text was updated successfully, but these errors were encountered: