Skip to content

Commit bc4c85c

Browse files
authored
Align default transaction name to '<method> unknown route' (#542)
1 parent 012a9d6 commit bc4c85c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apm-agent-plugins/apm-servlet-plugin/src/main/java/co/elastic/apm/agent/servlet/ServletTransactionHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ void applyDefaultTransactionName(String method, String servletPath, @Nullable St
167167
}
168168
}
169169
} else {
170-
transactionName.append(method);
170+
transactionName.append(method).append(" unknown route");
171171
}
172172
}
173173

0 commit comments

Comments
 (0)