创建 influx 电信
influx telegrafs create
命令使用提供的Telegraf配置文件在InfluxDB中创建Telegraf配置。
用法
influx telegrafs create [flags]
标志
标志 | 描述 | 输入类型 | 映射到 ? | |
---|---|---|---|---|
-c | --active-config | 用于命令的CLI配置 | 字符串 | |
--configs-path | 到influx CLI配置的路径(默认 ~/.influxdbv2/configs ) | 字符串 | INFLUX_CONFIGS_PATH | |
-d | --description | Telegraf配置描述 | 字符串 | |
-f | --file | Telegraf配置路径 | 字符串 | |
-h | --help | 关于create 命令的帮助 | ||
--hide-headers | 隐藏表头 | INFLUX_HIDE_HEADERS | ||
--json | 将数据输出为JSON | INFLUX_OUTPUT_JSON | ||
-n | --name | Telegraf配置名称 | 字符串 | |
-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 主机、组织和令牌由以下方式提供:either the active influx
CLI configuration or by environment variables (INFLUX_HOST
, INFLUX_ORG
, and INFLUX_TOKEN
). If you do not have a CLI configuration set up or the environment variables set, include these required credentials for each command with the following flags
--host
: InfluxDB主机-o, --org
或--org-id
: InfluxDB组织名称或ID-t, --token
: InfluxDB API令牌
创建Telegraf配置
influx telegrafs create \
--name "Example configuration name" \
--description "Example Telegraf configuration description" \
--file /path/to/telegraf.conf
通过stdin创建Telegraf配置
cat /path/to/telegraf.conf | influx telegrafs create \
--name "Example configuration name" \
--description "Example Telegraf configuration description" \
这个页面有帮助吗?
感谢您的反馈!