I implemented google analytics in my react website with the help of react-ga npm module. I'm able to generate user report
and page view report
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?