Skip to content

Commit 3c45f1a

Browse files
authored
Merge pull request #106 from quickwit-oss/ddelemeny/update-readme-0.4.0
Update README
2 parents fc6b66e + c7c9841 commit 3c45f1a

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,35 @@ The license for this project is [AGPL-3.0](LICENSE.md), and a [notice](NOTICE.md
1919

2020
## Version compatibility
2121

22-
We recommand Grafana v9.5 or v10.
22+
We recommend Grafana v10.X.
2323

2424
Quickwit 0.6 is compatible with 0.2.x versions only.
2525

2626
Quickwit 0.7 is compatible with 0.3.x versions only.
2727

28+
Quickwit 0.8 is compatible with 0.4.x versions only.
2829

2930
## Installation
3031

3132
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.
3233

34+
### 0.4.0 for Quickwit 0.8
35+
36+
Run `grafana-oss` container with the env variable:
37+
38+
```bash
39+
docker run -p 3000:3000 -e GF_INSTALL_PLUGINS="https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.4.0/quickwit-quickwit-datasource-0.4.0.zip;quickwit-quickwit-datasource" grafana/grafana-oss run
40+
```
41+
42+
Or download the plugin manually and start Grafana
43+
44+
```bash
45+
wget https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.4.0/quickwit-quickwit-datasource-0.4.0.zip
46+
mkdir -p plugins
47+
unzip quickwit-quickwit-datasource-0.4.0.zip -d plugins/quickwit-quickwit-datasource-0.4.0
48+
docker run -p 3000:3000 -e GF_PATHS_PLUGINS=/data/plugins -v ${PWD}/plugins:/data/plugins grafana/grafana-oss run
49+
```
50+
3351
### 0.3.2 for Quickwit 0.7
3452

3553
Run `grafana-oss` container with the env variable:
@@ -100,9 +118,25 @@ datasources:
100118
- Dashboard view.
101119
- Template variables.
102120
- Adhoc filters.
121+
- Annotations
103122
- Explore Log Context.
104123
- [Alerting](https://grafana.com/docs/grafana/latest/alerting/).
105124
125+
## FAQ and Limitations
126+
127+
### The editor shows errors in my query
128+
129+
If you’re sure your query is correct and the results are fetched, then you’re fine! The query linting feature is still quite rough around the edges and will improve in future versions of the plugin.
130+
If results are not fetched, make sure you are using a recent version of Quickwit, as some improvements have been made to the query parser.
131+
132+
### The older logs button stops working
133+
134+
This is probably due to a bug in Grafana up to versions 10.3, the next release of Grafana v10.4 should fix the issue.
135+
136+
### There are holes in my logs between pages
137+
138+
This may be due to a limitation of the pagination scheme. In order to avoid querying data without controlling the size of the response, we set a limit on how many records to fetch per query. The pagination scheme then tries to fetch the next chunk of results based on the timestamps already collected and may skip some logs if there was more records with a given timestamp.
139+
To avoid that : try using timestamps with a finer resolution if possible, set the query limits higher or refine your query.
106140
107141
## Contributing to Quickwit datasource
108142

0 commit comments

Comments
 (0)