Hi everyone I'm new in the community (And in the use of APM RUM) I install APM vue plugin through yarn and I have this versions:
@elastic/apm-rum-core@^4.10.1
@elastic/apm-rum-vue@^0.4.1
And have the next code on my router.js:
Vue.use(ApmVuePlugin, {
router,
config: {
serviceName: 'project-name',
serverUrl: 'https://apm.my-project.com'
logLevel: 'debug'
}
})
I don't have any additional configuration. When I see the logs I see in page-load all the events name correct but my app is a SPA so I feel the tab 'route-change' give me more relevant information.
The problem is in the route-change tab I lose some information about the user navigation, I think the agent get the route change between the web pages, but when i change the page from the side bar of my web I get things like [Click - li] or [Click - a]
Anyone know why this can be?
Thank you for read my post!