Reputation: 4934
I need to create a report to show last execution times for each report and who ran them. Auditing report. I've searched the database to see if I can get this information to be logged there but was unsuccessful. Anyone try doing this? Is there already an audit reports that can do this with some tweaks?
Upvotes: 2
Views: 1715
Reputation: 9390
Auditing is built-in to the commercial editions of JasperReports Server. It would require a custom development effort to add it to the AGPL Community Edition of JasperReports Server.
EDIT: Given that you're using the commercial edition, then you need to turn auditing on in applicationContext-audit.xml. Search for this line:
<entry key="com.jaspersoft.jasperserver.api.logging.audit.domain.AuditEvent" value="false"/>
Refer to the Administrator's Guide for full details.
Upvotes: 2