entering/displaying 数据时的 influxdb 日期格式
influxdb date format when entering/displaying data
我写了一个python
程序将历史数据输入到influxdb中。
好像一切正常,但我不确定时间字段是否不正确。时间应该是 YYYY,MM,DD,HH,MM 整数。
这是我发送给 influxdb
、
的 json
的示例
[{'fields': {'High': 72.06, 'Close': 72.01, 'Volume': 6348, 'Open': 72.01, 'Low': 72.01}, 'tags': {'country': 'US', 'symbol': 'AAXJ', 'type': 'ETF', 'exchange': 'NASDAQ'}, 'time': datetime.dat
e(2017, 9, 7, 15, 35), 'measurement': 'quote'}]
但是,当我查询数据时,我得到了一个奇怪的时间数字:
time Close High Low Open Volume country exchange symbol type
---- ----- ---- --- ---- ------ ------- -------- ------ ----
1504798500000000000 144.46 144.47 144.06 144.1 112200 US NYSE IBM STOCK
似乎是 json
时间格式错误,或者查询显示的数字是编码日期表示形式?
我找到了答案here
通过在 CLI 中输入以下命令格式化输出:
precision rfc3339
我写了一个python
程序将历史数据输入到influxdb中。
好像一切正常,但我不确定时间字段是否不正确。时间应该是 YYYY,MM,DD,HH,MM 整数。
这是我发送给 influxdb
、
json
的示例
[{'fields': {'High': 72.06, 'Close': 72.01, 'Volume': 6348, 'Open': 72.01, 'Low': 72.01}, 'tags': {'country': 'US', 'symbol': 'AAXJ', 'type': 'ETF', 'exchange': 'NASDAQ'}, 'time': datetime.dat
e(2017, 9, 7, 15, 35), 'measurement': 'quote'}]
但是,当我查询数据时,我得到了一个奇怪的时间数字:
time Close High Low Open Volume country exchange symbol type
---- ----- ---- --- ---- ------ ------- -------- ------ ----
1504798500000000000 144.46 144.47 144.06 144.1 112200 US NYSE IBM STOCK
似乎是 json
时间格式错误,或者查询显示的数字是编码日期表示形式?
我找到了答案here
通过在 CLI 中输入以下命令格式化输出:
precision rfc3339