Use the right casing for DataDog
This commit is contained in:
parent
5b880f1d9b
commit
a6f03b02f2
|
@ -23,7 +23,7 @@ export default async (ctx: UserCtx, next: any) => {
|
|||
}
|
||||
|
||||
if (requestAppId) {
|
||||
span?.addTags({ appId: requestAppId })
|
||||
span?.addTags({ app_id: requestAppId })
|
||||
}
|
||||
|
||||
// deny access to application preview
|
||||
|
|
|
@ -52,7 +52,7 @@ export function processFormulas<T extends Row | Row[]>(
|
|||
{ dynamic, contextRows }: FormulaOpts = { dynamic: true }
|
||||
): T {
|
||||
return tracer.trace("processFormulas", {}, span => {
|
||||
span?.addTags({ tableId: table._id })
|
||||
span?.addTags({ table_id: table._id })
|
||||
const rows = Array.isArray(inputRows) ? inputRows : [inputRows]
|
||||
if (rows) {
|
||||
for (let [column, schema] of Object.entries(table.schema)) {
|
||||
|
|
Loading…
Reference in New Issue