Hello,
I am using Grafana 10 and influxdb 2.7.
I am using FLUX in my query as below
from(bucket: "Vxxxxxx")
|> range(start: -30d)
|> filter(fn: (r) => r["_measurement"] == "VMwareRawData6")
|> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value")
It shows columns. Client_Name and Policy_Name are tags and all other columns are fields.
The table doesn’t show me all rows at once. As you’ll see in the screenshot, there’s a dropdown select box below the data in the table. When I open it, for each VMwareRawData6 option I select, the table shows two different rows. I want all of them to be in a single table without selecting them from the dropdown menu. There should be hundreds of rows like this. But it shows the rows in pairs by selecting from the dropdown select box. How can I display all the data in the table in a single place without selecting from the dropdown?
In influxdb 1.8 i was able to display all data in one table with below query :
SELECT hier_1_id, Policy_Type, Master_Server_Name, Policy_Name, Client_Name, Schedule_Type, Job_Status, Job_Status_Code, Start_Time, End_Time, Duration_Minutes, Written_Size_GB*1024 as Written_Size_MB, Real_Size_GB*1024 as Real_Size_MB, throughput_MB_per_sec FROM "Vxxxxx_Dashboard" where time > now() - 32d
So it was showing all rows in one table. But now with Flux and influx 2.7 i cannot get all data in one table. I have to choose from dropdown under the table to see data seperately.
4 posts - 2 participants