My .csv file looks like this:
Time,InnerTemp,OuterTemp,
2023-05-16 14:25:22,24.93℃,21.68℃,
2023-05-16 14:26:23,24.87℃,21.68℃,
I am uploading it with telegraf and the [[inputs.tail]] plugin:
[[inputs.tail]]
files = ["/*.csv"]
data_format = "csv"
csv_column_names = ["Time", "InnerTemp", "OuterTemp"]
This works fine. But my temperature values are transmitted as strings with the “℃” unit.
Obviously I could parse that further down the line, but is there any way to do this right here already?