Comparing version 2.1.1 to 2.1.2
@@ -5,6 +5,10 @@ CHANGELOG | ||
## HEAD (Unreleased) | ||
* none | ||
none | ||
-------------------- | ||
## 2.1.2 (2015-12-9) | ||
* @bdeitte Even more doc updates | ||
* @mmoulton Fix multiple tags with Telegraf | ||
## 2.1.1 (2015-12-9) | ||
@@ -11,0 +15,0 @@ * @bdeitte Doc updates |
@@ -300,3 +300,3 @@ var dgram = require('dgram'), | ||
message = message.split(':'); | ||
message = message[0] + ',' + mergedTags.join(',').replace(':', '=') + ':' + message.slice(1).join(':'); | ||
message = message[0] + ',' + mergedTags.join(',').replace(/:/g, '=') + ':' + message.slice(1).join(':'); | ||
} else { | ||
@@ -303,0 +303,0 @@ message += '|#' + mergedTags.join(','); |
{ | ||
"name": "hot-shots", | ||
"description": "Node.js client for statsd and DogStatsD", | ||
"version": "2.1.1", | ||
"description": "Node.js client for StatsD, DogStatsD, and Telegraf", | ||
"version": "2.1.2", | ||
"author": "Steve Ivy", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
@@ -5,3 +5,3 @@ # hot-shots | ||
This project is a fork off of [node-statsd](https://github.com/sivy/node-statsd) | ||
This project is a fork off of [node-statsd](https://github.com/sivy/node-statsd). This project includes all changes in node-statsd, all open PRs to node-statsd when possible, and some additional goodies (like Telegraf support). | ||
@@ -38,3 +38,3 @@ [![Build Status](https://secure.travis-ci.org/brightcove/hot-shots.png?branch=master)](http://travis-ci.org/brightcove/hot-shots) | ||
* `tags`: The Array of tags to add to metrics `default: []` | ||
* `callback`: The callback to execute once the metric has been sent | ||
* `callback`: The callback to execute once the metric has been sent or buffered | ||
@@ -41,0 +41,0 @@ If an array is specified as the `name` parameter each item in that array will be sent along with the specified value. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28707