Get Perl Data to InfluxDB

Hi,
I am new to InfluxDB but I managed to create measurements in InfluxDB using iperf3 and telegraf. This works fine and I can display my data in grafana. The data_format is JSON.
I want to do the same with the command “twping”. The return is only available in perl, not Json. How does InfluxDB accept Perl data?
Example output:
Approximately 13.0 seconds until results available
SUMMARY 3.00
SID 00000001e624e8d24f64f11b6a78084d
FROM_HOST localhost
FROM_ADDR ::1
FROM_PORT 8935
TO_HOST localhost
TO_ADDR ::1
TO_PORT 19645
START_TIME 16583635722175729458
END_TIME 16583635770647215368
DSCP 0x00
LOSS_TIMEOUT 8593155818
PACKET_PADDING 27
SESSION_PACKET_COUNT 100
SAMPLE_PACKET_COUNT 100
BUCKET_WIDTH 0.0001
SESSION_FINISHED 1
SENT 100
SYNC 1
MAXERR 9.31323e-10
MAXERR_FWD 4.65661e-10
MAXERR_BCK 4.65661e-10
DUPS_FWD 0
DUPS_BCK 0
LOST 0
MIN 0.00012064
MIN_FWD 4.57764e-05
MIN_BCK 4.673e-05
MIN_PROC 3.8147e-06
MEDIAN 0.0003
MEDIAN_FWD 0.0002
MEDIAN_BCK 0.0001
MAX 0.00129318
MAX_FWD 0.000573158
MAX_BCK 0.000720024
MAX_PROC 8.2016e-05
PDV 0.0003
PDV_FWD 0.0002
PDV_BCK 0.0003

1 0 17 73
2 45 63 8
3 31 11 12
4 3 8 2
5 7 0 4
6 9 1 0
7 2 0 0
8 1 0 1
9 1 0 0
13 1 0 0

MINTTL_FWD 255
MAXTTL_FWD 255
MINTTL_BCK 255
MAXTTL_BCK 255

255 100 100

Hello @ekd,
Welcome! The ingest format for InfluxDB is line protocol.

You’ll have to convert the data into line protocol in order to write it to InfluxDB.