ma telegraf/hamstats: init
This commit is contained in:
parent
0675584001
commit
375b01004e
28
makefu/2configs/stats/telegraf/hamstats.nix
Normal file
28
makefu/2configs/stats/telegraf/hamstats.nix
Normal file
@ -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");
|
||||
}
|
Loading…
Reference in New Issue
Block a user