Cannot active RUM debug for Angular

Hi @nicesp,

The RUM agent ignores the debugLevel in prod environments:

process.env.NODE_ENV === 'production' // does not add debug logic

That's why your JS console is empty. In order to see the logs you may need to create a bundle with a non-production NODE_ENV.

In the following link explains why: Install the Agent | APM Real User Monitoring JavaScript Agent Reference [5.x] | Elastic

--
On the other hand, managed transactions such as http-requests have a threshold of 60 seconds, if the transaction duration is greater than that, it will be discarded by the agent.

Let me know if this helps you

Thanks,
Alberto