Files
klz-cables.com/.pnpm-store/v10/files/61/953cfcbdb1b7d07e811352109e993bcb159fccf2e14a832380d09e77fd596d66df46ea99a16c7e09b7648d38bf0e37fdaa10f64b655f6e72336274819b8b76
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

25 lines
945 B
Plaintext

import { MongoDBInstrumentation } from '@opentelemetry/instrumentation-mongodb';
export declare const instrumentMongo: ((options?: unknown) => MongoDBInstrumentation) & {
id: string;
};
/**
* Replaces values in document with '?', hiding PII and helping grouping.
*/
export declare function _defaultDbStatementSerializer(commandObj: Record<string, unknown>): string;
/**
* Adds Sentry tracing instrumentation for the [mongodb](https://www.npmjs.com/package/mongodb) library.
*
* For more information, see the [`mongoIntegration` documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/mongo/).
*
* @example
* ```javascript
* const Sentry = require('@sentry/node');
*
* Sentry.init({
* integrations: [Sentry.mongoIntegration()],
* });
* ```
*/
export declare const mongoIntegration: () => import("@sentry/core").Integration;
//# sourceMappingURL=mongo.d.ts.map