Files
klz-cables.com/.pnpm-store/v10/files/9b/bee5b3ae76ec53c885dc91425897f6000b79668eb8b8b51c85e4149a5b62011b774341057f137d385b8e1e3d4af0d4fe07cbbfb477b53565ab49f07a505e64
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

19 lines
817 B
Plaintext

import { InstrumentationBase, type InstrumentationConfig, type InstrumentationModuleDefinition } from '@opentelemetry/instrumentation';
import type { LangGraphOptions } from '@sentry/core';
type LangGraphInstrumentationOptions = InstrumentationConfig & LangGraphOptions;
/**
* Sentry LangGraph instrumentation using OpenTelemetry.
*/
export declare class SentryLangGraphInstrumentation extends InstrumentationBase<LangGraphInstrumentationOptions> {
constructor(config?: LangGraphInstrumentationOptions);
/**
* Initializes the instrumentation by defining the modules to be patched.
*/
init(): InstrumentationModuleDefinition;
/**
* Core patch logic applying instrumentation to the LangGraph module.
*/
private _patch;
}
export {};
//# sourceMappingURL=instrumentation.d.ts.map