From buffer-parser to values

Your debug output tells you that buffer parser forwarded an object of data.
The join consequentially creates an array of objects.
$sum yet expects an array of numbers - thus throws an error.

I'm not familiar w/ buffer parser, yet it looks like you could change its config to create an array of values = numbers.
The full solution to your issue depends on your requirements; currently you're reading two temp values with each modbus call - which makes four numbers in total.

There's an additional issue in your flow: You have no guarantee that the values you sum-up definitely come from the different sources. To overcome this, you could follow the proposal given by @craigcurtin to put the modbus reads in sequence.

@Wolfe please read this article: Modernize your legacy industrial data. Part 2. • FlowFuse - it was written to help fold avoid the kind of mis-steps you have taken.

  • There is no need to join - read all data at once
  • Dont read individual registers or you get inconsistent data (though not so important here)

Example:

Thanks a lot for your help, somehow difficult to seperate topics for me.

First, yes - inconsitent data isn't a topic. both values (debug6/temp3 and debug4/temp2) are part of a very close modbus data request.

Second, ( :+1:@ralphwetzel) I managed to change the buffer parser output to an array:


bottom line: Output -> values only (array)

Info from Debug4:
grafik

Now comes the task to sum the corresponding array values :wink:

And to generate a further info:
If value of debug4/array[value1] > 3.000
than a = '1'
If value of debug4/array[value1] < 100
than a = '0'

The idea is to generate an operation window, when a electrical socket is subsequently switched on (or off).

Feed the output of the Buffer parser to a switch node

Test on the value you are interested in and then switch to a different output

Craig

My buffer output is an array:
grafik

How can I address an array at the input of a switch )

This doesn't work:
grafik

Wolfe You seem to be a novice here so i think you would benefit form reading and viewing this info.
essentials videos

There’s a great page in the docs (Working with messages : Node-RED) that will explain how to use the debug panel to find the right path/value to any data item.

Pay particular attention to the part about the buttons that appear under your mouse pointer when you over hover a debug message property in the sidebar.

BX00Cy7yHi

The array is access by [0] the debug says array to describe what it is, it is not a property name, so you do not have to add array. So it would be msg.payload[0]

Also @Steve-Mcl gave you a good link to help you read all your modbus values in one go, it is worth a read.

Thanks @E1cid for the links and the specific help on msg.payload[0], "surprise" it's working now.

Yep, and the hint from @Steve-Mcl for the modbus topic. However, it's okay to use a single adress, as - adapted to my plan, - to read only one value (P-Einsp / Power generation). Only if I've surplus generation, I need to control further loads.

Now:
I'm using >node-red-contrib-hysteresis<, which works fine as to indicate a change of value, going above a upper threshold or below a lower threshold.

But: the indication comes only ones, at the moment of change.

The upper threshold is 6000 and the lower is 5000. Debug11 shows the output of node "hysteresis", as shown in the 2nd section.

As the value goes below (6th section), Debug11 goes to "0".

How can I continue "1" or "0" between changes ? I tried usiing (global) variables, but failed.

In electrical terms, I would need a kind of "flip-flop".

The idea is to store both information (power and status) in influxdB for displaying later with Grafana.

"I know, for beeing a novice pretty much at the same time"

Okay, I think I got it:

  • Polling actual power data from Modbus, with Topic:Power
  • Setting Upper Threshold: 6000
  • Setting Lower Threshold: 5500

I keep/hold the Hysteresis output Status with Topic:Status

i join2 them and get the desired result:

In section 4 power drops below 5500 and as of section 5: Status: 0

In section 8 power goes above 6000 and as of section 9: Status: 1

Perhaps not the best way, but it works :ok_hand: (For beeing a novice)

Just noticed, Status and Power changes position with in object:
grafik

Should be possible to be rectified.

Now the tast to store it in inflxdB

