Integration of Sentry IO with Mendix 10

0
Dear Community,I'm currently looking into integrating Sentry with a Mendix project for enhanced error tracking.I have found the existing Marketplace module, but since it hasn't been updated since 2021, I am hesitant to rely on it for a production environment. Has anyone successfully managed a manual integration recently, or is there a community-supported workaround for newer Mendix versions?I would also appreciate any suggestions for alternative monitoring tools that align well with the current Mendix stack.Thanks for your help!Kind regards,Attila
asked
1 answers
0

You’re right to be cautious. The Marketplace module is quite old, so it may not be a good fit for production in Mendix 10.


As an alternative, you could consider integrating Sentry manually via the Java SDK:


  • add the Sentry Java dependency
  • initialize it in an AfterStartup flow (via a Java action)
  • capture exceptions from custom Java actions or global error handling


This approach is usually more stable and avoids relying on outdated modules.


One thing to keep in mind: Sentry works mainly for backend errors in Mendix. Capturing frontend (nanoflow/PWA) errors may require additional JavaScript setup.


You could also consider Mendix built-in monitoring or tools like New Relic / Dynatrace as alternatives.


If this helps, please mark it as the accepted answer.

answered