Skip to content

Commit 4100c8a

Browse files
author
Cory G Watson
committed
Fix tags
1 parent ceb3374 commit 4100c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis-statsd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def send_metric(name, mtype, value, tags=None):
6262
tags.extend(args.global_tags.split(','))
6363

6464
if len(tags) > 0 and args.tags:
65-
tagstring = '#{}'.format(','.join(tags))
65+
tagstring = '|#{}'.format(','.join(tags))
6666

6767
if mtype == 'c':
6868
# For counters we will calculate our own deltas.

0 commit comments

Comments
 (0)