Hello,
I am new to Grafana, any help would be appreciated.
I have created a data source plugin which returns the json data. I would like to show the returned data in a table panel with custom columns. For example, for following json, I would like to show two columns(name, email) with the data. Is there any available Panel, I can use? I looked at the table panel but not sure if I can do that.
Json:
[
{“name”:“Mike”, “email":"Mike@gmail.com”},
{“name”:“Bob”, “email":"bob@gmail.com”}
]
I am using Grafana v7.5.10 (e72061a129)
Thank you.