summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/stats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-09-18 12:46:39 +0200
committermakefu <github@syntax-fehler.de>2018-09-18 12:46:39 +0200
commit375b01004e645acd645e5daac6361705ae504133 (patch)
tree88f9daff0444b58e37910c2e729bb26ac04b363f /makefu/2configs/stats
parent0675584001b3c0f0c004a86802f373f300d866b9 (diff)
ma telegraf/hamstats: init
Diffstat (limited to 'makefu/2configs/stats')
-rw-r--r--makefu/2configs/stats/telegraf/hamstats.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/makefu/2configs/stats/telegraf/hamstats.nix b/makefu/2configs/stats/telegraf/hamstats.nix
new file mode 100644
index 00000000..88c1b6d5
--- /dev/null
+++ b/makefu/2configs/stats/telegraf/hamstats.nix
@@ -0,0 +1,28 @@
+{ pkgs, ...}:
+
+let
+ genTopic = name: topic: tags: {
+ servers = [ "tcp://localhost:1883" ];
+ username = "stats";
+ password = builtins.readFile <secrets/mqtt/stats>;
+ qos = 0;
+ connection_timeout = "30s";
+ topics = [ topic ];
+ tags = tags;
+ persistent_session = false;
+ name_override = name;
+ data_format = "json";
+ # json_query = tags.sensor; #TODO?
+ };
+ hamStat = host:
+ sensor:
+ (genTopic sensor
+ "/ham/${host}/${sensor}/tele/SENSOR"
+ {"host" = host;
+ "scope" = "ham";
+ "sensor" = sensor;
+ } );
+ bme = host: [(hamStat host "BME280")];
+in {
+ services.telegraf.extraConfig.inputs.mqtt_consumer = (bme "schlafzimmer");
+}