InfluxDB Quick Start
来自Jack's Lab
(版本间的差异)
(→influx shell) |
(→influx shell) |
||
| 第5行: | 第5行: | ||
Connected to http://localhost:8086 version 1.2.x | Connected to http://localhost:8086 version 1.2.x | ||
InfluxDB shell 1.2.x | InfluxDB shell 1.2.x | ||
| + | > show databases; | ||
| + | name: databases | ||
| + | name | ||
| + | ---- | ||
| + | _internal | ||
| + | test | ||
| + | telegraf | ||
| + | |||
| + | > > use telegraf; | ||
| + | Using database telegraf | ||
| + | > show measurements; | ||
| + | name: measurements | ||
| + | name | ||
| + | ---- | ||
| + | cpu | ||
| + | disk | ||
| + | diskio | ||
| + | kernel | ||
| + | mem | ||
| + | processes | ||
| + | swap | ||
| + | system | ||
| + | |||
| + | > | ||
</source> | </source> | ||
2017年5月10日 (三) 22:57的版本
influx shell
$ influx Connected to http://localhost:8086 version 1.2.x InfluxDB shell 1.2.x > show databases; name: databases name ---- _internal test telegraf > > use telegraf; Using database telegraf > show measurements; name: measurements name ---- cpu disk diskio kernel mem processes swap system >