Hi,
Initially, I have used nodejs and Java APM for distributed tracing and this is working fine.
Now I want to add front-end RUM to capture real-time data.
I install RUM using the following command:
npm install @elastic/apm-rum --save
And added configuration in index.js file as:
import { init as initApm } from '@elastic/apm-rum'
const apm = initApm({
serviceName: 'test_rum',
serverUrl: 'http://localhost:8200',
})
Now, when i start my node code, i get an error message "APM: Platform is not supported!"
Node version: v8.10.0