The Atlas Organization Activity Feed displays select events that occurred for a given Atlas organization, such as billing or access events.
The Atlas Project Activity Feed provides more granular detail about the state of your cluster. The Project Activity Feed displays select events that occurred for a given Atlas project, such as auto-scaling changes to a minimum or maximum cluster tier.
Required Access
To view the Organization Activity Feed, you must have at minimum Organization Member access to the organization.
To view the Project Activity Feed, you must have at minimum Project Read Only access to the project.
View the Activity Feed
Select the activity feed type and how you would like to access events.
Isolate User-Specific Activity with Custom Audit Filters
Important
In the updated Data Explorer interface, the Project Activity Feed no longer logs the usernames of Atlas users when they read or modify data. Although the Project Activity Feed no longer logs usernames, it continues to log user connections from the Atlas UI to a cluster.
To track user activity, you can use database audit logs and create custom audit filters that isolate user activity associated with the following system-generated Administrator roles unique to Data Explorer:
{ role: "atlasDataAccessReadWrite", db: "admin" } { role: "atlasDataAccessReadOnly", db: "admin" } { role: "atlasDataAccessAdmin", db: "admin" }
For example, you could create a custom audit filter similar to the following:
{ "roles": { "$elemMatch": { "$or": [ { "role": "atlasDataAccessReadWrite", "db": "admin" }, { "role": "atlasDataAccessReadOnly", "db": "admin" }, { "role": "atlasDataAccessAdmin", "db": "admin" } ] } } }
To learn more about audit logs and review specific examples of role filters, see Configure Audit Filter.