1
0
Fork 0
mirror of synced 2024-09-20 11:27:56 +12:00

Record SQS queries in DataDog.

This commit is contained in:
Sam Rose 2024-07-31 15:38:26 +01:00
parent a646fc5052
commit e62298e199
No known key found for this signature in database

View file

@ -43,6 +43,7 @@ import {
} from "./filters"
import { dataFilters, PROTECTED_INTERNAL_COLUMNS } from "@budibase/shared-core"
import { isSearchingByRowID } from "./utils"
import tracer from "dd-trace"
const builder = new sql.Sql(SqlClient.SQL_LITE)
const MISSING_COLUMN_REGEX = new RegExp(`no such column: .+`)
@ -225,7 +226,11 @@ async function runSqlQuery(
}
const db = context.getAppDB()
return await db.sql<Row>(sql, bindings)
return await tracer.trace(
"sqs.runSqlQuery",
async () => await db.sql<Row>(sql, bindings)
)
}
const response = await alias.queryWithAliasing(json, processSQLQuery)
if (opts?.countTotalRows) {