-
Make a subdirectory named after your plugin in the
data/plugins
subdirectory in your Grafana instance. It does not really matter what the directory name is. When the plugin is installed via the grafana cli, it will create a directory named after the plugin id field in the plugin.json file. -
Copy the files in this project into your new plugin subdirectory.
-
npm install
oryarn install
-
grunt
-
karma start --single-run
to run the tests once. There is one failing test for thetestDatasource
in the datasource.ts file. -
Restart your Grafana server to start using the plugin in Grafana (Grafana only needs to be restarted once).
grunt watch
will build the TypeScript files and copy everything to the dist directory automatically when a file changes. This is useful for when working on the code. karma start
will turn on the karma file watcher so that it reruns all the tests automatically when a file changes.
Changes should be made in the src
directory. The build task transpiles the TypeScript code into JavaScript and copies it to the dist
directory. Grafana will load the JavaScript from the dist
directory and ignore the src
directory.
The Grafana SDK Mocks package contains mocks for the Grafana classes that a plugin needs to build in TypeScript. It also contains some of the commonly used util classes that are used in plugins. This allows you to write unit tests for your plugin.
It is already included in the package.json but if you need to add it again then the command is:
npm install --save-dev grafana/grafana-sdk-mocks
It also contains a TypeScript Typings file - common.d.ts that you can refer to in your classes that use classes or functions from core Grafana. Use the following triple slash directive to use Grafana classes in your code. The directive will point the TypeScript compiler at the mocks package so that it can find the files it needs to build. Place the directive at the top of all your TypeScript files:
///<reference path="../node_modules/grafana-sdk-mocks/app/headers/common.d.ts" />
The Karma configuration uses the SystemJS TypeScript plugin to load files from the src directory and transpile them on the fly. It also uses some simple fakes in the Mocks package so that you can unit test properly.
The settings for Karma are in the karma.conf.js file in the root. If you add any external files, then they need to be added to the SystemJS section to be used in tests.
- First version.