Skip to content
This repository has been archived by the owner on Jul 23, 2021. It is now read-only.

Commit

Permalink
fix bad url in example
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Ivy committed Feb 25, 2011
1 parent 4bd52ef commit c62da3a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -7,12 +7,13 @@ This client will let you fire stats at your StatsD server from a node.js applica
% npm install node-statsd
% node
> require('statsd').StatsD
> c = new StatsD('example.org',1234)
{ host: 'rayners.org', port: 8125 }
> c = new StatsD('example.org',8125)
{ host: 'example.org', port: 8125 }
> c.increment('node_test.int')
> c.decrement('node_test.int')
> c.timing('node_test.some_service.task.time', 500) // time in millis

# License

node-statsd is licensed under the MIT license.

0 comments on commit c62da3a

Please sign in to comment.