I added amplitude event tracking calls next to all my mixpanel event tracking calls in my nodeJS serverless backend, but no events are showing up, and I’m not sure how to fix it as no errors are thrown.
Here is the event code in JS:
amplitudeClient.logEvent({
event_type: 'EVENT NAME',
user_id: (60 character long UUIDV4 string),
ip: '127.0.0.1',
event_properties: {
prop1: prop1,
prop2: prop2
}
});