@@ -160,6 +160,7 @@ export const manuallyInitInstrumentations = (
160
160
} = require ( "@traceloop/instrumentation-pinecone" ) ;
161
161
const instrumentation = new PineconeInstrumentation ( ) ;
162
162
instrumentations . push ( instrumentation as Instrumentation ) ;
163
+ instrumentation . manuallyInstrument ( instrumentModules . pinecone ) ;
163
164
}
164
165
165
166
if ( instrumentModules ?. google_vertexai ) {
@@ -169,6 +170,7 @@ export const manuallyInitInstrumentations = (
169
170
const instrumentation = new VertexAIInstrumentation ( ) ;
170
171
instrumentations . push ( instrumentation ) ;
171
172
vertexaiInstrumentation = instrumentation ;
173
+ instrumentation . manuallyInstrument ( instrumentModules . google_vertexai ) ;
172
174
}
173
175
174
176
if ( instrumentModules ?. google_aiplatform ) {
@@ -178,6 +180,7 @@ export const manuallyInitInstrumentations = (
178
180
const instrumentation = new AIPlatformInstrumentation ( ) ;
179
181
instrumentations . push ( instrumentation as Instrumentation ) ;
180
182
aiplatformInstrumentation = instrumentation ;
183
+ instrumentation . manuallyInstrument ( instrumentModules . google_aiplatform ) ;
181
184
}
182
185
183
186
if ( instrumentModules ?. bedrock ) {
@@ -187,6 +190,7 @@ export const manuallyInitInstrumentations = (
187
190
const instrumentation = new BedrockInstrumentation ( ) ;
188
191
instrumentations . push ( instrumentation as Instrumentation ) ;
189
192
bedrockInstrumentation = instrumentation ;
193
+ instrumentation . manuallyInstrument ( instrumentModules . bedrock ) ;
190
194
}
191
195
192
196
if ( instrumentModules ?. azureOpenAI ) {
@@ -196,6 +200,7 @@ export const manuallyInitInstrumentations = (
196
200
const instrumentation = new AzureOpenAIInstrumentation ( ) ;
197
201
instrumentations . push ( instrumentation as Instrumentation ) ;
198
202
azureOpenAIInstrumentation = instrumentation ;
203
+ instrumentation . manuallyInstrument ( instrumentModules . azureOpenAI ) ;
199
204
}
200
205
201
206
if ( instrumentModules ?. cohere ) {
@@ -205,6 +210,7 @@ export const manuallyInitInstrumentations = (
205
210
const instrumentation = new CohereInstrumentation ( ) ;
206
211
instrumentations . push ( instrumentation as Instrumentation ) ;
207
212
cohereInstrumentation = instrumentation ;
213
+ instrumentation . manuallyInstrument ( instrumentModules . cohere ) ;
208
214
}
209
215
} ;
210
216
0 commit comments