Releases: VictoriaMetrics/victorialogs-datasource
v0.20.0
-
FEATURE: upgrade Go builder from Go1.24.2 to Go1.25. See Go1.25 release notes.
-
FEATURE: add current version and changelog link to the Helpful links section.
-
FEATURE: add support for multi-value operators (
one of,not one of) in Ad hoc filters (available since Grafana 11.3.x). See #293. -
BUGFIX: fix log level coloring when no custom rules are configured. See #347.
-
BUGFIX: respect adhoc filters variables. See #361
-
BUGFIX: fix issue with concurrent map writes when performing multiple requests to the datasource. See #363
-
BUGFIX: fix a parsing issue with quoted characters inside
_streamfields. See #365. -
BUGFIX: fix an issue with parsing stats response when it can be empty or have empty string or
nilas a value. See #374.
v0.19.3
v0.19.2
- BUGFIX: fix regression of the plugin that cause the plugin to not work with
field_valuesandfield_namesqueries. Fix comments after the plugin verification procedure.
v0.19.1
- BUGFIX: upgrade
jestlibrary version to fix vulnerability warning.
v0.19.0
-
BREAKING: increase minimum required Grafana version to
>=10.4.0to ensure compatibility with@grafana/plugin-ui. This drops support for older Grafana versions. -
BUGFIX: fix an issue with missing
_msgfield in the response. If_msgfield is missed in the response now always returned as an empty string. See #330. -
BUGFIX: fix an issue with parsing of the
_streamfield that contains commas in its value. Previously, commas in the_streamfield values were incorrectly processed, leading to parsing errors. This has been fixed to properly handle complex string values with commas. See #334. -
BUGFIX: fix an issue with parsing timestamp from the
_timefield if it contains nanosecond precision. Now, the plugin correctly handles timestamps with nanosecond precision in the_timefield and do not round it, ensuring accurate time representation in logs. See #340
v0.18.1
- BUGFIX: fix an issue when the additional
levellabel was added if the logs level rules aren't configured. See this issue. - BUGFIX: fix an issue with loading field names when creating a variable using a variable or a regexp operator in the query. See this issue.
- BUGFIX: fix an issue where ad-hoc filtering is applied incorrectly with extract pipe. See this issue.
v0.18.0
- FEATURE: improve query builder – when using AND operator, field and value selection is now narrowed. See this issue.
- FEATURE: add a section to the datasource settings for tenant configuration. See this issue.
- BUGFIX: fix an issue where line charts were incorrectly connecting data points across missing (null) values despite the "Connect null values" panel setting being set to "Never". See this issue.
v0.17.0
- FEATURE: add support for configuring log level using custom rules. See this issue.
- FEATURE: add support for build the freebsd/amd64. See this pull request. Thanks to @AlexanderThaller.
- BUGFIX: fix an issue when Grafana decides that the response is not a wide series and shows the error "input data must be a wide series but got type not (input refid)". See this issue.
v0.16.3
- FEATURE: enabled PDC support. See VictoriaMetrics#8800 for details.
- BUGFIX: fix shows the original error message returned from the VictoriaLogs backend on status code 400. It should help to troubleshoot problems with query or syntax. See this pull request.
- BUGFIX: fix extend the
Custom query parameterslabel width to fix the title. See this pull request
Thanks to @tommysitehost. - BUGFIX: fix handle empty
_streamfield when it returns like_stream:"{}"from the datasource. See this issue.
v0.16.2
- BUGFIX: properly close io.ReadCloser to avoid memory leak. See this pull request.