Skip to content

Releases: VictoriaMetrics/victorialogs-datasource

v0.22.4

05 Dec 10:05
c07ac79

Choose a tag to compare

  • BUGFIX: fix an issue where the Internal link from derived fields config was disabled. See #479.
  • BUGFIX: fix an issue where the show context failed if disable labels with transformations. See #480.
  • BUGFIX: add tenant information as a query parameter to url in Run in vmui button. See #480.
  • BUGFIX: fix vulnerability CVE-2025-58187 by updating Go version from 1.25.0 to 1.25.4. Thanks for contributing @ami-descope. See #477.

v0.22.3

01 Dec 10:47
2d411af

Choose a tag to compare

  • BUGFIX: fix an issue where _msg was incorrectly parsed to detected_level label according to Log Level rules. See #465.
  • BUGFIX: fix an issue where the Logs panel shows an empty view when infinite scrolling at the bottom. See #466.

v0.22.2

25 Nov 09:41
d545b5b

Choose a tag to compare

  • BUGFIX: fix an issue where an empty textbox variable was incorrectly interpolated. See #454.
  • BUGFIX: fix a glob package vulnerability CVE-2025-64756.
  • BUGFIX: fix an issue where live tailing logs in Grafana's explore page does not work. See #460.

v0.22.1

20 Nov 15:17
796bf56

Choose a tag to compare

  • BUGFIX: fix an interpolating query with multivariables when going to the "explore" page. See #380.
  • BUGFIX: fix an issue where * was used instead of a variable with the selected All value. Now the priority is as follows: first, the allValue value is used, which is defined in the variable settings, if there is no such value and there is a query in the variable setting to filter the values, then the list of return values is used, if there is no query, then * is used for normal filters and .* for regexp filters. See #452.
  • BUGFIX: fix an interpolating query in variable settings: use the same algorithm as for the query on dashboards. See #455.
  • BUGFIX: fix an issue where a query was incorrectly interpolated with a variable inside a regexp operator. See #449.

v0.22.0

14 Nov 14:55
c1c4d91

Choose a tag to compare

  • FEATURE: add bars as the default type of visualization for explore mode. Adjust the width of the bars to match the step size. See #420.

  • BUGFIX: fix an issue where a warning was displayed when using the regexp operator not with a variable. See #438.

  • BUGFIX: fix an issue where a single value wasn't interpolated by double quotes. See #444.

v0.21.4

05 Nov 14:39
1413eb4

Choose a tag to compare

  • BUGFIX: fix backward compatibility with queries containing regexp variables. Error in queries with regexp variables has been replaced with a warning with quick fix action. See #432.

v0.21.3

03 Nov 15:05
dcb7026

Choose a tag to compare

  • BUGFIX: sanitize URLs to prevent potential security issues, properly close gzip reader to prevent resource leaks, fix text filter interpolation for * character. See pr #429.

v0.21.2

29 Oct 11:24
976f46e

Choose a tag to compare

  • BUGFIX: fix setting extra_stream_filters param to Custom query parameters. See this comment.
  • BUGFIX: add sort by (_time) asc/desc pipe if logs are sorted in asc/desc order. In versions of grafana below 12.x.x, you need to manually run the query if the sorting has been changed. See #379.
  • BUGFIX: fix the issue of overwriting the level label. Set the calculated level into a detected_level label, which is supported only in Grafana version 11.0.8 and above. See #425.
  • BUGFIX: fix interpolation of multi-value query variables by mapping filterName:$filterVar and filterName:=$filterVar to the filerName:in("v1", ..., "vN"). Support negative operators and stream tags({tag = $var} to {tag in($var)}). Disallow interpolation in regexp with variables (e.g., field:~$var). See #238.
  • BUGFIX: fix rendering the graph with stats range queries by filling missing timestamps with null values. See #421.

v0.21.1

16 Oct 15:02
e64980f

Choose a tag to compare

  • BUGFIX: fix an issue with parsings of the logs lines when in the logs line empty _stream and missed _msg fields. See #330.
  • BUGFIX: fix applying Custom query parameters when querying from Grafana variables. See #405.
  • BUGFIX: fix duplication of level label. Keep the original level label as __orig_level for clarity and transparency if new calculated label after applying the datasource Log Level Rules is different from the original. See #400.

v0.21.0

19 Sep 12:23
f375d76

Choose a tag to compare

  • FEATURE: add run in vmui button. The VMUI URL can be configured in the datasource settings. If not specified, the datasource URL with the path /select/vmui will be used. See #369.

  • BUGFIX: fix unpredictable behavior when determining a Max Data Points option for a range query. See #393.

  • BUGFIX: respect user-specified Min Interval for a range queries. Before, the interval could have been rounded to smaller values and result in unexpected distance between datapoints on graph. See #390.

  • BUGFIX: fix an issue with the incorrect handling option field in the query for the /stats API. By the documentation it should be passed at the beginning of LogsQL query. See #389.