StatsD class should use non-blocking UDP connections
The implementation of our StatsD
class which sends statistics via a UDP socket was being opened by default in blocking mode, which forces client code to wait. This release corrects this behaviour and ensures the socket is opened in non-blocking mode.