Files
klz-cables.com/.pnpm-store/v10/files/55/ae48d7442c114de7f8421706298cda0d43ba1f5577dee7caffb4cdaf26de4bfc9c726132d21f2957acb7d59bf835e8c55d2942bc8d602d163e51f38d0216bc
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

24 lines
920 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