Skip to content

Commit

Permalink
fixed typo in multi-line-dotted name formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewwall committed Dec 23, 2021
1 parent d2d5484 commit 7f71e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/user/influx.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def get_post_body(self, record):
# use multiple lines with a dotted-name identifier
n = "%s.%s" % (self.measurement, name)
data.append('%s%s value=%s %d' %
(name, tags, s, record['dateTime']*1000000000))
(n, tags, s, record['dateTime']*1000000000))
elif self.line_format == 'multi-line':
# use multiple lines
data.append('%s%s value=%s %d' %
Expand Down

0 comments on commit 7f71e1d

Please sign in to comment.