As promised, here's information on finding out which of your guest views are actually bots!
You'll visit the APIv2 page on your dashboard, as shown here:
Here's the request body to use - just changed the dates for the period of time you're looking for:
{
"collection": "page",
"start": "2023-01-01",
"end": "2023-01-31",
"group": "userAgentParsed.browser.family",
"type": "count",
"filters" : [
{
"prop": "user.roleType",
"op": "eq",
"val": "guest"
}
]
}
To break this down a bit, we're looking at the page (views) collection for the range of time between the start and end dates. We're grouping that by browser family and getting a count. We then filter for role type equals guest.
This returns an easy-to-read bit of JSON, that looks something like this:
Now you can determine whether those spikes in guest views represent people or bots!