OpenIDM4 UI performance issues: for one of our customer we had a strange issue related to OpenIDMUI v4. The UI was slower and slower on some pages like the mapping page which taked more than 30s to appear.

We finaly found the solution on the audit files. The recon.csv file used more than 250Mo on disk.  The bigger audit files are, slower is the UI. So we recommand you to switch on the logrotate for audit, with the OpenIDM scheduler. Or with logrorate script.

You can also use manual REST calls with following code:

curl \
 --cacert self-signed.crt \
 --header "X-OpenIDM-Username: openidm-admin" \
 --header "X-OpenIDM-Password: openidm-admin" \
 --request POST \
 "https://localhost:8443/openidm/audit/access?handler=csv&_action=rotate"
curl \
 --cacert self-signed.crt \
 --header "X-OpenIDM-Username: openidm-admin" \
 --header "X-OpenIDM-Password: openidm-admin" \
 --request POST \
 "https://localhost:8443/openidm/audit/recon?handler=csv&_action=rotate"
Christophe Desclaux
Les derniers articles par Christophe Desclaux (tout voir)