From f90280ba95482a5a872ddc2da512fb8de4a1b89c Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Thu, 29 Sep 2022 17:09:51 +0800 Subject: [PATCH] docs: fix a typo in telegraf doc (#17155) * docs: add table name customization note * docs: fix a typo --- docs/en/20-third-party/03-telegraf.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/20-third-party/03-telegraf.md b/docs/en/20-third-party/03-telegraf.md index e5c6d6f254..ab06ab0379 100644 --- a/docs/en/20-third-party/03-telegraf.md +++ b/docs/en/20-third-party/03-telegraf.md @@ -71,7 +71,7 @@ Query OK, 3 row(s) in set (0.013269s) :::note - TDengine take influxdb format data and create unique ID for table names by the rule. -The user can configure `smlChildTableName` paramter to generate specified table names if he/she needs. And he/she also need to insert data with specified data format. +The user can configure `smlChildTableName` parameter to generate specified table names if he/she needs. And he/she also need to insert data with specified data format. For example, Add `smlChildTableName=tname` in the taos.cfg file. Insert data `st,tname=cpu1,t1=4 c1=3 1626006833639000000` then the table name will be cpu1. If there are multiple lines has same tname but different tag_set, the first line's tag_set will be used to automatically creating table and ignore other lines. Please refer to [TDengine Schemaless](/reference/schemaless/#Schemaless-Line-Protocol) ::: -- GitLab