This plugin for Grafana provides an advanced datasource for querying Solr server >= 4. This datasource also provides support for the Solr version bundled with Cloudera CDH 5.X.
This project is open source pursuant to the Apache License, Version 2.0. It is copyright (C) 2018 by PUE Team.
The easiest way to install this plugin is to clone or unzip this repository on the grafana plugins folder. For example:
cd /var/lib/grafana/plugins
git clone https://github.com/pueteam/datasource-plugin-solrThen restart grafana to reload the plugins folder.
-
Add a new datasource and choose "Solr" as the type.
-
Fill in the "Url" and other server parameters. If you run Solr in a kerberized cluster, you'll need LDAP authentication enabled, and provide the credentials here.
-
Optionally, add the collection to use. This is required if you plan to use templates.
-
Click "Test Connection" to verify that you entered the information correctly.
-
Cick "Save".
First, select the query type. You can choose between standard and group. The standard query is the default.
-
Standard Queries: The
standardqueries will execute regular queries against Solr. You'll need to fill theCollection, theTimestampfield, theFieldslist (space or comma separated) and theQueryin the Solr format*:*. -
Group Queries: The
grouptype allows you to group results byGroup By Fieldparameter. You'll also need to fill theGroup Value Fieldand this parameter should be numeric. You can also limit theMax Group Rowsresults.
This plugin supports Templates/Variables to be used, for example, in the Query parameter. You'll need to specify the Collection parameter in the Datasource parameters.
CR:$CR AND city:$cityThis plugin supports auto completion for the Query Parameters.
This plugin also supports Annotations. You'll need to provide:
- Collection
- Query
- Tags
- Title
- Text
- Time
To compile, run the following commands:
npm install
gruntTo install in your Grafana server locally, either point Grafana at the repository directory by
editing grafana.ini to contain:
[plugin.solr]
path = /path/to/some/directory/datasource-plugin-solrOr symlink the repository directory into the Grafana server's plugin directory:
cd /path/to/grafana/data/plugins
ln -s /path/to/some/directory/datasource-plugin-solr .Then restart the Grafana server.
- Sergio Rodriguez de Guzman