Skip to content

Commit 972d655

Browse files
committed
Add VictoriaMetrix as InfluxDB alternative
The fate of InfuxDB is unclear with many home users not switching to version 3 of InfluxDB. Being stuck at an older version brings with it the danger of unfixed security issues, but there is hope. VictoriaMetrics has among others a REST API, which is compatible with InfluxDB. Thus it can be used as a drop in replacement in evcc. However Grafana dashboards have to be rebuild, because it does not support any of InfluxDBs query languages and users internally a different data model.
1 parent f120cea commit 972d655

File tree

2 files changed

+44
-0
lines changed
  • docs/reference/configuration
  • i18n/en/docusaurus-plugin-content-docs/current/reference/configuration

2 files changed

+44
-0
lines changed

docs/reference/configuration/influx.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,25 @@ influx:
3737
token: 1234567890abcdef
3838
org: home
3939
```
40+
41+
## VictoriaMetrics
42+
43+
[VictoriaMetrix](https://github.com/VictoriaMetrics/VictoriaMetrics) ist eine Time Series Datenbank mit InfluxDB kompatibler REST API.
44+
45+
**Beispiel für VictoriaMetrics**:
46+
47+
```yaml
48+
influx:
49+
url: http://victoria-metrics:8428
50+
```
51+
52+
### Mit basic authentication
53+
54+
Basic authentication ist mit der URL möglich.
55+
56+
**Beispiel für VictoriaMetrics mit basic authentication**:
57+
58+
```yaml
59+
influx:
60+
url: http://username:password@victoria-metrics:8428
61+
```

i18n/en/docusaurus-plugin-content-docs/current/reference/configuration/influx.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,25 @@ influx:
3737
token: 1234567890abcdef
3838
org: home
3939
```
40+
41+
## VictoriaMetrics
42+
43+
[VictoriaMetrix](https://github.com/VictoriaMetrics/VictoriaMetrics) is a time series database with InfluxDB compatible REST API.
44+
45+
**Example for VictoriaMetrics**:
46+
47+
```yaml
48+
influx:
49+
url: http://victoria-metrics:8428
50+
```
51+
52+
### With basic authentication
53+
54+
Basic authentication can be done via the URL.
55+
56+
**Example for VictoriaMetrics with basic authentication**:
57+
58+
```yaml
59+
influx:
60+
url: http://username:password@victoria-metrics:8428
61+
```

0 commit comments

Comments
 (0)