-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
51 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
vzlogger (0.8.5-1) unstable; urgency=medium | ||
vzlogger (0.8.6-1) unstable; urgency=medium | ||
|
||
* New upstream release (Closes: #1070430) | ||
* Fixed passing of hardening flags to cmake | ||
* Bumped Standards-Version to 4.7.0 | ||
* Fixed several Lintian ifo level issues | ||
* Fixed several Lintian info level issues | ||
* Moved configuration change from git to quilt patch | ||
|
||
-- Joachim Zobel <[email protected]> Sat, 11 May 2024 13:40:14 +0200 | ||
-- Joachim Zobel <[email protected]> Fri, 17 May 2024 06:32:32 +0200 | ||
|
||
vzlogger (0.8.3-1) unstable; urgency=medium | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- a/etc/vzlogger.conf | ||
+++ b/etc/vzlogger.conf | ||
@@ -29,9 +29,11 @@ | ||
|
||
// realtime notification settings | ||
"push": [ | ||
+ /* | ||
{ | ||
"url": "http://127.0.0.1:5582" // notification destination, e.g. frontend push-server | ||
} | ||
+ */ | ||
], | ||
|
||
// mqtt client support (if ENABLE_MQTT set at cmake generation) | ||
@@ -154,6 +156,28 @@ | ||
} | ||
}, | ||
{ | ||
+ /* A minimal example that "just works" on Debian. | ||
+ The steps needed are: | ||
+ 1. Install influxdb: sudo apt install influxdb influxdb-client | ||
+ 2. Start the client by calling influx on the command line and | ||
+ create db: CREATE DATABASE vzlogger | ||
+ 3. Set enabled to true in the configuration below | ||
+ */ | ||
+ "enabled": false, // disabled meters will be ignored | ||
+ "allowskip": false, // errors when opening meter may be ignored if enabled | ||
+ | ||
+ "protocol": "random", | ||
+ "interval": 2, | ||
+ "max": 40.0, // has to be double! | ||
+ "min": -5.0, // has to be double! | ||
+ "channel": { | ||
+ "uuid": "25a53b28-75ec-4764-a8a6-68587722ddab", | ||
+ // For details on the influxdb configuration see vzlogger.conf.InfluxDB | ||
+ "api": "influxdb", | ||
+ "host": "localhost:8086" | ||
+ } | ||
+ }, | ||
+ { | ||
"enabled": false, // disabled meters will be ignored | ||
"allowskip": false, // errors when opening meter may be ignored if enabled | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
just-works-conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
README*.md | ||
README.*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
version=4 | ||
opts=filenamemangle=s/.+\/v?([\.\d]+)\.tar\.gz/vzlogger-$1\.tar\.gz/,\ | ||
downloadurlmangle=s/archive\/refs\/tags\/v([\.\d]+)\.tar\.gz/releases\/download\/v$1\/vzlogger-$1\.tar\.gz/ \ | ||
https://github.com/volkszaehler/vzlogger/tags .*/v?([\.\d]+)\.tar\.gz | ||
https://github.com/volkszaehler/vzlogger/tags .*/v?(\d.*)@ARCHIVE_EXT@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters