Skip to content
Snippets Groups Projects

Add support for saving data to multiple sinks

Merged Karol Krizka requested to merge combsink into devel

Files

+ 9
1
@@ -11,7 +11,7 @@
@@ -11,7 +11,7 @@
"sinktype": "CSVSink",
"sinktype": "CSVSink",
"directory": "myOutputData"
"directory": "myOutputData"
},
},
"db": {
"db": {
"sinktype": "InfluxDBSink",
"sinktype": "InfluxDBSink",
"host": "127.0.0.1",
"host": "127.0.0.1",
"port": 8086,
"port": 8086,
@@ -21,6 +21,14 @@
@@ -21,6 +21,14 @@
"precision": 5
"precision": 5
}
}
},
},
 
"datastreams":{
 
"PowerSupplies":{
 
"sinks": ["Console", "db"]
 
},
 
"Climate":{
 
"sinks": ["Console"]
 
},
 
}
"devices": {
"devices": {
"PS" : {
"PS" : {
"hw-type": "PS",
"hw-type": "PS",
Loading