Hi!
I have a measurement that receives data each 10s
A task was set up to query this measurement each 30s and insert the data changing a tag “ci_name”
For a reason I could not understand, when I check raw data, there are new tables being used. This makes the graphic connecting the edge points of each table and being messed up. The information is correct, but out of order.
This is the original data:
This is the task data:
This is the task:
option task = {name: “ReadValue”, every: 30s}
data =
from(bucket: “lab”)
|> range(start: -30s)
|> filter(fn: (r) => r[“_measurement”] == “Lab”)
|> drop(columns: [“ci_name”, “host”])
data
|> map(
fn: (r) =>
({
_time: r._time,
_measurement: r._measurement,
_field: “calls”,
_value: r._value,
host: “labtask”,
lob: r.lob,
ci_name: “ci_labtask”,
}),
)
|> to(bucket: “lab”, org: “Lab1”)
This happened using:
InfluxDB v2.6.1
InfluxDB v2.7.4
For influxdb cloud and the same task this do not happen.
Does this task has something wrong?