| Server IP : 138.197.176.125 / Your IP : 216.73.216.41 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/smartsync/node_modules/drizzle-orm/ |
Upload File : |
import { iife } from "./tracing-utils.js";
import { npmVersion } from "./version.js";
let otel;
let rawTracer;
const tracer = {
startActiveSpan(name, fn) {
if (!otel) {
return fn();
}
if (!rawTracer) {
rawTracer = otel.trace.getTracer("drizzle-orm", npmVersion);
}
return iife(
(otel2, rawTracer2) => rawTracer2.startActiveSpan(
name,
(span) => {
try {
return fn(span);
} catch (e) {
span.setStatus({
code: otel2.SpanStatusCode.ERROR,
message: e instanceof Error ? e.message : "Unknown error"
// eslint-disable-line no-instanceof/no-instanceof
});
throw e;
} finally {
span.end();
}
}
),
otel,
rawTracer
);
}
};
export {
tracer
};
//# sourceMappingURL=tracing.js.map