We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d196a commit 193d0afCopy full SHA for 193d0af
instrumentation/pg/README.md
@@ -54,6 +54,11 @@ OpenTelemetry::SDK.configure do |c|
54
# semantic attribute. Optionally, you may disable the inclusion of this attribute entirely by
55
# setting this option to :omit or disable sanitization of the attribute by setting it to :include
56
db_statement: :include,
57
+
58
+ # When `db_statement` is enabled, this instrumentation obfuscates SQL queries. By default, it
59
+ # obfuscates queries up to 2000 characters. You can override the default with a different
60
+ # `obfuscation_limit`, but higher values may impact performance.
61
+ obfuscation_limit: 2000
62
}
63
end
64
```
0 commit comments