Hi @learningelastic,
Are there any errors in the DevTools console? It's a long shot but it's probably worth confirming that you're using a supported browser as per the supported technologies
It might be worth trying out some of the debugging steps to see if you can see an error. But alternatively you could be being caught out by the agent discarding transactions with no spans:
The RUM agent automatically instruments click event listeners that are registered by the application. The click events are captured as
user-interactiontransactions. However, to avoid sending too manyuser-interactiontransactions to the server, the agent discards transactions with no spans (e.g. no network activity). Furthermore, if the click interaction results in route change, then aroute-changetransaction would be captured instead.The transaction name can be influenced either by using the
nameor preferably thedata-transaction-nameHTML attribute.
Do share any debug information that you manage to collect.
Hope that helps!