You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
!Plugin support for panels is only available in nightly!
10
+
11
+
Adding support for all datasources and suggested panels would bloat grafana and make it impossible to maintain. That's why we implemented a plugin system that makes it possible for anyone to develop support for a datasource or custom panel without adding it to Grafana itself.
12
+
13
+
## Installing plugins
14
+
15
+
Installing a plugin is very simple. Just download it and place it in the Grafana plugins folder and restart grafana.
16
+
17
+
The default plugin folder is configurable under paths.plugins
18
+
19
+
It's also possible to add one specific plugin by linking to its folder.
20
+
21
+
```
22
+
[plugin.mirror]
23
+
path = /home/evil-queen/datasource-plugin-mirror
24
+
```
25
+
26
+
## Plugin implementation ##
27
+
28
+
Each plugin is defined in plugin.json file in the plugin folder.
29
+
30
+
Instead of massive documentation about how it works we created a reference implementation of a plugin.
31
+
You can find each reference implementation further down on this page.
32
+
33
+
## Datasource plugins
34
+
35
+
Datasource have three responsibilities.
36
+
37
+
* UI for configuring its settings
38
+
* Datasource object that can send queries, metricqueries and healthcheck the datasource
0 commit comments