mirror of
https://github.com/grafana/grafana.git
synced 2025-07-28 23:12:44 +08:00

* Set every page to have defaults of 'Enterprise' and 'Open source' labels Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set administration pages to have of 'Cloud', 'Enterprise', and 'Open source' labels Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set administration/enterprise-licensing pages to have 'Enterprise' labels Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set administration/organization-management pages to have 'Enterprise' and 'Open source' labels Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set administration/provisioning pages to have 'Enterprise' and 'Open source' labels Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set administration/recorded-queries pages to have labels cloud,enterprise * Set administration/roles-and-permissions/access-control pages to have labels cloud,enterprise Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set administration/stats-and-license pages to have labels cloud,enterprise * Set alerting pages to have labels cloud,enterprise,oss * Set breaking-changes pages to have labels cloud,enterprise,oss * Set dashboards pages to have labels cloud,enterprise,oss * Set datasources pages to have labels cloud,enterprise,oss * Set explore pages to have labels cloud,enterprise,oss * Set fundamentals pages to have labels cloud,enterprise,oss * Set introduction/grafana-cloud pages to have labels cloud Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Fix introduction pages products Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set panels-visualizations pages to have labels cloud,enterprise,oss * Set release-notes pages to have labels cloud,enterprise,oss * Set search pages to have labels cloud,enterprise,oss * Set setup-grafana/configure-security/audit-grafana pages to have labels cloud,enterprise Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set setup-grafana/configure-security/configure-authentication pages to have labels cloud,enterprise,oss * Set setup-grafana/configure-security/configure-authentication/enhanced-ldap pages to have labels cloud,enterprise * Set setup-grafana/configure-security/configure-authentication/saml pages to have labels cloud,enterprise * Set setup-grafana/configure-security/configure-database-encryption/encrypt-secrets-using-hashicorp-key-vault pages to have labels cloud,enterprise * Set setup-grafana/configure-security/configure-request-security pages to have labels cloud,enterprise,oss Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set setup-grafana/configure-security/configure-team-sync pages to have labels cloud,enterprise Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set setup-grafana/configure-security/export-logs pages to have labels cloud,enterprise Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Set troubleshooting pages to have labels cloud,enterprise,oss * Set whatsnew pages to have labels cloud,enterprise,oss * Apply updated labels from review Co-authored-by: brendamuir <100768211+brendamuir@users.noreply.github.com> Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> --------- Signed-off-by: Jack Baldry <jack.baldry@grafana.com> Co-authored-by: brendamuir <100768211+brendamuir@users.noreply.github.com> Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com>
190 lines
5.4 KiB
Markdown
190 lines
5.4 KiB
Markdown
---
|
|
aliases:
|
|
- ../../../plugins/developing/datasources/
|
|
description: Deprecated guide for Angular plugin development.
|
|
keywords:
|
|
- grafana
|
|
- plugins
|
|
- documentation
|
|
labels:
|
|
products:
|
|
- enterprise
|
|
- oss
|
|
title: Legacy data source plugins
|
|
---
|
|
|
|
# Legacy data source plugins
|
|
|
|
Data source plugins enable people to develop plugins for any database that
|
|
communicates over HTTP. Its up to the plugin to transform the data into
|
|
time series data so that any grafana panel can then show it.
|
|
|
|
## Data source development
|
|
|
|
> Our goal is not to have a very extensive documentation but rather have actual
|
|
> code that people can look at. Example implementations of a data source can be
|
|
> found in these repos:
|
|
|
|
> - [simple-json-datasource](https://github.com/grafana/simple-json-datasource)
|
|
> - [simple-datasource](https://github.com/grafana/simple-datasource)
|
|
> - [simple-json-backend-datasource](https://github.com/grafana/simple-json-backend-datasource)
|
|
|
|
To interact with the rest of grafana the plugins module file can export 4 different components.
|
|
|
|
- Datasource (Required)
|
|
- QueryCtrl (Required)
|
|
- ConfigCtrl (Required)
|
|
- AnnotationsQueryCtrl
|
|
|
|
## Plugin json
|
|
|
|
There are two data source specific settings for the plugin.json
|
|
|
|
```json
|
|
"metrics": true,
|
|
"annotations": false,
|
|
```
|
|
|
|
These settings indicate what kind of data the plugin can deliver. At least one of them has to be true.
|
|
|
|
## Data source
|
|
|
|
The javascript object that communicates with the database and transforms data to times series.
|
|
|
|
The Data source should contain the following functions:
|
|
|
|
```javascript
|
|
query(options); // used by panels to get data
|
|
testDatasource(); // used by data source configuration page to make sure the connection is working
|
|
annotationQuery(options); // used by dashboards to get annotations
|
|
metricFindQuery(options); // used by query editor to get metric suggestions.
|
|
```
|
|
|
|
### testDatasource
|
|
|
|
When a user clicks on the _Save & Test_ button when adding a new data source, the details are first saved to the database and then the `testDatasource` function that is defined in your data source plugin will be called. It is recommended that this function makes a query to the data source that will also test that the authentication details are correct. This is so the data source is correctly configured when the user tries to write a query in a new dashboard.
|
|
|
|
### Query
|
|
|
|
Request object passed to datasource.query function:
|
|
|
|
```json
|
|
{
|
|
"range": { "from": "2015-12-22T03:06:13.851Z", "to": "2015-12-22T06:48:24.137Z" },
|
|
"interval": "5s",
|
|
"targets": [
|
|
{ "refId": "B", "target": "upper_75" },
|
|
{ "refId": "A", "target": "upper_90" }
|
|
],
|
|
"format": "json",
|
|
"maxDataPoints": 2495 // decided by the panel
|
|
}
|
|
```
|
|
|
|
There are two different kinds of results for data sources:
|
|
time series and table. Time series is the most common format and is supported by all data sources and panels. Table format is only supported by the InfluxDB data source and table panel. But we might see more of this in the future.
|
|
|
|
Time series response from datasource.query.
|
|
An array of:
|
|
|
|
```json
|
|
[
|
|
{
|
|
"target": "upper_75",
|
|
"datapoints": [
|
|
[622, 1450754160000],
|
|
[365, 1450754220000]
|
|
]
|
|
},
|
|
{
|
|
"target": "upper_90",
|
|
"datapoints": [
|
|
[861, 1450754160000],
|
|
[767, 1450754220000]
|
|
]
|
|
}
|
|
]
|
|
```
|
|
|
|
Table response from datasource.query.
|
|
An array of:
|
|
|
|
```json
|
|
[
|
|
{
|
|
"columns": [
|
|
{
|
|
"text": "Time",
|
|
"type": "time",
|
|
"sort": true,
|
|
"desc": true
|
|
},
|
|
{
|
|
"text": "mean"
|
|
},
|
|
{
|
|
"text": "sum"
|
|
}
|
|
],
|
|
"rows": [
|
|
[1457425380000, null, null],
|
|
[1457425370000, 1002.76215352, 1002.76215352]
|
|
],
|
|
"type": "table"
|
|
}
|
|
]
|
|
```
|
|
|
|
### Annotation Query
|
|
|
|
Request object passed to datasource.annotationQuery function:
|
|
|
|
```json
|
|
{
|
|
"range": { "from": "2016-03-04T04:07:55.144Z", "to": "2016-03-04T07:07:55.144Z" },
|
|
"rangeRaw": { "from": "now-3h", "to": "now" },
|
|
"annotation": {
|
|
"datasource": "generic datasource",
|
|
"enable": true,
|
|
"name": "annotation name"
|
|
},
|
|
"dashboard": DashboardModel
|
|
}
|
|
```
|
|
|
|
Expected result from datasource.annotationQuery:
|
|
|
|
```json
|
|
[
|
|
{
|
|
"annotation": {
|
|
"name": "annotation name", //should match the annotation name in grafana
|
|
"enabled": true,
|
|
"datasource": "generic datasource"
|
|
},
|
|
"title": "Cluster outage",
|
|
"time": 1457075272576,
|
|
"text": "Joe causes brain split",
|
|
"tags": ["joe", "cluster", "failure"]
|
|
}
|
|
]
|
|
```
|
|
|
|
## QueryCtrl
|
|
|
|
A JavaScript class that will be instantiated and treated as an Angular controller when the user edits metrics in a panel. This class has to inherit from the `app/plugins/sdk.QueryCtrl` class.
|
|
|
|
Requires a static template or `templateUrl` variable which will be rendered as the view for this controller.
|
|
|
|
## ConfigCtrl
|
|
|
|
A JavaScript class that will be instantiated and treated as an Angular controller when a user tries to edit or create a new data source of this type.
|
|
|
|
Requires a static template or `templateUrl` variable which will be rendered as the view for this controller.
|
|
|
|
## AnnotationsQueryCtrl
|
|
|
|
A JavaScript class that will be instantiated and treated as an Angular controller when the user chooses this type of data source in the templating menu in the dashboard.
|
|
|
|
Requires a static template or `templateUrl` variable which will be rendered as the view for this controller. The fields that are bound to this controller are then sent to the Database objects annotationQuery function.
|