Hi,
I am using the following application,Deployed on a GKE cluster,opbeans-java
the application as such is considered as the backend while the RUM part is considered as frontend.
To get the RUM part I just added a java script to the index.html of my web application, between title" and "link":
<title>OpBeans</title>
<script>
;(function(d, s, c) {
var j = d.createElement(s),
t = d.getElementsByTagName(s)[0]
j.src = '/js/elastic-apm-rum.umd.js'
j.onload = function() {elasticApm.init(c)}
t.parentNode.insertBefore(j, t)
})(document, 'script', {serviceName: 'opbeans-java-UI', serverUrl: 'https://ab2d61b6130e479a8ac013d86b83bbc6.apm.us-central1.gcp.cloud.es.io:443'})
</script>
<link href="/css/opbeans.css" rel="stylesheet">
at times I have managed to display both the frontend and backend on the services screen:
However, without having made any changes to the application I now only see the frontend.
Does anyone know what this could be due to?
thanks in advance.