From f7a99906cd1f3e53285a930c69d471c0a866ff1b Mon Sep 17 00:00:00 2001 From: Eric Allam Date: Mon, 13 Jan 2025 22:41:20 +0000 Subject: [PATCH] Update config docs for new telemetry property --- docs/config/config-file.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()], + }, }); ```