Hello, I´ve been requested to inform when specific node was added to NPM. I didn´t find out by report how to check it. so . How can I identify when nodes were added to NPM?
Thank Y ou.
Does anyone have an answer to this question???
with later versions of NPM you can make use of the Audit records to do this...
SELECT *FROM AuditingEvents AE INNER JOIN AuditingActionTypes AAT ON AE.ActionTypeID=AAT.ActionTypeIDWHERE AAT.ActionType='Orion.NodeAdded'
After that you just need to keep audit records for long enough...
you get columns like this:
note: nodes created using the API do not get audit messages. tdanner hint.
In NPM 11.5 nodes created via API calls should be audited correctly.
nope -- all the Node added audit events in my environment are for humans adding the weird and wonderful exceptions. I don't see any audit events for the API user account.
Case 825029 created with output of the event and audit logs showing node added events, and node added audit entries.