I use URL query params for specific detail view of objects, which have ids like 12345. (example: mysite.com/somepage-withamap?objectid=12345)
Using metrics, I am able to count how many hits I had when the page was “mysite.com/somepage-withamap” and the query params included “objectid”.
I want to go one step further: I want unique hits for each object. I want to know how often each unique object’s detail view was seen - so if I have multiple visits of objectid=12345, I want to count that as only 1 hit.
How? :)