Network Management
Audits Events missing from in Last xx Audit Events on Node Details
Audit messages are filtered by design in Node Details pages to only show node Netobject messages.
First published date
Last published date
Overview
Product section
Cause
Events or Audits widgets can be placed in different views.
- If placed on the Summary page, the widgets display all messages.
- If on a Node Details page, only events relevant for the node are displayed. By design, messages concerning anything other than the node, such as Interface or Volume events, are filtered out.
Resolution
This behavior is by design.
To display all events on a Node Details view, use custom SQL code.
- Create an Advanced SQL Report in Report Writer.
- Run the Orion Report Writer on your Orion server.
- Click New, and select Advanced SQL.
- On the SQL tab, paste the following SQL code.
SELECT TOP 50
auditEventID as AuditID,
TimeLoggedUTC as DateTime,
AccountID as UserID,
ActionTypeID,
AuditEventMessage as Action,
NetworkNode as Node,
NetObjectID as ID,
NetObjectType as Type
FROM [dbo].[AuditingEvents]
order by TimeLoggedUTC desc
- Provide the name and details for the report and click Save.
- In the Orion Web Console, go to the Node Details view, and add a custom widget to the view .
The resource to add is "Report from Orion Report Writer".
- Click Select the report and choose the report to be displayed in the widget.
- The messages for all events show on a Node Details view.