Basic example of Span with RUM?

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-interaction transactions. However, to avoid sending too many user-interaction transactions 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 a route-change transaction would be captured instead.

The transaction name can be influenced either by using the name or preferably the data-transaction-name HTML attribute.

Do share any debug information that you manage to collect.

Hope that helps!