Who are the top RUM analytics providers?

Yeah hopefully third-party-web can be of some help here! Unfortunately like @andydavies mentions we don’t really have a distinction for RUM providers within analytics providers yet. We also track entites more so than technologies. For example we wouldn’t identify self-hosting of Matomo, so slightly different goals there as well.

If you want the broader net from our dataset though you could generate a case query with something like…

const analyticsEntities = require('third-party-web').entities.filter(entity => entity.categories.includes('analytics'));
const sqlCaseLines = analyticsEntities.map(entity => entity.domains.map(domain => `WHEN url LIKE "%${domain.replace('*.', '')}/%" THEN "${entity.name}"`))
console.log(sqlCaseLines.reduce((a, b) => a.concat(b)).join('\n'))

If there’s anything missing we would love a PR :smiley: