You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 12, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,29 @@
1
1
# Changelog
2
2
3
+
## 0.6.0
4
+
5
+
### What's Changed
6
+
7
+
- React 19 compatibility for Grafana 13
8
+
- Add quick filters with value autocomplete and clearer filter operations
9
+
- Add trace search and full trace rendering for OpenTelemetry trace indexes, with Grafana trace frames, service node graph, span events, exception stack traces, status/warning handling, service tags, peer service metadata, and stable per-service node colors
10
+
- Add trace-to-logs and log-to-trace correlation links between separate Quickwit logs and traces datasources
11
+
- Add datasource configuration fields for related logs/traces datasources
12
+
- Add configurable filter autocomplete chain mode (no chain, sampled chain, full chain)
13
+
- Add configurable filter autocomplete value limit (defaults to 1000, `0` for unlimited)
14
+
- Show useful default log messages for OTEL logs when no message field is configured
15
+
- Migrate e2e tests from Cypress to Playwright and add Quickwit datasource e2e test
16
+
- Add Grafana version matrix to e2e tests
17
+
- Fix log panel flickering in Grafana 12.3+ by assigning stable row IDs
18
+
- Fix Shift-Enter keymapping on latest Grafana versions
19
+
- Fix missing `AND` when adding ad hoc filters
20
+
- Fix ad hoc filters for JSON array values, including values with spaces or colons
21
+
- Fix multi-value template variable interpolation for Quickwit queries
22
+
- Document Grafana 12.1+ plugin installation with `GF_PLUGINS_PREINSTALL_SYNC`
23
+
- Handle Grafana 13 overlays in e2e tests
24
+
- Bump Go and Node dependencies to fix high vulnerabilities
Copy file name to clipboardExpand all lines: README.md
+23-18Lines changed: 23 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,17 @@
4
4
5
5
The Quickwit data source plugin allows you to query and visualize Quickwit data from within Grafana.
6
6
7
-
## 🎉 What's New in v0.5.0
8
-
9
-
-**Grafana 11.x Support**
10
-
-**Fixed Adhoc Filters**: Improved adhoc filters feature for dynamic query building
11
-
-**Enhanced Stability**: Various bug fixes and improvements
7
+
## 🎉 What's New in v0.6.0
8
+
9
+
-**Grafana 12.1+ and 13 Support** (React 19 compatibility)
10
+
-**Trace support** for OpenTelemetry trace indexes, with service node graph, span events, exception stacks, and trace/logs correlation links
11
+
-**Quick filters** with value autocomplete and clearer filter operations
12
+
-**Configurable autocomplete** chain mode and value limit
13
+
-**Better OTEL log display** when no message field is configured
14
+
-**Playwright e2e tests** replacing Cypress, with a Grafana version matrix
15
+
-**Fixed Shift-Enter keymapping** on latest Grafana versions
16
+
-**Fixed ad hoc filters** when appending filters to existing queries
17
+
-**Security updates**: Go and Node dependency bumps
12
18
13
19
It is available for installation directly from the
14
20
[Grafana catalog](https://grafana.com/grafana/plugins/quickwit-quickwit-datasource/) until version 0.4.5
@@ -17,40 +23,39 @@ or you can download the latest version and follow the
17
23
18
24
## Version compatibility
19
25
20
-
We recommend Grafana v10.X or v11.X.
26
+
We recommend Grafana v12.1+ or v13.
21
27
22
28
Quickwit 0.7 is compatible with 0.3.x versions only.
23
29
24
-
Quickwit 0.8 is compatible with 0.4.xand 0.5.x versions.
30
+
Quickwit 0.8 is compatible with 0.4.x, 0.5.x and 0.6.x versions.
25
31
26
-
-**v0.5.x** (Latest): Grafana 11.x with improved adhoc filters
27
-
-**v0.4.x**: Grafana 10.x
32
+
-**v0.6.x** (Latest): Grafana 12.1+ and 13 (React 19)
33
+
-**v0.5.x**: Grafana 11.x
34
+
-**v0.4.x**: Grafana 10.x
28
35
-**v0.3.x**: Grafana 9.x / Quickwit 0.7
29
36
30
37
## Installation
31
38
32
-
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.
33
-
34
-
### 0.5.0 (Latest) for Quickwit 0.8 + Grafana 12.1
39
+
You can either download the plugin manually and unzip it into the plugin directory, or use a Grafana env variable to install it. Note that `GF_INSTALL_PLUGINS` is **deprecated since Grafana 12.1** — use `GF_PLUGINS_PREINSTALL_SYNC` instead on recent versions.
35
40
36
-
`GF_INSTALL_PLUGINS` has been deprecated since 12.1. `GF_PLUGINS_PREINSTALL_SYNC` must be used instead
Run `grafana` container with the env variable (format: `<plugin-id>@<version>@<url>`):
39
44
40
45
```bash
41
-
docker run -p 3000:3000 -e GF_PLUGINS_PREINSTALL_SYNC="quickwit-quickwit-datasource@0.5.0@https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.5.0/quickwit-quickwit-datasource-0.5.0.zip" grafana/grafana run
46
+
docker run -p 3000:3000 -e GF_PLUGINS_PREINSTALL_SYNC="quickwit-quickwit-datasource@0.6.0@https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.6.0/quickwit-quickwit-datasource-0.6.0.zip" grafana/grafana run
0 commit comments