agent 在设置 `db.statement` 语义属性之前清理所有数据库查询/语句。查询字符串中的所有值(字符串、数字)都替换为问号 ( ?),并对整条 sql 进行格式化(用空格替换换行符,空格只留一个)等操作。
例子:
- SQL 查询 SELECT a from b where password="secret" 那么在 span 中将出现 SELECT a from b where password=?
默认情况下,所有数据库检测都启用此行为。使用以下属性禁用它:
系统属性: otel.instrumentation.common.db-statement-sanitizer.enabled
环境变量: OTEL_INSTRUMENTATION_COMMON_DB_STATEMENT_SANITIZER_ENABLED
默认值:true
说明:启用 DB 语句清理。
ps=conn.prepareStatement("SELECT name,password,id FROM student where name=? and password=?");ps.setString(1,username);// set 替换第一个?ps.setString(2,pw);// 替换第二个?
这是 JDBC 的写法 如库无关( oracle 和 mysql 都是这么写的)。
结果就是,这种写法链路中拿到的就是 两个 '?' 的 db.statement
较少的另一种写法:
ps=conn.prepareStatement("SELECT name,password,id FROM student where name='guance' and password='123456'");// ps.setString(1,username); 不再使用 set// ps.setString(2,pw);