Hello,
I have a test setup with influxdb2.0 on debian10 linux.
Everything works fine.
Now I want to setup a telegraf configuration with inputs.exec. (later it should be used inside influxdb-telegraf)
For testing I use windows7 with telegraf 1.16.2.
Examples work.
I try to send a long influx data line and receive an error. A shorted line with less data works.
My cmd script produces a long data line, which does raise an error.
@echo QQ,dd=data1 I_T01-W-In=34.9,I_T02-W-Out=43.2,I_T03-A-In-L-U=46.7,I_T04-A-In-L-L=46.6,I_T05-A-In-R-U=46.3,I_T06-A-In-R-L=47.0,I_T09-A-Out-U=40.1,I_T10-A-Out-M=40.1,I_T11-A-Out-L=40.9,I_S07-MF=21,I_S13-Door=0,I_S14-Fire=1,I_S15-Leak=163.83,I_S16-Fan=1,I_T12-Control=43.8,O_A15-MFV=6.10,O_A16-FanV=2.00,O_A15-MF-Mode=2,O_A16-Fan-Mode=2,O_R03-Leak=OFF,O_R03-Leak-Mode=2,O_R02-Alarm=OFF,O_R02-Alarm-Mode=2,O_R01-Warning=OFF,O_R01-Warning-Mode=2,O_R06-Fire=OFF,O_R06-Fire-Mode=2,IDL_P1-In=2.40,IDL_P2-Out=1.44,F_CoolingPowerkW=-12.05,F_DT-Coolant=8.2,F_DT-Air=6.2,F_DP-Coolant=0.96,F_Air-In-Mean=46.6,F_Air-Out-Mean=40.3,IDL_Door1-L_R-cl=1,IDL_Door2-L_F-cl=1,IDL_Door4-R_F-cl=1,IDL_Door3-R_R-cl=1,IDL_Door5-SC-cl=1
shorted line works.
@echo QQ,dd=data1 I_T01-W-In=34.9,I_T02-W-Out=43.2,I_T03-A-In-L-U=46.7,I_T04-A-In-L-L=46.6,I_T05-A-In-R-U=46.3,I_T06-A-In-R-L=47.0,I_T09-A-Out-U=40.1,I_T10-A-Out-M=40.1,I_T11-A-Out-L=40.9
How can I send a longer data line? line stops at 345 characters
Hope anybody can help.
Thank you.