How is vendor technology worked out?

40 views
Skip to first unread message

Steve Goldberg

unread,
Sep 23, 2022, 11:41:19 AM9/23/22
to web-vitals-feedback
I work at NetSuite and I notice that NetSuite is listed as one of the technology vendors available in your report. While I don't have any qualms about that, I am curious as to how you are classifying sites as belonging to our platform.

Are you able to share that information?

Secondly, is it possible to query a list of sites that belong to a particular vendor? I am curious to see which sites that reportedly use our technology are being included in your reports.

Steve

Rick Viscomi

unread,
Sep 23, 2022, 11:49:30 AM9/23/22
to Steve Goldberg, web-vitals-feedback
Hi Steve,

I assume you're referring to the Core Web Vitals Technology Report? (this list is more for general CWV feedback, but that's ok)

The technology detection in the dashboard is powered by the open source Wappalyzer project. You can see NetSuite's detection in their GitHub repo, which seems to be based solely on the presence of the NS_VER cookie. If you have any improvements to the detection logic, that would be the place to file an issue or pull request.

You could query the list of NetSuite pages using HTTP Archive on BigQuery. For example:

SELECT DISTINCT
rank,
page
FROM
`httparchive.all.pages`
WHERE
date = '2022-09-01' AND
'NetSuite' IN UNNEST(technologies.technology)
ORDER BY
rank,
page


Hope that helps.


Rick

--
You received this message because you are subscribed to the Google Groups "web-vitals-feedback" group.
To unsubscribe from this group and stop receiving emails from it, send an email to web-vitals-feed...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/web-vitals-feedback/dfcc5445-3c6e-45ca-888b-573e2d6bae1an%40googlegroups.com.

Steve Goldberg

unread,
Sep 23, 2022, 11:51:23 AM9/23/22
to web-vitals-feedback
Hey Rick,

Appreciate the fast response, and you are right -- that is exactly what I was asking for. I will take a look at the GitHub repo.

Cheers.

Reply all
Reply to author
Forward
0 new messages