We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement a feature to satisfy #2033.
The feature should support the obfuscation of values of JVM properties after the =. For example: -Dprop=12345 will now be sent as -Dprop=obfuscated.
=
-Dprop=12345
-Dprop=obfuscated
This will be configurable via an optional block and allow list.
For example, with the following yml config,
obfuscate_jvm_props: allow: -DpropA*, -DpropB* block: -DpropB.extended
and JVM startup args -DpropA=one, -DpropB=two, -DpropB.extended=three, -DpropC=four
-DpropA=one, -DpropB=two, -DpropB.extended=three, -DpropC=four
We will now send -DpropA=one, -DpropB=two, -DpropB.extended=obfuscated, -DpropC=obfuscated
-DpropA=one, -DpropB=two, -DpropB.extended=obfuscated, -DpropC=obfuscated
The text was updated successfully, but these errors were encountered:
https://new-relic.atlassian.net/browse/NR-334270
Sorry, something went wrong.
kanderson250
Successfully merging a pull request may close this issue.
Implement a feature to satisfy #2033.
The feature should support the obfuscation of values of JVM properties after the
=
. For example:-Dprop=12345
will now be sent as-Dprop=obfuscated
.This will be configurable via an optional block and allow list.
For example, with the following yml config,
and JVM startup args
-DpropA=one, -DpropB=two, -DpropB.extended=three, -DpropC=four
We will now send
-DpropA=one, -DpropB=two, -DpropB.extended=obfuscated, -DpropC=obfuscated
The text was updated successfully, but these errors were encountered: