Hi Team,
I am using Grafana latest from source code and prometheus timeseries database to monitor PostgreSQL database.
Now prometheus stores the timeseries as below.
disk_free_space{file_system="/dev/sda1",file_system_type=“xfs”,mount_point="/boot",server=“127.0.0.1:5432”} 9.5023104e+07
disk_free_space{file_system="/dev/sda1",file_system_type=“xfs”,mount_point="/boot",server=“127.0.0.1:5433”} 9.5023104e+07
disk_free_space{file_system="/dev/sda3",file_system_type=“xfs”,mount_point="/",server=“127.0.0.1:5432”} 2.8713885696e+10
disk_free_space{file_system="/dev/sda3",file_system_type=“xfs”,mount_point="/",server=“127.0.0.1:5433”} 2.8714070016e+10
disk_free_space{file_system=“rootfs”,file_system_type=“rootfs”,mount_point="/",server=“127.0.0.1:5432”} 2.8713885696e+10
disk_free_space{file_system=“rootfs”,file_system_type=“rootfs”,mount_point="/",server=“127.0.0.1:5433”} 2.8714070016e+10
How to plot Table panel in grafana using above metrics. I can plot the timeseries using line chart but how to represent above data in Table in grafana as it is timeseries ? Any pointers will be helpful.
Thanks in Advance