diff --git a/.gitignore b/.gitignore index c745919..9ee11cc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ bin build + +.idea/ diff --git a/src/main/java/com/timgroup/statsd/NonBlockingStatsDClient.java b/src/main/java/com/timgroup/statsd/NonBlockingStatsDClient.java index 6d75a9c..a6d0c19 100644 --- a/src/main/java/com/timgroup/statsd/NonBlockingStatsDClient.java +++ b/src/main/java/com/timgroup/statsd/NonBlockingStatsDClient.java @@ -6,12 +6,12 @@ /** * A simple StatsD client implementation facilitating metrics recording. - * + * *

Upon instantiation, this client will establish a socket connection to a StatsD instance * running on the specified host and port. Metrics are then sent over this connection as they are * received by the client. *

- * + * *

Three key methods are provided for the submission of data-points for the application under * scrutiny: *