We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Tracking of views is done via Google Analytics using the same token as the public website.
dev|staging|localhost
Tracking views is done by adding a trackView() call to the JSX file in ui-server/client that has the component that you want to track:
trackView()
ui-server/client
import { trackView } from '../../common/tracking'; export default class MyView extends React.Component { componentDidMount() { trackView('MyView'); } }
All tracking is prefixed with weaveCloudService, so this example view would show up as weaveCloudServiceMyView in GA.
weaveCloudService
weaveCloudServiceMyView
The filter that sorts out the service traffic has to be changed. The source code does not need to be changed.