Extra security requirements in Mendix

1
For a possible new customer we need to meet extra security requirements. The potential app will be hosted in the mendix cloud. Therefore I need an answers to the questions below: Is it possible to log queries/searches for some specific datagrids? We need this information in Mendix, in order to manage which user has queried what information. Access to the mendix app is restricted to users with a SSL connection (RSA key 1024 bits). Is this restriction possible in the Mendix cloud?
asked
1 answers
1

Quick answer so I can post some more text.

The answer suggested by Chris de Gelder was:

build your own profiler on the connectionbus and log the queries?

For an example of this, you can take a look at the Profiler Module on the App Store. As its creator I can answer any questions concerning it.

It works by hooking into incoming client requests and following these through the runtime (you can see the first microflow that is called, if applicable) and into the database.

You can set up the module in any project you want. Simply activate it, click around and go to the overview screen. All the information that can be tracked with it is shown here as shown in the screenshots.

answered