Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Can i know how to use statsd plugin in collectd. I commented out LoadPlugin statsd,
and how should I configure this in Plugin statsd section? <pre> < Plugin statsd> Host “::” Port “8125” DeleteCounters false DeleteTimers false DeleteGauges false DeleteSets false TimerPercentile 90.0 < /Plugin> </pre> for the collectD , “graphite_host”.
I tried using the default one, but I didn’t get anything on collectd section under graphite.
Thanks
@snmalleswararao.chinta: There’s another article that shows you how to get statsD up and running:
Thanks Justin for the Graphite series! Helped me a lot.
One question; I have collectd logging to Graphite, however it looks like the graph types are incorrect. The values keep adding up, instead of rounding per flush interval.
For example look at this; it’s the same CPU idle graph as you used in the tutorial. Any thoughts on what I might have done wrong?
Thanks!
Either protocol has to be changed to tcp in write_graphite plugin, or ENABLE_UDP_LISTENER should be set to True in /etc/carbon/carbon.conf. I missed it since it was not highlighted in red and had to read through several log files, before I could get it working.
@jellingwood I configured graphite and it is working now I want to run searching program in c in graphite .What is the procedure of running a c program and to measure the memory usuage
This collection of tutorials is fantastic - statsd and collectd are fairly complex applications to setup even for an experienced developer.
I do have one concern - setting the apache server-status page to be publically visible could be a large security risk. I think adding a line mentioning that in a production environment a configuration like:
<Location "/server-status">
SetHandler server-status
Require local
</Location>
may be a better decision would be helpful for the readers who may not realize they are exposing their servers.
In order for the collectd instance to connect to graphite carbon ( from article 2 in this series ), within carbon.conf, the setting, ENABLE_UDP_LISTENER must be set to True. If not, the stats do not show up in the graphite UI. If one looks @ /var/log/syslog, one will see the message: collectd[n]: write_graphite plugin: send to localhost:2003 (udp) failed with status -1 (Connection refused). Also, when running netstat -ae | grep 2003one will not see a listener.