This template is a starting point for building Grafana Data Source Plugins
Grafana supports a wide range of data sources, including Prometheus, MySQL, and even Datadog. There’s a good chance you can already visualize metrics from the systems you have set up. In some cases, though, you already have an in-house metrics solution that you’d like to add to your Grafana dashboards. Grafana Data Source Plugins enables integrating such solutions with Grafana.
- Install dependencies
yarn install
- Build plugin in development mode or run in watch mode
yarn dev
---- OLD --- docker run --rm -p 3000:3000 -v $(pwd):/var/lib/grafana/plugins --name=grafana grafana/grafana:7.0.0-beta1
docker run --rm -p 3000:3000 -v $(pwd):/var/lib/grafana/plugins -v grafana-storage:/var/lib/grafana --name=grafana grafana/grafana:7.1.5
or
yarn watch
- Build plugin in production mode
yarn build
- Build a data source 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