Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
import { MongooseInstrumentation } from '@opentelemetry/instrumentation-mongoose';
|
|
import { defineIntegration } from '@sentry/core';
|
|
import { generateInstrumentOnce, addOriginToSpan } from '@sentry/node-core';
|
|
|
|
const INTEGRATION_NAME = 'Mongoose';
|
|
|
|
const instrumentMongoose = generateInstrumentOnce(
|
|
INTEGRATION_NAME,
|
|
() =>
|
|
new MongooseInstrumentation({
|
|
responseHook(span) {
|
|
addOriginToSpan(span, 'auto.db.otel.mongoose');
|
|
},
|
|
}),
|
|
);
|
|
|
|
const _mongooseIntegration = (() => {
|
|
return {
|
|
name: INTEGRATION_NAME,
|
|
setupOnce() {
|
|
instrumentMongoose();
|
|
},
|
|
};
|
|
}) ;
|
|
|
|
/**
|
|
* Adds Sentry tracing instrumentation for the [mongoose](https://www.npmjs.com/package/mongoose) library.
|
|
*
|
|
* For more information, see the [`mongooseIntegration` documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/mongoose/).
|
|
*
|
|
* @example
|
|
* ```javascript
|
|
* const Sentry = require('@sentry/node');
|
|
*
|
|
* Sentry.init({
|
|
* integrations: [Sentry.mongooseIntegration()],
|
|
* });
|
|
* ```
|
|
*/
|
|
const mongooseIntegration = defineIntegration(_mongooseIntegration);
|
|
|
|
export { instrumentMongoose, mongooseIntegration };
|
|
//# sourceMappingURL=mongoose.js.map
|