This is a sample plugin for building Grafana Backend Plugins using the Rust SDK.
Grafana Backend Plugins are plugins that comprise both a frontend and backend component. They can provide datasource implementations in cases where the datasource cannot be communicated with by the browser using HTTP, or can provide entire app experiences inside Grafana, or even the two combined.
This sample app contains a backend datasource plugin, but the backend component also implements a few other backend services just to serve as an example.
For more information about backend plugins, refer to the documentation on Backend plugins.
The simplest way to get started is with the included docker-compose file. Simply run
docker-compose up
which will start three services:
- A Grafana instance set up for development mode, serving on port 3000
- A frontend build service, which watches for changes and builds the frontend
- A backend build service, which watches for changes, builds the backend, moves the binary into the correct location, and signals the current backend component to restart.
Note that if you are on a Mac, the build services may run slowly as they have to use emulation.
A backend plugin consists of both frontend and backend components.
-
Install dependencies
yarn install
-
Build plugin in development mode or run in watch mode
yarn dev
or
yarn watch
-
Build plugin in production mode
yarn build
-
Ensure you have a recent version of Rust installed. rustup is the recommended installation method.
rustup update
-
Build the backend plugin in debug mode, then copy it to the
dist
directory with the correct name so that Grafana picks it up.cd backend export GOARCH=darwin_arm64 # replace with your GOARCH cargo build cp target/debug/grafana-sample-backend-plugin-rust ../dist/gpx_grafana-sample-backend-plugin-rust_${GOARCH} # or, using cargo-watch cd backend export GOARCH=darwin_arm64 # replace with your GOARCH cargo watch --why -x build -s 'rm ../dist/gpx_grafana-sample-backend-plugin-rust_${GOARCH} && cp target/debug/grafana-sample-backend-plugin-rust ../dist/gpx_grafana-sample-backend-plugin-rust_${GOARCH}' -c -w .
- Build a data source backend plugin tutorial
- Grafana documentation
- Grafana Tutorials - Grafana Tutorials are step-by-step guides that help you make the most of Grafana
- Grafana UI Library - UI components to help you build interfaces using Grafana Design System
- Grafana plugin SDK for Rust