hotfix: fix explicit schema file examples, closes #4563
parent
6c597d4bad
commit
b69ca52fda
|
@ -45,6 +45,7 @@ Use the `influx` CLI to set the schema-type and measurement schemas for your buc
|
|||
|
||||
Format the file as CSV, JSON, or [Newline delimited JSON (NDJSON)](http://ndjson.org/),
|
||||
as in the following examples:
|
||||
|
||||
{{% code-tabs-wrapper %}}
|
||||
{{% code-tabs %}}
|
||||
[usage-resources.csv](#)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[
|
||||
{"name": "time", "type": "timestamp"},
|
||||
{"name": "service", "type": "tag"},
|
||||
{"name": "host", "type": "tag"},
|
||||
{"name": "usage_user", "type": "field", "dataType": "float"},
|
||||
{"name": "usage_system", "type": "field", "dataType": "float"}
|
||||
{"name": "time", "type": "timestamp"},
|
||||
{"name": "service", "type": "tag"},
|
||||
{"name": "host", "type": "tag"},
|
||||
{"name": "usage_user", "type": "field", "dataType": "float"},
|
||||
{"name": "usage_system", "type": "field", "dataType": "float"}
|
||||
]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name,type,data_type
|
||||
name,type,dataType
|
||||
time,timestamp,
|
||||
host,tag,
|
||||
service,tag,
|
||||
fsRead,field,float
|
||||
fsWrite,field,float
|
||||
fsWrite,field,float
|
|
Loading…
Reference in New Issue