influx bucket-schema create
influx bucket-schema create
命令为具有 显式
模式类型 的 InfluxDB 存储桶中的测量设置模式。
用法
influx bucket-schema create [flags]
标志
标志 | 描述 | 输入类型 | 映射到 ? | |
---|---|---|---|---|
-c | --active-config | 用于命令的 CLI 配置 | 字符串 | |
-n | --bucket | (必需) 存储桶名称(与 --bucket-id 互斥) | 字符串 | |
-i | --bucket-id | (必需) 存储桶 ID(与 --bucket 互斥) | 字符串 | |
--columns-file | (必需) 列定义文件路径。有关更多信息,请参阅 创建列文件。 | 字符串 | ||
--columns-format | 列文件格式(csv ,ndjson ,json ,默认:auto )。有关更多信息,请参阅 使用列格式创建模式。 | 字符串 | ||
--configs-path | influx CLI 配置的路径(默认 ~/.influxdbv2/configs ) | 字符串 | INFLUX_CONFIGS_PATH | |
-x | --extended-output | 打印每个测量模式的列信息(默认:false) | ||
-h | --help | create 命令的帮助 | ||
--hide-headers | 隐藏表头(默认 false ) | INFLUX_HIDE_HEADERS | ||
--host | InfluxDB 的 HTTP 地址(默认 https://127.0.0.1:8086 ) | 字符串 | INFLUX_HOST | |
--json | 以 JSON 格式输出数据(默认 false ) | INFLUX_OUTPUT_JSON | ||
-n | --name | (必需) 测量名称 | 字符串 | |
-o | --org | 组织名称(与 --org-id 互斥) | 字符串 | INFLUX_ORG |
--org-id | 组织 ID(与 --org 互斥) | 字符串 | INFLUX_ORG_ID | |
--skip-verify | 跳过 TLS 证书验证 | INFLUX_SKIP_VERIFY | ||
-t | --token | API 令牌 | 字符串 | INFLUX_TOKEN |
示例
身份验证凭证
以下示例假设您的 InfluxDB 主机,组织 和 令牌 由 活动 influx
CLI 配置 或环境变量(INFLUX_HOST
,INFLUX_ORG
和 INFLUX_TOKEN
)提供。如果您没有设置 CLI 配置或未设置环境变量,请使用以下标志在每个命令中包含这些必需的凭证
--host
:InfluxDB 主机-o, --org
或--org-id
:InfluxDB 组织名称或 ID-t, --token
:InfluxDB API 令牌
使用 influx CLI 创建模式
influx bucket-schema create \
--bucket example-bucket \
--name temperature \
--columns-file columns.csv
创建模式并打印列信息
influx bucket-schema create \
--bucket example-bucket \
--name cpu \
--columns-file columns.csv \
--extended-output
使用列格式创建模式
默认情况下,InfluxDB 尝试检测 列文件 格式。如果您的文件扩展名与格式不匹配,请使用 columns-format
标志 设置格式。
influx bucket-schema create \
--bucket example-bucket \
--name cpu \
--columns-file columns.json \
--columns-format ndjson
influx bucket-schema create \
--bucket example-bucket \
--name cpu \
--columns-file columns.txt \
--columns-format csv
这个页面有帮助吗?
感谢您的反馈!