Hello community ,
Is it possible to post results results to grafana dashboard from another external system ie text-it via an api endpoint and be able to visualize them ?
Hello community ,
Is it possible to post results results to grafana dashboard from another external system ie text-it via an api endpoint and be able to visualize them ?
Welcome @gitcliff
Yes it is possible. If you post sample json from the resp api, your grafana version and the visualization you want to see based on which data elements we can try to help you
hello @yosiasz thanks for the feedack and my apologies for the delayed response…
was looking at posting to grafana a notification message with
POST /api/dashboards/db HTTP/1.1
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
{
"dashboard": {
"id": 1,
"title": "Production Overview Updated",
"tags": [ "templated" ],
"timezone": "browser",
"schemaVersion": 16,
"version": 1,
"refresh": "25s"
},
"folderUid": "l3KqBxCMz",
"message": "Message has been successfully sent",
"overwrite": false
}
According to this