Skip to main content

How to setup Grafana with unsigned plugin in Docker

  1. Install Docker
  2. Download Solarwinds datasource plugin from https://github.com/etichy/grafana-swis-datasource.
  3. Setup a folder for data persistent
mkdir data # creates a folder for your data
ID=$(id -u) # saves your user id in the ID variable
  1. Unzip the plugin and put it under the plugins folder within data folder that is created in step 2
  2. Run Grafana
docker run --user $ID --volume "$PWD/data:/var/lib/grafana" -p 3000:3000 --name grafana --rm grafana/grafana

The following messages should be seen 681de02e11afa640daa52d1e592614ef_MD5

The datasource will be available under Configurations -> Data sources image (1)