when we use two queries in grafana with timeseries panel, I dont find the option to show the last values side by side, It is coming one query values after the another query, I need the values should come side by side. I uploaded the picture for reference.
I think you did not get my question, I’ll give you one example. I am visualizing one server where the total device storage is 500GB, the disk is used around 230gb and disk space is 270gb. I wanted to compare both the values side by side as a Last option and i uploaded the image as reference.
Forgetting the visualization and legend for the moment…Does your query return in a table view (for each storage device) the Used Disk Space and the Free Disk Space?
yes it is returning the table view for the both used disk space and free disk space.
Can you share your query?
Query A: 100 * (1 - (node_filesystem_avail_bytes{env=‘$Env’,instance=‘$Host’} / node_filesystem_size_bytes{env=‘$Env’,instance=‘$Host’}))
Query B: 100 * (node_filesystem_free_bytes{env=‘$Env’,instance=‘$Host’} / node_filesystem_size_bytes{env=‘$Env’,instance=‘$Host’})