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.

95 lines
3.7 KiB

1 year ago
# Grafana Data Exporter App
1 year ago
Grafana plugin for exporting data from Grafana panels as CSV.
1 year ago
Supported datasources:
- MySQL
- PostgreSQL
1 year ago
## Prerequisites
- [Grafana 9.0.0+](https://grafana.com/grafana/download)
- [Grafana Data Exporter](https://code.corpglory.net/corpglory/grafana-data-exporter)
1 year ago
- set Grafana `app_mode` as `development`:
1 year ago
- find the configuration file: [https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#configuration-file-location](https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#configuration-file-location)
- change `app_mode = production` to `app_mode = development`
1 year ago
- restart Grafana
1 year ago
## Plugin installation
1 year ago
The easiest way to install plugins is by using the `grafana-cli` tool which is bundled with Grafana. See [Using grafana-cli](#using-grafana-cli) paragraph.
1 year ago
If there is no `grafana-cli` tool in your system, plugins can be installed [manually](#manual-installation).
1 year ago
### Table of contents
- [Using grafana-cli](#using-grafana-cli)
- [Install plugin](#install-update-plugin)
- [Manual installation](#manual-installation)
- [Docker installation](#docker-installation)
1 year ago
### Using grafana-cli
1 year ago
Grafana docs about plugin installation: [https://grafana.com/docs/grafana/latest/cli/#plugins-commands](https://grafana.com/docs/grafana/latest/cli/#plugins-commands).
1 year ago
#### Install / update plugin
```bash
11 months ago
grafana-cli --pluginUrl "https://code.corpglory.net/attachments/03b4c35b-575a-4d8c-b211-60cc40966c72" plugins install corpglory-dataexporter-app
1 year ago
sudo systemctl restart grafana-server
```
1 year ago
### Manual installation
1 year ago
- Navigate to Grafana plugins directory:
- For Grafana installed from `.deb`/`.rpm` package:
- `/var/lib/grafana/plugins`
- For Grafana installed using Standalone Linux Binaries or source:
- `<GRAFANA_PATH>/data/plugins`
1 year ago
- Download corpglory-dataexporter-app
```bash
11 months ago
wget https://code.corpglory.net/attachments/07908282-dc3b-4ca1-83d5-224c4139bd89 -O corpglory-dataexporter-app.tar.gz
1 year ago
```
1 year ago
- Unpack downloaded files
```bash
tar -zxvf corpglory-dataexporter-app.tar.gz
```
1 year ago
- Restart Grafana
- For Grafana installed from `.deb`/`.rpm` package:
- `systemctl restart grafana-server`
- For Grafana installed using Standalone Linux Binaries or source:
- Stop any running instances of grafana-server
- Start grafana-server: `cd <GRAFANA_PATH> && ./bin/grafana-server`
1 year ago
### Docker installation
1 year ago
You can install Data Exporter App to Grafana in Docker passing it as the environment variable.
1 year ago
```bash
docker run \
-p 3000:3000 \
11 months ago
-e "GF_INSTALL_PLUGINS=https://code.corpglory.net/attachments/03b4c35b-575a-4d8c-b211-60cc40966c72;corpglory-dataexporter-app" \
1 year ago
grafana/grafana
```
1 year ago
#### Useful links
- Grafana docs about Docker installation: [https://docs.grafana.org/installation/docker/#installing-plugins-from-other-sources](https://docs.grafana.org/installation/docker/#installing-plugins-from-other-sources)
## Plugin Configuration
- In Grafana, go to Configuration -> Plugins -> Data Exporter App
- Fill "DataExporter backend URL" field with the Data Exporter URL (Please note: the URL should be accessible by Grafana Server)
- Click Connect
- If Grafana connects to the Data Exporter successfully, you'll see this message: "Plugin is connected! You can now go to a dashboard and add the DataExporter panel there."
- After this:
- go to a dashboard you'd like to export data from
- click "Add panel"
- select Data Exporter Panel
1 year ago
## Support and Consulting
1 year ago
Commercial support, professional services **or any help** — send us your inquiry at ping@corpglory.com
1 year ago
## About CorpGlory Inc.
Grafana Data Exporter is developed by [CorpGlory Inc.](https://corpglory.com/), a company which provides high quality software development, data visualization, Grafana and monitoring consulting.