influxdb - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: influxdb (/showthread.php?tid=1531) |
RE: influxdb - sx3 - 17.10.2022 Thanks admin, that worked fine! However, the script pushes a hell load of data to influx that is not really necessary. I could use the "range" tip from above, but using "tags" would be easier and more flexible for future changes. I tried my best, but I don't think I understand event.getvalue to be honest. This particular GA have 2 tags, one of them is "influxdb" BTW, any suggestion on the timestamp manipulation? Code: function knx_callback(event) RE: influxdb - admin - 18.10.2022 Try this rewritten version: Code: local http = require('socket.http') RE: influxdb - tigi - 27.10.2022 Hi admin, Above script is working perfectly however is there a way I can use this as a scheduled script? I see it's now kept resident and sends data according what is generated by the objects and that can be alot making one object hijacking the stream. I tried changing the busclient and while loop part but without any success, it only sends one objects data and then stops. Is there any info on the localbus and how to use it? Thanks! RE: influxdb - admin - 28.10.2022 You don't need localbus for this as the current object value is already stored in the database. Code: local http = require('socket.http') RE: influxdb - tigi - 28.10.2022 Hi Admin, Thank you very much for clearing that out and for the solution. Greetings RE: influxdb - sx3 - 23.12.2022 I have noted that influxDB somehow doesn't like the BOOL values sent to it. When trying to show the values I get the error "unsupported input type for mean aggregate: boolean" If I set aggregate function to last in influxDB, it just give me an infinite line. Doesn't show the actual state of True/false. Should the BOOL values also be "escape(value)" as the strings? RE: influxdb - admin - 23.12.2022 A possible solution is to send 1/0 instead of true/false. Then you can use aggregate functions. Code: if type(value) == 'boolean' then RE: influxdb - DGrandes - 04.01.2024 Hi! I have a problem sending strings to influxdb How can I send 250bytes or 14bytes strings? I've tried with Code: local function escape(value) but doesn´t work. This is the error: Code: * string: {"code":"invalid","message":"unable to parse 'DatosLM,name=PruebaString,addr=32/1/4 value=Probando\\ String': invalid boolean"} RE: influxdb - admin - 04.01.2024 You need to use a different field name for each data type (boolean, number, string). See how it's done here: https://kb.logicmachine.net/integration/influxdb/ It looks like you've already written a boolean value into "string" field so it won't accept string data into this field anymore. Either choose a different field name and modify the script accordingly. Or delete the bucket and create it again. RE: influxdb - DGrandes - 04.01.2024 Thanks! It works I don´t know whiy doesn´t work because I try with diferent "field" names. But now it works. RE: influxdb - DGrandes - 12.01.2024 Hi! I have a question about Grafana representacion of influxdb data. I know that is grafana question but anyone says nothing, this forum is not active... Mayby somebody made. I send data from LM to influxdb when they change, no in scheduled script. If I put time filter I can't see the first value (the value before the change). And if there are no changes in the data in the filter, it says "No data". Is there a way to represent the last value in the database if there are no changes? RE: influxdb - admin - 12.01.2024 You can setup a scheduled script that periodically sends the current value. I don't see any other solution. RE: influxdb - DGrandes - 13.01.2024 (12.01.2024, 15:08)admin Wrote: You can setup a scheduled script that periodically sends the current value. I don't see any other solution. Ok thanks! that's what I had thought. I was wondering if there was another way to save the data in real time. Thanks! RE: influxdb - admin - 13.01.2024 You can use both resident and scheduled scripts for influxdb in parallel. RE: influxdb - sck - 09.08.2024 Hi, I am trying to export all the data from the bus to influxdb but I am afraid I am not sure whether is working or not since I am not very familiar with influxdb. I have tagged all the objects with the proper label and set the script to resident following the indications. I also have configured the proper URL and the token which I have checked works since in Grafana I use the same data. What I don´t see is from the server any bytes received or sent to the influxdb so I suspect is not working well. I have mainly two questions, One is to know why I am getting so many errors in the error log that I have attached. The other is to know within my new ´ets´ bucket, what will be the data model so I know how to query the data since I don´t see any familiar fields. If you have any example query to see all the KNX bus data I could try that one. Thanks! RE: influxdb - admin - 12.08.2024 What is influxtable variable set to in your script? It must be a string but it looks like you have a Lua table there. RE: influxdb - sck - 12.08.2024 (12.08.2024, 07:10)admin Wrote: What is influxtable variable set to in your script? It must be a string but it looks like you have a Lua table there. Hi, I left it as it was in the original script: local influxtable = 'rawdata' RE: influxdb - admin - 12.08.2024 Post your script. RE: influxdb - sck - 12.08.2024 (12.08.2024, 07:38)admin Wrote: Post your script. Code: local http = require('socket.http') RE: influxdb - admin - 12.08.2024 Turns out the script is not fully correct. To fix this replace table with influxtable on line 26, 28 and 30. |