Replies: 2 comments 2 replies
|
I see in the AWS CloudWatch log for the AWS Lambda, but these events don't show up in my Mixpanel dashboard, even after refreshing the dashboard several times and waiting a few minutes. Another, almost identical Node.js backend server hosted off AWS is able to send Mixpanel events to the same dashboard without issue. |
1 reply
|
I updated my code to try {
mixpanel.track("Link Clicked", {
// isDevelopment: true,
$os: os.name || "Unknown",
$browser: browser.name || "Unknown",
});
} catch (error) {
console.error("Error tracking event:", error);
}and the AWS CloudWatch logs don't show the |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Is there anything special I should keep in mind when sending events to Mixpanel from AWS Lambda?
Events sent from a very similar Node.js backend hosted elsewhere show up in the dashboard just fine.
I read https://docs.mixpanel.com/docs/tracking-methods/integrations/amazon-s3.
All reactions