Hi everyone,
I’m facing an issue when inserting a row from a pandas DataFrame into an InfluxDB bucket using the Python client. The timestamp in my DataFrame looks like this: Index(['2021-01-04T09:45:13.920000Z'], dtype='object', name='timestamp')
.
The problem is that the “_time” column in InfluxDB shows the current date and time instead of the timestamp I’m trying to insert. Even after using pd.to_datetime(index)
, the issue persists.
Is this normal behavior, and if so, where can I find the actual timestamp I’ve inserted?
Thanks for your help!