Shell
How to send metrics using Shell
Sending a metric via TCP
echo "YOUR-API-KEY.foo 1.2" | nc carbon.hostedgraphite.com 2003Sending a metric via UDP
echo "YOUR-API-KEY.foo 1.2" | nc -uw0 carbon.hostedgraphite.com 2003Sending a metric via TCP over TLS
Sending a metric via HTTPs
Sending a metric via StatsD
Sending multiple metrics with Curl
Last updated