Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Use standard statsd ports.
Browse files Browse the repository at this point in the history
  • Loading branch information
clutchski committed Oct 16, 2012
1 parent 7b523d2 commit 31cf68a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/statsd.py
Expand Up @@ -4,7 +4,7 @@

dog_stats_api.start(statsd=True,
statsd_host='localhost',
statsd_port=9966)
statsd_port=8125)

while True:
dog_stats_api.gauge('test.udp.gauge', 1000)
Expand Down
2 changes: 1 addition & 1 deletion src/dogapi/stats/statsd.py
Expand Up @@ -11,7 +11,7 @@
class StatsdAggregator(object):


def __init__(self, host='localhost', port=9966):
def __init__(self, host='localhost', port=8125):
self.host = host
self.port = int(port)
self.address = (self.host, self.port)
Expand Down

0 comments on commit 31cf68a

Please sign in to comment.