add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/common/influx.md Normal file
View File

@@ -0,0 +1,28 @@
# influx
> InfluxDB 命令行客户端。
> 更多信息:<https://docs.influxdata.com/influxdb/v1.7/tools/shell/>.
- 连接到运行在 localhost 的 InfluxDB且无需凭证
`influx`
- 使用特定用户名连接(将提示输入密码):
`influx -username {{username}} -password ""`
- 连接到特定主机:
`influx -host {{hostname}}`
- 使用特定数据库:
`influx -database {{database_name}}`
- 执行给定命令:
`influx -execute "{{influxql_command}}"`
- 以特定格式返回输出:
`influx -execute "{{influxql_command}}" -format {{json|csv|column}}`