Make tool payload tracing config key more verbose

Signed-off-by: Eric Peterson <ericpeterson@spotify.com>
This commit is contained in:
Eric Peterson
2026-05-18 16:50:14 +02:00
parent b70f13990b
commit 3914351b84
3 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -326,13 +326,13 @@ This flag is honored by every plugin that creates spans through the [Tracing Ser
### Capturing tool arguments and results
When `backend.tracing.capture.toolPayloads` is enabled, the tool's input arguments and output result are recorded on the span as `gen_ai.tool.call.arguments` and `gen_ai.tool.call.result`.
When `backend.tracing.capture.mcpActionsToolPayloads` is enabled, the tool's input arguments and output result are recorded on the span as `gen_ai.tool.call.arguments` and `gen_ai.tool.call.result`.
```yaml title="app-config.yaml"
backend:
tracing:
capture:
toolPayloads: true # defaults to false
mcpActionsToolPayloads: true # defaults to false
```
:::warning