Transfer MariaDB data to InfluxDB

Is there a way to transfer/ import MariaDB data to my InfluxDB? The MariaDB data is timestamped as well, as we are talking about energy measurements like active power, reactive power, voltage and frequency.

Here a screenshot of the MariaDB data:

Hi @Florian99,
So there is no direct way to import your data from MariaDB to InfluxDB. If you could export your data in CSV format then this could be done as a direct import. Otherwise, you could build a quick migration app in python.

Read SQL table → convert to dataframe → write dataframe to InfluxDB