add the column into the processStringSync span
This commit is contained in:
parent
0d3ea23301
commit
899b6707e7
|
@ -76,9 +76,10 @@ export function processFormulas<T extends Row | Row[]>(
|
||||||
let formula = schema.formula
|
let formula = schema.formula
|
||||||
rows[i] = {
|
rows[i] = {
|
||||||
...row,
|
...row,
|
||||||
[column]: tracer.trace("processStringSync", {}, () =>
|
[column]: tracer.trace("processStringSync", {}, span => {
|
||||||
processStringSync(formula, context)
|
span?.addTags({ column })
|
||||||
),
|
return processStringSync(formula, context)
|
||||||
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue