visit
Writers, your story stats just got a backend lift! If you’ve published a story on April 20th, or since, you will probably see a larger number of reads on your stories. The reason for this is that we’ve started collecting data from . Why did we do this? For more accurate readership reports!
“This doesn't mean you can go to your advertisers and start demanding more ad revenue. It should, however, mean that you now have a more accurate picture into the actual resource demands required to run your site.” - Cloudflare’s Matthew Prince
Why not? Well, one reason is that Cloudflare includes more bot and crawler traffic in their analytics. Thankfully, we can filter page views by what Cloudflare calls a botManagementDecision
such that the traffic has been deemed to be “likely human” in origin. Are you a ‘likely human’ reading this story? Then you will count towards the reads at the top of this story page and writers will see that in their story stats. Here is the filter used in the GraphQL query:
"pageviewsFilter": {
"AND": [
{
"botManagementDecision": "likely_human"
},
{
"datetime_geq": startDate,
"datetime_leq": endDate
},
{
"requestSource": "eyeball"
},
{
"AND": [
{
"edgeResponseStatus": 200,
"edgeResponseContentTypeName": "html"
}
]
}
]
Head on over to //app.gzht888.com/stats today and see for yourself!