Feed carbon/graphite from a remote host -
i have installed graphite on dedicated ubuntu server , correctly collects own system performance data e.g. cpu usage
, load_avg
, send carbon can see metric data on graphite web.
the issue want send metric data multiple hosts carbon/graphite server.
i used diamond send data server holding graphite/carbon , created naming scheme graphite can't see data on graphite-web.
any additional requirements feed these data carbon , visualized graphite-web?
here carbon listening on port 2003 interfaces
lnxg33k@ubuntu:~$ sudo netstat -nltp | grep python tcp 0 0 0.0.0.0:2003 0.0.0.0:* listen 2114/python tcp 0 0 0.0.0.0:2004 0.0.0.0:* listen 2114/python tcp 0 0 0.0.0.0:7002 0.0.0.0:* listen 2114/python
to test graphite-web/carbon configuration enough use bash commands, e.g.:
echo "local.random.diceroll $(((random%6)+1)) `date +%s`" | nc localhost 2003;
(replace localhost graphite hostname if you're not running command same server)
if use whisper storage should see database files in graphite_storage_dir
dir, e.g.:
/opt/graphite/storage/whisper/
it configured in $graphite_root/conf/carbon.conf
.
Comments
Post a Comment