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.
 
 
 
 
vargburz ab92f6ea95 try build 2 years ago
src try build 2 years ago
.gitignore init grafana panel 2 years ago
.prettierrc.js init grafana panel 2 years ago
CHANGELOG.md init grafana panel 2 years ago
LICENSE license 2 years ago
README.md init grafana panel 2 years ago
jest.config.js try build 2 years ago
package.json update package && plugin json 2 years ago
tsconfig.json init grafana panel 2 years ago
yarn.lock update package && plugin json 2 years ago

README.md

Grafana Panel Plugin Template

Build

This template is a starting point for building Grafana Panel Plugins in Grafana 7.0+

What is Grafana Panel Plugin?

Panels are the building blocks of Grafana. They allow you to visualize data in different ways. While Grafana has several types of panels already built-in, you can also build your own panel, to add support for other visualizations.

For more information about panels, refer to the documentation on Panels

Getting started

  1. Install dependencies

    yarn install
    
  2. Build plugin in development mode or run in watch mode

    yarn dev
    

    or

    yarn watch
    
  3. Build plugin in production mode

    yarn build
    

Learn more