Now I’ve got even more questions ! What’s is NHTTv2 community ? I would refer them to the MongoDB documentation or to sign up for classes with MongoDB University !
Chapter 3: Auditing and Best Practices describes how to enable auditing CRUD operations by adding config file entry…
setParameter: { auditAuthorizationSuccess: true }
MongoDB audits CRUD commands that result is “not unauthorized”. (obviously that means that you’ll need to enabled authorization along with auditing)
Action Type(atype) authCheck
Result:
`0` - Success
`13` - Unauthorized to perform the operation.
By default, the auditing system logs only the authorization failures. To enable the system to log authorization successes, use the auditAuthorizationSuccess parameter
We’ll discuss auditing in detail in Chapter 3 along with corresponding Lab assignments.
In the meantime you can always try it out on your own
https://docs.mongodb.com/manual/core/auditing/
Hope that helps,
David