You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
801 B
38 lines
801 B
2 years ago
|
{
|
||
|
"$schema": "https://raw.githubusercontent.com/grafana/grafana/master/docs/sources/developers/plugins/plugin.schema.json",
|
||
|
"type": "app",
|
||
|
"name": "Data Exporter App",
|
||
|
"id": "corpglory-dataexporter-app",
|
||
|
"info": {
|
||
|
"description": "",
|
||
|
"author": {
|
||
|
"name": "CorpGlory Inc."
|
||
|
},
|
||
|
"logos": {
|
||
|
"small": "img/logo.svg",
|
||
|
"large": "img/logo.svg"
|
||
|
},
|
||
|
"keywords": ["export", "csv"],
|
||
|
"screenshots": [],
|
||
|
"version": "1.0.0",
|
||
|
"updated": "2022-12-30"
|
||
|
},
|
||
|
"routes": [
|
||
|
{
|
||
|
"path": "api/*",
|
||
|
"method": "*",
|
||
|
"url": "{{ .JsonData.dataExporterApiUrl }}/api/"
|
||
|
}
|
||
|
],
|
||
|
"includes": [
|
||
|
{
|
||
|
"name": "Data Exporter Panel",
|
||
|
"type": "panel"
|
||
|
}
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"grafanaDependency": ">=7.0.0",
|
||
|
"plugins": []
|
||
|
}
|
||
|
}
|