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.
37 lines
801 B
37 lines
801 B
{ |
|
"$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": "2023-01-12" |
|
}, |
|
"routes": [ |
|
{ |
|
"path": "api/*", |
|
"method": "*", |
|
"url": "{{ .JsonData.dataExporterApiUrl }}/api/" |
|
} |
|
], |
|
"includes": [ |
|
{ |
|
"name": "Data Exporter Panel", |
|
"type": "panel" |
|
} |
|
], |
|
"dependencies": { |
|
"grafanaDependency": ">=7.0.0", |
|
"plugins": [] |
|
} |
|
}
|
|
|