Yury Molodov

Results 82 comments of Yury Molodov

Hi, @bdschaap Thanks for detailing the issue with VictoriaMetrics in Grafana. I couldn't reproduce the problem on my end, but I suggest the following: Parameter Accuracy: Please ensure that `extra_filters[]={cluster_name="mycluster"}`...

The `_time` value is inserted from Grafana's time picker. We need to replace `_time` with `start` and `end` query args, similar to what was done in [PR #6296](https://github.com/VictoriaMetrics/VictoriaMetrics/pull/6296).

Hi @crocchietta, we plan to add this feature in the future, but the exact timelines are not yet determined.

Starting from [v0.8.0](https://github.com/VictoriaMetrics/victorialogs-datasource/releases/tag/v0.8.0), victorialogs-datasource supports `/select/logsql/stats_query` and `/select/logsql/stats_query_range` endpoints, enabling Time series and other panel types. We also plan to add support for `/select/logsql/hits`, which will allow displaying accurate histograms...

**Roadmap for Future Improvements:** - [ ] **Support for the NOT operator**. Example expressions: `_time:5m error NOT buggy_app` and `_time:5m log.level:error !(buggy_app OR foobar)`. - [ ] **Support for creating...

Hi, @archef2000! Pipe support is planned, but not in the near future. We’d be happy to review a PR if someone is up for it!

1. I agree, but we need to be careful here — some pipe operations allow parts of the phrase to be omitted. For example, `sort` can be written as `sort...

I run the frontend part using `npm run dev`, and when I make changes, I just refresh the page in the browser. If the changes don't apply, try opening the...

[Full instructions on GitHub](https://github.com/VictoriaMetrics/victorialogs-datasource#getting-started-development) 1. **Start the frontend dev server:** ```bash npm run dev ``` 2. **Update `grafana.ini`:** ```ini [paths] plugins = ../../../WebstormProjects/grafana-logs-datasource/plugins [plugins] allow_loading_unsigned_plugins = victoriametrics-logs-datasource ``` 3. **Start...

> Is there a performance difference between `field1: "test" AND fiel2: "test"` and `field1: "test" | fiel2: "test"` There doesn't seem to be any performance difference