influxdb中将数据导出csv格式数据(实战检验)

命令基本格式为:influx -database 'database_name' -execute 'SELECT * FROM table_name' -format csv  >>  test.csv

实际操作举例,数据库为:ceshi   表名为:lianxi  

1、当无密码时,且在本机上执行导出时,命令为:

influx -database   ceshi   -execute 'SELECT * FROM lianxi  ' -format csv  >>  test.csv

2、当有密码,在本机上或者远程执行导出时,命令为:以influx使用的8086端口举例

influx -host x.x.x.x -port 8086 -database ceshi -username 'user' -password 'mima' -execute 'SELECT * FROM lianxi ' -format csv >> test.csv

3、当有密码,在本机上或者远程执行导出指定时间范围内的数据时,命令为:以influx使用的8086端口举例

influx -host x.x.x.x -port 8086 -database ceshi -username 'user' -password 'mima' -execute 'SELECT * FROM lianxi where time>=1593592487000000000 and time<1593593393000000000' -format csv >> test.csv

 

posted @ 2020-07-01 18:00  天地一体  阅读(6486)  评论(0编辑  收藏  举报