Skip to content

Commit 10d3b29

Browse files
committed
Merge pull request #14 from dbader/prepare-0.3.0
Prepare 0.3.0 for release
2 parents cd0a0c6 + 6774f84 commit 10d3b29

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
[![Build Status][travis-image]][travis-url]
66
[![Downloads Stats][npm-downloads]][npm-url]
77

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.
119

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.
1511

1612
## Installation
1713

@@ -43,6 +39,10 @@ Run it:
4339
DATADOG_API_KEY=YOUR_KEY DEBUG=metrics node example_app.js
4440
```
4541

42+
## Tutorial
43+
44+
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+
4646

4747
## Usage
4848

@@ -202,6 +202,12 @@ npm test
202202

203203
## Release History
204204

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!)
209+
* Bump dependencies to latest
210+
* Update docs
205211
* 0.2.1
206212
* Update docs (module code remains unchanged)
207213
* 0.2.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datadog-metrics",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "Buffered metrics reporting via the DataDog HTTP API",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)