This is a plugin for Grafana that allows for connections to the Deep.
Currently, this plugin is not available on the Grafana marketplace. So to use this plugin you need to manually install it.
To install this plugin into Grafana follow the steps below:
- Build the plugin
- Either build from source or
- Download the latest release from Github
- Unzip or copy the build output to the plugins directory for Grafana (In docker this is /var/lib/grafana/plugins/)
- Now do the same for intergral-deep-panel
- Now start Grafana and you will be able to add Deep as a datasource.
If you are using the unsigned version of the build you need to add an exception to the grafana.ini file.
- When using the unsigned
- Add the line
allow_loading_unsigned_plugins = intergral-deep-panel,intergral-deep-datasource
tografana.ini
( In docker this is /etc/grafana/grafana.ini) in the[plugins]
section. - Here we hae also added the allowance for the panel plugin that this plugin requires.
- Add the line
If you are building a container with docker then you can simply use the pre-built image.
If you are already building a custom docker image for Grafana then you can use docker build layers to add Deep.
# Add our image as a build layer
FROM intergral/grafana-deep:latest as deep
# Now continue your build
FROM grafana/grafana
# Copy our plugins from the deep image
COPY --from=deep /var/lib/grafana/plugins/ /var/lib/grafana/plugins/
# continnue with your build steps