1
0
Fork 0
mirror of synced 2024-07-05 14:31:17 +12:00

Use the right casing for DataDog

This commit is contained in:
Sam Rose 2023-12-14 17:27:22 +00:00
parent 5b880f1d9b
commit a6f03b02f2
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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)) {