From 5edcdeecde7683b090f24741fc3ae084bfe6e17e Mon Sep 17 00:00:00 2001 From: Ax1an Date: Tue, 2 Feb 2021 23:45:07 +0800 Subject: [PATCH] Remove invalid mysql configuration in agent.config. (#6303) --- CHANGES.md | 1 + apm-sniffer/config/agent.config | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 47f19c97e..5086b4a2f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,7 @@ Release Notes. * Update frontend-maven-plugin to 1.11.0, for Download node x64 binary on Apple Silicon. #### Java Agent +* Remove invalid mysql configuration in agent.config. #### OAP-Backend diff --git a/apm-sniffer/config/agent.config b/apm-sniffer/config/agent.config index 5475eb557..6e3757032 100644 --- a/apm-sniffer/config/agent.config +++ b/apm-sniffer/config/agent.config @@ -102,8 +102,8 @@ plugin.mount=${SW_MOUNT_FOLDERS:plugins,activations} # Exclude activated plugins # plugin.exclude_plugins=${SW_EXCLUDE_PLUGINS:} -# mysql plugin configuration -# plugin.mysql.trace_sql_parameters=${SW_MYSQL_TRACE_SQL_PARAMETERS:false} +# If set to true, the parameters of the sql (typically java.sql.PreparedStatement) would be collected. +# plugin.jdbc.trace_sql_parameters=${SW_JDBC_TRACE_SQL_PARAMETERS:false} # Kafka producer configuration # plugin.kafka.bootstrap_servers=${SW_KAFKA_BOOTSTRAP_SERVERS:localhost:9092}