Skip to content

Commit 787afcb

Browse files
authored
update CHANGELOG.md, README.md and package.json (#215)
* update CHANGELOG.md, README.md and package.json * fix images
1 parent bd50e97 commit 787afcb

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## tip
44

5+
* BUGFIX: clean up the plugin codebase after the plugin verification procedure. See [this PR](https://github.com/VictoriaMetrics/victorialogs-datasource/pull/213) and [this PR](https://github.com/VictoriaMetrics/victorialogs-datasource/pull/214).
6+
57
## v0.13.4
68

79
* BUGFIX: updated the backend plugin ID and revised the README.md file after the plugin verification procedure. See [this PR](https://github.com/VictoriaMetrics/victorialogs-datasource/pull/208).

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Please find the example of provisioning Grafana instance with VictoriaLogs datas
6767
grafana:
6868
image: grafana/grafana:11.0.0
6969
environment:
70-
- GF_INSTALL_PLUGINS=https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.13.4/victoriametrics-logs-datasource-v0.13.4.zip;victoriametrics-logs-datasource
70+
- GF_INSTALL_PLUGINS=https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.13.5/victoriametrics-logs-datasource-v0.13.5.zip;victoriametrics-logs-datasource
7171
- GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=victoriametrics-logs-datasource
7272
ports:
7373
- 3000:3000/tcp
@@ -95,15 +95,15 @@ Option 1. Using Grafana provisioning:
9595

9696
``` yaml
9797
env:
98-
GF_INSTALL_PLUGINS: "https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.13.4/victoriametrics-logs-datasource-v0.13.4.zip;victoriametrics-logs-datasource"
98+
GF_INSTALL_PLUGINS: "https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.13.5/victoriametrics-logs-datasource-v0.13.5.zip;victoriametrics-logs-datasource"
9999
GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS: "victoriametrics-logs-datasource"
100100
```
101101

102102
Option 2. Using Grafana plugins section in `values.yaml`:
103103

104104
``` yaml
105105
plugins:
106-
- https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.13.4/victoriametrics-logs-datasource-v0.13.4.zip;victoriametrics-logs-datasource
106+
- https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.13.5/victoriametrics-logs-datasource-v0.13.5.zip;victoriametrics-logs-datasource
107107
```
108108

109109
Option 3. Using init container:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "victoriametrics-logs-datasource",
3-
"version": "0.13.4",
3+
"version": "0.13.5",
44
"description": "VictoriaLogs datasource plugin for grafana",
55
"scripts": {
66
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",

src/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The VictoriaLogs Grafana plugin allows Grafana to query, visualize,
44
and interact with [VictoriaLogs](https://docs.victoriametrics.com/victorialogs),
55
a high-performance log storage and processing system.
66

7-
![dashboard.png](img/dashboard.png)
7+
![dashboard.png](https://github.com/VictoriaMetrics/victorialogs-datasource/blob/main/src/img/dashboard.png)
88

99
## Capabilities
1010

@@ -62,21 +62,21 @@ and LogsQL examples [here](https://docs.victoriametrics.com/victorialogs/logsql-
6262
For using [Logs panel](https://grafana.com/docs/grafana/latest/panels-visualizations/visualizations/logs/)
6363
switch to `Raw Logs` query type:
6464

65-
![panel_logs.png](img/panel_logs.png)
65+
![panel_logs.png](https://github.com/VictoriaMetrics/victorialogs-datasource/blob/main/src/img/panel_logs.png)
6666

6767
### Time series panel
6868

6969
For using [Time series panel](https://grafana.com/docs/grafana/latest/panels-visualizations/visualizations/time-series/)
7070
switch to `Range` query type:
7171

72-
![panel_time_series.png](img/panel_time_series.png)
72+
![panel_time_series.png](https://github.com/VictoriaMetrics/victorialogs-datasource/blob/main/src/img/panel_time_series.png)
7373

7474
### Stats panel
7575

7676
For using [Stats panel](https://grafana.com/docs/grafana/latest/panels-visualizations/visualizations/stat/)
7777
switch to `Instant` query type:
7878

79-
![panel_stat.png](img/panel_stat.png)
79+
![panel_stat.png](https://github.com/VictoriaMetrics/victorialogs-datasource/blob/main/src/img/panel_stat.png)
8080

8181
For enabling background visualization switch to `Range` query type.
8282

@@ -85,11 +85,11 @@ For enabling background visualization switch to `Range` query type.
8585
For using [Table panel](https://grafana.com/docs/grafana/latest/panels-visualizations/visualizations/table/)
8686
switch to `Raw Logs` query type:
8787

88-
![panel_table.png](img/panel_table.png)
88+
![panel_table.png](https://github.com/VictoriaMetrics/victorialogs-datasource/blob/main/src/img/panel_table.png)
8989

9090
And apply `Transformations` by labels:
9191

92-
![panel_table_transformation.png](img/panel_table_transformation.png)
92+
![panel_table_transformation.png](https://github.com/VictoriaMetrics/victorialogs-datasource/blob/main/src/img/panel_table_transformation.png)
9393

9494
## License
9595

0 commit comments

Comments
 (0)