my issue is that I'm using Grafana to make a dashboard, and I'm trying to make a connection between an IoT platform and Grafana, I have data stored there, and I want to make Grafana read that data so I can make a separate dashboard.
Here is a command that I used in the Ubuntu Terminal to read historical data from that IoT platform:
curl -X GET \
-H "Authorization: Bearer ${JWT}" \
"http://localhost:8000/history/device/25c6b5/history?lastN=3&attr=temperature"
I tried to find how Grafana can read that data, but so far, I only found how to use cURL to read data from Grafana, does Grafana has support to read data from other sources using cURL?