[
    {
        "id": "6ab8cdb0b6ccfb41",
        "type": "tab",
        "label": "Flow 2",
        "disabled": false,
        "info": "",
        "env": []
    },
    {
        "id": "8c6f270eaa414d32",
        "type": "modbus-read",
        "z": "6ab8cdb0b6ccfb41",
        "name": "P-Einsp.",
        "topic": "",
        "showStatusActivities": false,
        "logIOActivities": false,
        "showErrors": false,
        "showWarnings": true,
        "unitid": "",
        "dataType": "HoldingRegister",
        "adr": "2",
        "quantity": "2",
        "rate": "5",
        "rateUnit": "s",
        "delayOnStart": true,
        "startDelayTime": "10",
        "server": "cc73dd7ed0ec7878",
        "useIOFile": false,
        "ioFile": "",
        "useIOForPayload": false,
        "emptyMsgOnFail": false,
        "x": 120,
        "y": 180,
        "wires": [
            [],
            [
                "f93b12c7e80ccb96"
            ]
        ]
    },
    {
        "id": "f93b12c7e80ccb96",
        "type": "buffer-parser",
        "z": "6ab8cdb0b6ccfb41",
        "name": "",
        "data": "payload.data",
        "dataType": "msg",
        "specification": "spec",
        "specificationType": "ui",
        "items": [
            {
                "type": "uint32le",
                "name": "temp1",
                "offset": 0,
                "length": 1,
                "offsetbit": 0,
                "scale": "/100000000",
                "mask": ""
            },
            {
                "type": "uint32be",
                "name": "temp2",
                "offset": 0,
                "length": 1,
                "offsetbit": 0,
                "scale": "/10",
                "mask": ""
            }
        ],
        "swap1": "",
        "swap2": "",
        "swap3": "",
        "swap1Type": "swap",
        "swap2Type": "swap",
        "swap3Type": "swap",
        "msgProperty": "payload",
        "msgPropertyType": "str",
        "resultType": "value",
        "resultTypeType": "return",
        "multipleResult": false,
        "fanOutMultipleResult": false,
        "setTopic": true,
        "outputs": 1,
        "x": 230,
        "y": 360,
        "wires": [
            [
                "9446eaa5763d3eac",
                "8addbf495379e659"
            ]
        ]
    },
    {
        "id": "986e31c78a61a4c9",
        "type": "hysteresis",
        "z": "6ab8cdb0b6ccfb41",
        "name": "",
        "ThresholdType": "fixed",
        "ThresholdRising": "6000",
        "ThresholdFalling": "5500",
        "TopicThreshold": "",
        "TopicCurrent": "",
        "ThresholdDeltaRising": "",
        "ThresholdDeltaFalling": "",
        "InitialMessage": true,
        "OutRisingType": "num",
        "OutRisingValue": "1",
        "OutFallingType": "num",
        "OutFallingValue": "0",
        "OutTopicType": "top",
        "OutTopicValue": "",
        "DynRaiseError": false,
        "x": 490,
        "y": 280,
        "wires": [
            [
                "ab6b3c27016fde23",
                "aa4da1a57b8941aa"
            ]
        ]
    },
    {
        "id": "ab6b3c27016fde23",
        "type": "debug",
        "z": "6ab8cdb0b6ccfb41",
        "name": "debug 37",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 720,
        "y": 280,
        "wires": []
    },
    {
        "id": "9446eaa5763d3eac",
        "type": "function",
        "z": "6ab8cdb0b6ccfb41",
        "name": "function 7",
        "func": "msg.payload = msg.payload[1]\n\nreturn msg;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 480,
        "y": 220,
        "wires": [
            [
                "7a18189aa1932459",
                "986e31c78a61a4c9"
            ]
        ]
    },
    {
        "id": "7a18189aa1932459",
        "type": "debug",
        "z": "6ab8cdb0b6ccfb41",
        "name": "debug 38",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 720,
        "y": 220,
        "wires": []
    },
    {
        "id": "aa4da1a57b8941aa",
        "type": "change",
        "z": "6ab8cdb0b6ccfb41",
        "name": "",
        "rules": [
            {
                "t": "set",
                "p": "HysStatus",
                "pt": "flow",
                "to": "payload",
                "tot": "msg",
                "dc": true
            }
        ],
        "action": "",
        "property": "",
        "from": "",
        "to": "",
        "reg": false,
        "x": 640,
        "y": 360,
        "wires": [
            []
        ]
    },
    {
        "id": "76bb194accb0b532",
        "type": "inject",
        "z": "6ab8cdb0b6ccfb41",
        "name": "",
        "props": [
            {
                "p": "payload"
            },
            {
                "p": "topic",
                "vt": "str"
            }
        ],
        "repeat": "5",
        "crontab": "",
        "once": true,
        "onceDelay": "0,1",
        "topic": "Status",
        "payload": "HysStatus",
        "payloadType": "flow",
        "x": 560,
        "y": 420,
        "wires": [
            [
                "a5fddd721ffe5177",
                "3e7980127145d770"
            ]
        ]
    },
    {
        "id": "a5fddd721ffe5177",
        "type": "debug",
        "z": "6ab8cdb0b6ccfb41",
        "name": "debug 40",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 760,
        "y": 420,
        "wires": []
    },
    {
        "id": "3e7980127145d770",
        "type": "join",
        "z": "6ab8cdb0b6ccfb41",
        "name": "",
        "mode": "custom",
        "build": "object",
        "property": "payload",
        "propertyType": "msg",
        "key": "topic",
        "joiner": "\\n",
        "joinerType": "str",
        "accumulate": false,
        "timeout": "",
        "count": "2",
        "reduceRight": false,
        "reduceExp": "",
        "reduceInit": "",
        "reduceInitType": "num",
        "reduceFixup": "",
        "x": 910,
        "y": 520,
        "wires": [
            [
                "9df5384488f27205"
            ]
        ]
    },
    {
        "id": "8addbf495379e659",
        "type": "function",
        "z": "6ab8cdb0b6ccfb41",
        "name": "Nur Arraywert[power]",
        "func": "var x = msg.payload [1]\nmsg.payload = x\nreturn msg;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 540,
        "y": 480,
        "wires": [
            [
                "fb3e8f1ba713fb56"
            ]
        ]
    },
    {
        "id": "9df5384488f27205",
        "type": "debug",
        "z": "6ab8cdb0b6ccfb41",
        "name": "debug 41",
        "active": true,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 1080,
        "y": 520,
        "wires": []
    },
    {
        "id": "fb3e8f1ba713fb56",
        "type": "change",
        "z": "6ab8cdb0b6ccfb41",
        "name": "",
        "rules": [
            {
                "t": "set",
                "p": "topic",
                "pt": "msg",
                "to": "Power",
                "tot": "str"
            }
        ],
        "action": "",
        "property": "",
        "from": "",
        "to": "",
        "reg": false,
        "x": 700,
        "y": 540,
        "wires": [
            [
                "3e7980127145d770"
            ]
        ]
    },
    {
        "id": "cc73dd7ed0ec7878",
        "type": "modbus-client",
        "name": "KSEM",
        "clienttype": "tcp",
        "bufferCommands": true,
        "stateLogEnabled": false,
        "queueLogEnabled": false,
        "failureLogEnabled": true,
        "tcpHost": "192.168.178.61",
        "tcpPort": "502",
        "tcpType": "DEFAULT",
        "serialPort": "/dev/ttyUSB",
        "serialType": "RTU-BUFFERD",
        "serialBaudrate": "9600",
        "serialDatabits": "8",
        "serialStopbits": "1",
        "serialParity": "none",
        "serialConnectionDelay": "100",
        "serialAsciiResponseStartDelimiter": "0x3A",
        "unit_id": 1,
        "commandDelay": 1,
        "clientTimeout": 1000,
        "reconnectOnTimeout": true,
        "reconnectTimeout": 2000,
        "parallelUnitIdsAllowed": true,
        "showWarnings": true,
        "showLogs": true
    }
]

