Skip to content

Commit

Permalink
Bump 0.4.5, require grafana>=10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelemeny committed Apr 15, 2024
1 parent 5d12df8 commit 9a35aae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
17 changes: 4 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ The license for this project is [AGPL-3.0](LICENSE.md), and a [notice](NOTICE.md

We recommend Grafana v10.X.

Quickwit 0.6 is compatible with 0.2.x versions only.

Quickwit 0.7 is compatible with 0.3.x versions only.

Quickwit 0.8 is compatible with 0.4.x versions only.
Expand All @@ -31,20 +29,20 @@ Quickwit 0.8 is compatible with 0.4.x versions only.

You can either download the plugin manually and unzip it into the plugin directory or use the env variable `GF_INSTALL_PLUGINS` to install it.

### 0.4.1 for Quickwit 0.8
### 0.4.5 for Quickwit 0.8

Run `grafana-oss` container with the env variable:

```bash
docker run -p 3000:3000 -e GF_INSTALL_PLUGINS="https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.4.4/quickwit-quickwit-datasource-0.4.4.zip;quickwit-quickwit-datasource" grafana/grafana-oss run
docker run -p 3000:3000 -e GF_INSTALL_PLUGINS="https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.4.5/quickwit-quickwit-datasource-0.4.5.zip;quickwit-quickwit-datasource" grafana/grafana-oss run
```

Or download the plugin manually and start Grafana

```bash
wget https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.4.4/quickwit-quickwit-datasource-0.4.4.zip
wget https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.4.5/quickwit-quickwit-datasource-0.4.5.zip
mkdir -p plugins
unzip quickwit-quickwit-datasource-0.4.4.zip -d plugins/quickwit-quickwit-datasource-0.4.4
unzip quickwit-quickwit-datasource-0.4.5.zip -d plugins/quickwit-quickwit-datasource-0.4.5
docker run -p 3000:3000 -e GF_PATHS_PLUGINS=/data/plugins -v ${PWD}/plugins:/data/plugins grafana/grafana-oss run
```

Expand All @@ -65,13 +63,6 @@ unzip quickwit-quickwit-datasource-0.3.2.zip -d plugins/quickwit-quickwit-dataso
docker run -p 3000:3000 -e GF_PATHS_PLUGINS=/data/plugins -v ${PWD}/plugins:/data/plugins grafana/grafana-oss run
```

### 0.2.4 for Quickwit 0.6


```bash
docker run -p 3000:3000 -e GF_INSTALL_PLUGINS="https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.2.4/quickwit-quickwit-datasource-0.2.4.zip;quickwit-quickwit-datasource" grafana/grafana-oss run
```

## Additional instructions

If you are running a local Quickwit instance on Linux, add the `--network=host` argument to the `docker run` command. This will allow Grafana to access services on the host machine. You can later use `http://localhost:7280/api/v1` in the Quickwit API URL when configuring the data source.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quickwit-datasource",
"version": "0.4.4",
"version": "0.4.5",
"description": "Quickwit datasource",
"scripts": {
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"updated": "%TODAY%"
},
"dependencies": {
"grafanaDependency": ">=9.5",
"grafanaDependency": ">=10.0",
"plugins": []
}
}

0 comments on commit 9a35aae

Please sign in to comment.