0

I implemented google analytics in my react website with the help of react-ga npm module. I'm able to generate user report

user report

and page view report

enter image description here App.js

history.listen(location => {
     ReactGA.set({ userId: sessionStorage.getItem("networkId") }); 
     ReactGA.set({ page: location.pathname });
     ReactGA.pageview(location.pathname);
});

componentDidMount(){
   ReactGA.initialize(key);
}

I want to see who all the users visited "/merchportal/itemavailability" (user id's, not count). How can I achieve this? Is this even possible with the current implementation?

Community
  • 1
  • 1
Abbas Ali
  • 151
  • 10

1 Answers1

0

Try to create segment: users who visited page you need. And apply segment on report USER ID report.

zborovskaya
  • 1,113
  • 1
  • 7
  • 14