To(bucket: "xxx") - tags seem not being copied to destination bucket

Hi,

I got the following transformed data stream:

after executing |> to(bucket: "xxx" ), I can’t see the tags “tripEnd” and “tripStart” in the destination bucket:

Any idea what I’m doing wrong? :slight_smile:

Hi @eili,
Please define these within your parameters:

    |> to(
        bucket: "example-bucket",
        measurementColumn: "tag1",
        tagColumns: ["tag2"],
    )

You might need to also convert this timestamps to strings before. I would personally be careful of cardinality issues having time stamps as tags. If it was me i would keep them as fields and use pivot()

thanks for the suggestion!