bug: fix as_influx timestamp parsing.
This commit is contained in:
@@ -400,6 +400,6 @@ class MinerData:
|
||||
|
||||
tags_str = ",".join(tag_data)
|
||||
field_str = ",".join(field_data)
|
||||
timestamp = str(int(time.mktime(self.datetime.timetuple()) * 1e9))
|
||||
timestamp = str(self.timestamp * 1e9)
|
||||
|
||||
return " ".join([tags_str, field_str, timestamp])
|
||||
|
||||
Reference in New Issue
Block a user