From 61ea780de45512c0028b70811be4175c934ec8b3 Mon Sep 17 00:00:00 2001 From: WANG MINGMING Date: Fri, 29 Jul 2022 16:26:45 +0800 Subject: [PATCH] Update 03-opentsdb-telnet.mdx --- docs/zh/07-develop/03-insert-data/03-opentsdb-telnet.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh/07-develop/03-insert-data/03-opentsdb-telnet.mdx b/docs/zh/07-develop/03-insert-data/03-opentsdb-telnet.mdx index 2b397e1bdc..1cc402c3c0 100644 --- a/docs/zh/07-develop/03-insert-data/03-opentsdb-telnet.mdx +++ b/docs/zh/07-develop/03-insert-data/03-opentsdb-telnet.mdx @@ -23,7 +23,7 @@ OpenTSDB 行协议同样采用一行字符串来表示一行数据。OpenTSDB - metric 将作为超级表名。 - timestamp 本行数据对应的时间戳。根据时间戳的长度自动识别时间精度。支持秒和毫秒两种时间精度 -- value 度量值,必须为一个数值。对应的列名也是 “value”。 +- value 度量值,必须为一个数值。对应的列名是 “_value”。 - 最后一部分是标签集, 用空格分隔不同标签, 所有标签自动转化为 nchar 数据类型; 例如: @@ -74,7 +74,7 @@ taos> show stables; Query OK, 2 row(s) in set (0.002544s) taos> select tbname, * from `meters.current`; - tbname | ts | value | groupid | location | + tbname | _ts | _value | groupid | location | ================================================================================================================================== t_0e7bcfa21a02331c06764f275... | 2022-03-28 09:56:51.249 | 10.800000000 | 3 | California.LosAngeles | t_0e7bcfa21a02331c06764f275... | 2022-03-28 09:56:51.250 | 11.300000000 | 3 | California.LosAngeles | -- GitLab