Reputation: 11
I am trying to show a tabular format for all the data I have in my influxdb on chronograf.
As I have multiple points (data) at the same timestamp it displays only one data for a single timestamp.
I want to show all the data on the chronograf irrespective of the same time. Any help will be greatly appreciated.
Example:
Measurement name: sample
time field1 filed2 tag1 tag2
t11 f11 f12 tag11 tag12
t11 f11 f12 tag21 tag12
t11 f11 f12 tag31 tag12
t12 f21 f22 tag11 tag22
I am trying query on chronograf: SELECT filed1,filed2, tag1 from sample WHERE tag2='tag12'
The table shows the below data:
t11 f11 f12 tag11
I am expecting I am output to be:
t11 f11 f12 tag11
t11 f11 f12 tag21
t11 f11 f12 tag31
Note: Same command gives me correct output on the influxdb cli.
Thank You in advance
Upvotes: 1
Views: 104