Writing_points InfluxDB工作正常,但数据库仍然为空

时间:2019-09-26 19:50:44

标签: influxdb influxdb-python

我正在尝试在Windows 10上实现InfluxDB。数据库已启动并正在运行,但是当我尝试按照basic tutorial中的步骤通过Python插入数据时,数据库仍然为空。 Python代码未触发任何错误,HTTP结果为204。

我尝试将保留策略更改为无穷大,并将时间戳格式设置为正确的格式,但是没有任何改变。

from influxdb import InfluxDBClient

client = InfluxDBClient(host='127.0.0.1', port=8086, database='dados_historicos')
client.create_retention_policy('awesome_policy', 'INF', 1, default=True)
[...]

dict_dados = {}
dict_dados['measurement'] = tabela
dict_dados['time'] = x['TS_SAMPLETM'].isoformat('T')
dict_dados['fields'] = {}
for col in df:
     if col != 'TS_SAMPLETM':
         dict_dados['fields'][col] = x[col]

client.write_points([dict_dados])

select * from dados_historicos的实际结果为空。

0 个答案:

没有答案