Is there a way to use only the RUM New Relic functions?

I am launching a service completely created using Perl that is not supported by New Relic (unless you are running the application through the ActiveState hosting platform).

I am interested in using> only <RUM (real user monitoring - data obtained from javascript tracking), New Relic functions. Maybe I could redesign the API for this, but that sounds pretty fragile. Is there a known safe way to use only this part of the New Relic?

+4
source share
1 answer

The new Relic RUM uses dynamic JavaScript fragments that are generated and injected by the new Relic agent. Thus, you cannot just copy / paste static JS fragments (at least not intended or intended for such use). The RUM footer dynamically identifies the web transaction, as well as the time spent on the application and the queue. You can learn more about how RUM works:

https://newrelic.com/docs/features/how-does-real-user-monitoring-work

+5
source

Source: https://habr.com/ru/post/1398262/


All Articles