Yury Molodov

Results 82 comments of Yury Molodov

Ideally, the query should remain unchanged when converting from Editor to Builder. Minor technical changes are fine if the logic and result stay the same. Just to clarify — formatting...

@archef2000, Here are some examples: ``` _time:30m ("cannot open file" OR i("segmentation fault")) -debug | stream_context before 3 after 2 _time:[2025-05-01T00:00:00Z, 2025-05-02T00:00:00Z) "User "admin" logged in" _time:2h (client_ip:ipv4_range("10.0.0.0/8") OR client_ip:ipv4_range("192.168.1.100"))...

> Does this exact query work with the quotes? > `_time:[2025-05-01T00:00:00Z, 2025-05-02T00:00:00Z) "User "admin" logged in"` My mistake: this part needs to be escaped — `"User "admin" logged in"` →...

In LogsQL, case-insensitive search uses `i("...")` - without the `=`. See [this docs](https://docs.victoriametrics.com/victorialogs/logsql/#case-insensitive-filter). For example, this is correct: ``` file:i("oauth2-proxy") or i("oauth2-proxy") ``` Using `=i("...")` will cause an error. Could...

> In my fork is the major part of the Query Builder. There is still a bit to do and test, but most things should work. Thanks! Feel free to...

Hi, @chenlujjj! Yes, using the APIs `/api/v1/labels` and `/api/v1/label/.../values` is more optimal. In version [v0.8.0](https://github.com/VictoriaMetrics/victoriametrics-datasource/releases/tag/v0.8.0), the logic for creating variables was changed to use these APIs. However, in some cases,...

Yes, I think that will be enough. If anything was missed, you can reopen or create a new feature request.

Hi @Neko-Follower! Thank you for the feedback. I created a separate [issue #65](https://github.com/VictoriaMetrics/victorialogs-datasource/issues/65).

The functionality for fetching variable values is supported in `victorialogs-datasource` starting from version [v0.3.0](https://github.com/VictoriaMetrics/victorialogs-datasource/releases/tag/v0.3.0).

Duplicate of #127. Please follow updates there.