Done, can't believe !!

I get the info into influxdB & Grafana: Power and Status (Hysteresis):

and node-red:

[
    {
        "id": "787d729432b0e968",
        "type": "tab",
        "label": "Flow 6",
        "disabled": false,
        "info": "",
        "env": []
    },
    {
        "id": "522af9e406c5bd7e",
        "type": "modbus-read",
        "z": "787d729432b0e968",
        "name": "P-Einsp.",
        "topic": "",
        "showStatusActivities": false,
        "logIOActivities": false,
        "showErrors": false,
        "showWarnings": true,
        "unitid": "",
        "dataType": "HoldingRegister",
        "adr": "2",
        "quantity": "2",
        "rate": "5",
        "rateUnit": "s",
        "delayOnStart": true,
        "startDelayTime": "10",
        "server": "cc73dd7ed0ec7878",
        "useIOFile": false,
        "ioFile": "",
        "useIOForPayload": false,
        "emptyMsgOnFail": false,
        "x": 438,
        "y": 118,
        "wires": [
            [
                "ee8c0a43772ca100"
            ],
            [
                "976f8fdcf0079074"
            ]
        ]
    },
    {
        "id": "ee8c0a43772ca100",
        "type": "debug",
        "z": "787d729432b0e968",
        "name": "debug 43",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 678,
        "y": 118,
        "wires": []
    },
    {
        "id": "976f8fdcf0079074",
        "type": "buffer-parser",
        "z": "787d729432b0e968",
        "name": "",
        "data": "payload.data",
        "dataType": "msg",
        "specification": "spec",
        "specificationType": "ui",
        "items": [
            {
                "type": "uint32le",
                "name": "temp1",
                "offset": 0,
                "length": 1,
                "offsetbit": 0,
                "scale": "/100000000",
                "mask": ""
            },
            {
                "type": "uint32be",
                "name": "temp2",
                "offset": 0,
                "length": 1,
                "offsetbit": 0,
                "scale": "/10",
                "mask": ""
            }
        ],
        "swap1": "",
        "swap2": "",
        "swap3": "",
        "swap1Type": "swap",
        "swap2Type": "swap",
        "swap3Type": "swap",
        "msgProperty": "payload",
        "msgPropertyType": "str",
        "resultType": "value",
        "resultTypeType": "return",
        "multipleResult": false,
        "fanOutMultipleResult": false,
        "setTopic": true,
        "outputs": 1,
        "x": 458,
        "y": 198,
        "wires": [
            [
                "917e68f8ca3fdc9e",
                "cd7baebd0b4c838b",
                "8488c796779735fd",
                "d1dd17f653838678"
            ]
        ]
    },
    {
        "id": "917e68f8ca3fdc9e",
        "type": "debug",
        "z": "787d729432b0e968",
        "name": "debug 44",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 678,
        "y": 198,
        "wires": []
    },
    {
        "id": "788c279eacb91538",
        "type": "debug",
        "z": "787d729432b0e968",
        "name": "debug 45",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 938,
        "y": 238,
        "wires": []
    },
    {
        "id": "cd7baebd0b4c838b",
        "type": "function",
        "z": "787d729432b0e968",
        "name": "function 8",
        "func": "msg.payload = msg.payload[1]\nvar power = 0\nif (msg.payload > 0) {power=0}\nif (msg.payload > 1000) {power=1}\nif (msg.payload > 2000) {power=2}\nif (msg.payload > 3000) {power=3}\nif (msg.payload > 4000) {power=4}\nif (msg.payload > 5000) {power=5}\nif (msg.payload > 6000) {power=6}\nif (msg.payload > 7000) {power=7}\nif (msg.payload > 8000) {power=8}\nif (msg.payload > 9000) {power=9}\nif (msg.payload > 10000) {power=10}\nmsg.payload = power\nreturn msg;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 678,
        "y": 238,
        "wires": [
            [
                "788c279eacb91538"
            ]
        ]
    },
    {
        "id": "5d02378ccb6963f9",
        "type": "hysteresis",
        "z": "787d729432b0e968",
        "name": "",
        "ThresholdType": "fixed",
        "ThresholdRising": "150",
        "ThresholdFalling": "100",
        "TopicThreshold": "",
        "TopicCurrent": "",
        "ThresholdDeltaRising": "",
        "ThresholdDeltaFalling": "",
        "InitialMessage": true,
        "OutRisingType": "num",
        "OutRisingValue": "1",
        "OutFallingType": "num",
        "OutFallingValue": "0",
        "OutTopicType": "top",
        "OutTopicValue": "",
        "DynRaiseError": false,
        "x": 698,
        "y": 338,
        "wires": [
            [
                "abe7cf59d70330c2",
                "c0c2995e32e39bbc"
            ]
        ]
    },
    {
        "id": "abe7cf59d70330c2",
        "type": "debug",
        "z": "787d729432b0e968",
        "name": "debug 46",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 918,
        "y": 338,
        "wires": []
    },
    {
        "id": "8488c796779735fd",
        "type": "function",
        "z": "787d729432b0e968",
        "name": "function 9",
        "func": "msg.payload = msg.payload[1]\n\nreturn msg;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 678,
        "y": 278,
        "wires": [
            [
                "5a6872ab41337c99",
                "5d02378ccb6963f9"
            ]
        ]
    },
    {
        "id": "5a6872ab41337c99",
        "type": "debug",
        "z": "787d729432b0e968",
        "name": "debug 47",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 918,
        "y": 278,
        "wires": []
    },
    {
        "id": "c0c2995e32e39bbc",
        "type": "change",
        "z": "787d729432b0e968",
        "name": "",
        "rules": [
            {
                "t": "set",
                "p": "HysStatus",
                "pt": "flow",
                "to": "payload",
                "tot": "msg",
                "dc": true
            }
        ],
        "action": "",
        "property": "",
        "from": "",
        "to": "",
        "reg": false,
        "x": 878,
        "y": 418,
        "wires": [
            []
        ]
    },
    {
        "id": "4f7399447b85d00f",
        "type": "inject",
        "z": "787d729432b0e968",
        "name": "",
        "props": [
            {
                "p": "payload"
            },
            {
                "p": "topic",
                "vt": "str"
            }
        ],
        "repeat": "5",
        "crontab": "",
        "once": true,
        "onceDelay": "0,1",
        "topic": "Status",
        "payload": "HysStatus",
        "payloadType": "flow",
        "x": 878,
        "y": 478,
        "wires": [
            [
                "fd55b08a5564698f",
                "04d007aa484792bb",
                "bc6e22e7e2cfe7b6"
            ]
        ]
    },
    {
        "id": "fd55b08a5564698f",
        "type": "debug",
        "z": "787d729432b0e968",
        "name": "debug 48",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 1258,
        "y": 498,
        "wires": []
    },
    {
        "id": "04d007aa484792bb",
        "type": "join",
        "z": "787d729432b0e968",
        "name": "",
        "mode": "custom",
        "build": "object",
        "property": "payload",
        "propertyType": "msg",
        "key": "topic",
        "joiner": "\\n",
        "joinerType": "str",
        "accumulate": false,
        "timeout": "",
        "count": "2",
        "reduceRight": false,
        "reduceExp": "",
        "reduceInit": "",
        "reduceInitType": "num",
        "reduceFixup": "",
        "x": 1118,
        "y": 658,
        "wires": [
            [
                "f97a4dcc4d2f023b"
            ]
        ]
    },
    {
        "id": "d1dd17f653838678",
        "type": "function",
        "z": "787d729432b0e968",
        "name": "Nur Arraywert[power]",
        "func": "var x = msg.payload [1]\nmsg.payload = x\nreturn msg;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 878,
        "y": 538,
        "wires": [
            [
                "ed973d4cc95d05a9",
                "a93685b4fadf4056",
                "3a92b359e11b628a"
            ]
        ]
    },
    {
        "id": "f97a4dcc4d2f023b",
        "type": "debug",
        "z": "787d729432b0e968",
        "name": "debug 49",
        "active": true,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 1278,
        "y": 658,
        "wires": []
    },
    {
        "id": "ed973d4cc95d05a9",
        "type": "change",
        "z": "787d729432b0e968",
        "name": "",
        "rules": [
            {
                "t": "set",
                "p": "topic",
                "pt": "msg",
                "to": "Power",
                "tot": "str"
            }
        ],
        "action": "",
        "property": "",
        "from": "",
        "to": "",
        "reg": false,
        "x": 958,
        "y": 658,
        "wires": [
            [
                "04d007aa484792bb"
            ]
        ]
    },
    {
        "id": "3a92b359e11b628a",
        "type": "influxdb out",
        "z": "787d729432b0e968",
        "influxdb": "45d881d645e7f897",
        "name": "PowerdB",
        "measurement": "Power",
        "precision": "",
        "retentionPolicy": "",
        "database": "database",
        "precisionV18FluxV20": "ms",
        "retentionPolicyV18Flux": "",
        "org": "organisation",
        "bucket": "bucket",
        "x": 1258,
        "y": 538,
        "wires": []
    },
    {
        "id": "a93685b4fadf4056",
        "type": "debug",
        "z": "787d729432b0e968",
        "name": "debug 50",
        "active": false,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "statusVal": "",
        "statusType": "auto",
        "x": 1258,
        "y": 578,
        "wires": []
    },
    {
        "id": "bc6e22e7e2cfe7b6",
        "type": "influxdb out",
        "z": "787d729432b0e968",
        "influxdb": "45d881d645e7f897",
        "name": "PowerdB",
        "measurement": "Status",
        "precision": "",
        "retentionPolicy": "",
        "database": "database",
        "precisionV18FluxV20": "ms",
        "retentionPolicyV18Flux": "",
        "org": "organisation",
        "bucket": "bucket",
        "x": 1258,
        "y": 458,
        "wires": []
    },
    {
        "id": "cc73dd7ed0ec7878",
        "type": "modbus-client",
        "name": "KSEM",
        "clienttype": "tcp",
        "bufferCommands": true,
        "stateLogEnabled": false,
        "queueLogEnabled": false,
        "failureLogEnabled": true,
        "tcpHost": "192.168.178.61",
        "tcpPort": "502",
        "tcpType": "DEFAULT",
        "serialPort": "/dev/ttyUSB",
        "serialType": "RTU-BUFFERD",
        "serialBaudrate": "9600",
        "serialDatabits": "8",
        "serialStopbits": "1",
        "serialParity": "none",
        "serialConnectionDelay": "100",
        "serialAsciiResponseStartDelimiter": "0x3A",
        "unit_id": 1,
        "commandDelay": 1,
        "clientTimeout": 1000,
        "reconnectOnTimeout": true,
        "reconnectTimeout": 2000,
        "parallelUnitIdsAllowed": true,
        "showWarnings": true,
        "showLogs": true
    },
    {
        "id": "45d881d645e7f897",
        "type": "influxdb",
        "hostname": "192.168.178.72",
        "port": "8086",
        "protocol": "http",
        "database": "mydb",
        "name": "PowerdB",
        "usetls": false,
        "tls": "",
        "influxdbVersion": "1.x",
        "url": "http://localhost:8086",
        "rejectUnauthorized": true
    }
]

I take a break, tomorrow is a new day.

And thanks to those who looked at this thread, was a good kind of motivation: Never give up!

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.