You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-6Lines changed: 12 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,9 @@
5
5
[![Build Status][travis-image]][travis-url]
6
6
[![Downloads Stats][npm-downloads]][npm-url]
7
7
8
-
Datadog-metrics lets you collect application metrics through DataDog's HTTP API.
9
-
Using the HTTP API has the benefit that you **don't need to install the DataDog
10
-
Agent (StatsD)**. Just get an API key, install the module and you're ready to go.
8
+
Datadog-metrics lets you collect application metrics through DataDog's HTTP API. Using the HTTP API has the benefit that you **don't need to install the DataDog Agent (StatsD)**. Just get an API key, install the module and you're ready to go.
11
9
12
-
The downside of using the HTTP API is that it can negatively affect your app's
13
-
performance. Datadog-metrics **solves this issue by buffering metrics locally
14
-
and periodically flushing them** to DataDog.
10
+
The downside of using the HTTP API is that it can negatively affect your app's performance. Datadog-metrics **solves this issue by buffering metrics locally and periodically flushing them** to DataDog.
There's also a longer [tutorial](https://dbader.org/blog/monitoring-your-nodejs-app-with-datadog) that walks you through setting up a monitoring dashboard on DataDog using datadog-metrics.
45
+
46
46
47
47
## Usage
48
48
@@ -202,6 +202,12 @@ npm test
202
202
203
203
## Release History
204
204
205
+
* 0.3.0
206
+
* FIX: Don't overwrite metrics with the same key but different tags when aggregating them (Thanks @akrylysov and @RavivIsraeli!)
207
+
* ADD: Add success/error callbacks to `metrics.flush()` (Thanks @akrylysov!)
208
+
* ADD: Allow DataDog APP key to be configured (Thanks @gert-fresh!)
0 commit comments