influxdb list all tags for a measurement

Solutions on MaxInterview for influxdb list all tags for a measurement by the best coders in the world

showing results for - "influxdb list all tags for a measurement"
Poul
10 Apr 2019
1SHOW FIELD KEYS [ON <database_name>] [FROM <measurement_name>]
2# option a)
3	SHOW FIELD KEYS ON MyDatebase FROM MyMesurement
4# option b)
5	use MyDatebase
6	SHOW FIELD KEYS FROM MyMesurement