Hello,
I’m new in flux, i made a simple query with no problems.
But there are three columns i’d like to don’t have in my CSV
Is it possible in a simple flux query to get rid of the first three columns ("", “result”, “table”) ?
So far here is my query
from(bucket: “instance_audit_trail/autogen”)
|> range(start: -1y)
|> filter(fn: ® => r._measurement == “learner_modification” )
|> keep(columns: ["_time", “_value”, “_field”, “_measurement”, “action”])
|> drop(columns: ["", “result”, “table”])
