Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Make referer optional in Vercel Log Drain Transform. ([#5273](https://github.com/getsentry/relay/pull/5273))
- Tag spans' count per root metric with the trace root's transaction instead of the local transaction. ([#5281](https://github.com/getsentry/relay/pull/5281))
- Use `vercel.path` instead of `url.path` for Vercel Log Drain Transform. ([#5274](https://github.com/getsentry/relay/pull/5274))
- Add Google Storebot to the crawler filter list. ([#5300](https://github.com/getsentry/relay/pull/5300))

**Internal**:

Expand Down
3 changes: 3 additions & 0 deletions relay-filter/src/web_crawlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ static WEB_CRAWLERS: LazyLock<Regex> = LazyLock::new(|| {
AdsBot-Google|
Googlebot|
FeedFetcher-Google|
Storebot-Google|
BingBot| # Bing search
BingPreview|
Baiduspider| # Baidu search
Expand Down Expand Up @@ -118,6 +119,8 @@ mod tests {
"AdsBot-Google",
"Googlebot",
"FeedFetcher-Google",
"Storebot-Google",
"Mozilla/5.0 (X11; Linux x86_64; Storebot-Google/1.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36",
"BingBot",
"BingPreview",
"Baiduspider",
Expand Down