如何以 RFC3339 格式打印纪元格式的 InfluxDB 时间戳
How to print epoch-formatted InfluxDB timestamps in RFC3339 format
我想通过 CLI 以 RFC3339 格式读取我的 InfluxDB 测量值以进行调试,但由于已经有一个 API 处理 read/write 操作,我不想搞砸它们存储的实际格式(Unix 纪元纳秒)。
如果我按照建议 here 发出 "influx -precision rfc3339",它是否还会影响时间戳存储在数据库中的格式,或者只影响它们在终端中打印的格式?我只想要后者
我刚找到答案,在 official documentation:
Note: Setting the precision to rfc3339 (-precision rfc3339) works with the -execute option, but it does not work with the -import option. All other precision formats (e.g., h,m,s,ms,u, and ns) work with the -execute and -import options.
所以看来,即使我积极尝试导入rfc3339格式的数据,我也无法做到。 :)
我想通过 CLI 以 RFC3339 格式读取我的 InfluxDB 测量值以进行调试,但由于已经有一个 API 处理 read/write 操作,我不想搞砸它们存储的实际格式(Unix 纪元纳秒)。
如果我按照建议 here 发出 "influx -precision rfc3339",它是否还会影响时间戳存储在数据库中的格式,或者只影响它们在终端中打印的格式?我只想要后者
我刚找到答案,在 official documentation:
Note: Setting the precision to rfc3339 (-precision rfc3339) works with the -execute option, but it does not work with the -import option. All other precision formats (e.g., h,m,s,ms,u, and ns) work with the -execute and -import options.
所以看来,即使我积极尝试导入rfc3339格式的数据,我也无法做到。 :)