Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
No EOL
920 B
Text
24 lines
No EOL
920 B
Text
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 |