diff --git a/docs/config/config-file.mdx b/docs/config/config-file.mdx index 99a6e8c45b..c81bd077c8 100644 --- a/docs/config/config-file.mdx +++ b/docs/config/config-file.mdx @@ -117,7 +117,9 @@ import { OpenAIInstrumentation } from "@traceloop/instrumentation-openai"; export default defineConfig({ project: "", // Your other config settings... - instrumentations: [new PrismaInstrumentation(), new OpenAIInstrumentation()], + telemetry: { + instrumentations: [new PrismaInstrumentation(), new OpenAIInstrumentation()], + }, }); ```