You can use the JDBC access feature to query CA Enterprise Log Manager event data from a third party reporting tool like BusinessObjects Crystal Reports.
The database schema for the event log store is the common event grammar (CEG). The CA Enterprise Log Manager online help contains a CEG reference component to help you create queries. You can also review the underlying SQL statements for the out-of-the-box queries, but use ANSI SQL to access the database from outside CA Enterprise Log Manager.
To access event data from Crystal Reports
Note: Use the value, Default, for the Database name in the Connection Information dialog when it appears.
SELECT source_username as source_username , SUM(event_count) AS FUNC_SUM_event_count FROM view_event WHERE event_result = 'F' GROUP BY source_username ORDER BY FUNC_SUM_event_count DESC;
Running the query displays the values associated with the fields. You can use the Crystal Reports tools to create any visualization or customization you need.
Copyright © 2011 CA. All rights reserved. | Email CA Technologies about this topic |