Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Created February 26, 2015 12:27
Show Gist options
  • Save lukaszkorecki/c736874c6e442b2fa6e2 to your computer and use it in GitHub Desktop.
Save lukaszkorecki/c736874c6e442b2fa6e2 to your computer and use it in GitHub Desktop.
# from https://github.com/etsy/statsd/issues/100#issuecomment-6355430
exec 3<> /dev/udp/statsd_ip_address/8125
# send data:
echo "whatever|whatever" >&3
# close udp socket:
exec 3<&-
exec 3>&-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment