Skip to content

Commit

Permalink
Removing / for health endpoint filter (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
acn-sbuad authored Apr 12, 2023
1 parent fb5a4e2 commit 044df62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private static bool ExcludeItemTelemetry(ITelemetry item)
{
RequestTelemetry request = item as RequestTelemetry;

if (request != null && request.Url.ToString().EndsWith("/health/"))
if (request != null && request.Url.ToString().EndsWith("/health"))
{
return true;
}
Expand Down

0 comments on commit 044df62

Please sign in to comment.