AdminJonny
(Admin, MongoDB)
My feedback
3 results found
-
1 vote
An error occurred while saving the comment -
1 vote
An error occurred while saving the comment AdminJonny (Admin, MongoDB) commented
Thanks for raising and voting on this idea. This request has been moved to the Atlas > Administration API idea forum for consideration as it is related to Identity and Access Management more broadly across Atlas.
-
1 vote
AdminJonny (Admin, MongoDB) shared this idea ·
Thanks for submitting this feedback. Have you considered using the Atlas CLI `api` subcommand? It's a new command (currently in public preview) that surfaces all of the Atlas Admin API capabilities; for project events this looks like `atlas api events listProjectEvents` (https://www.mongodb.com/docs/atlas/cli/v1.43/command/atlas-api-events-listProjectEvents/). You can use it in conjunction with the API documentation (https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/2025-03-12/operation/operation-listprojectevents) to craft the output you're looking for (to match the UI, or more specific requirements).
Example for all events:
`atlas api events listProjectEvents --groupId 62c5ae60f1bd2674c3a5e87a | jq`
Example for specific event:
`atlas api events listProjectEvents --eventType COMPUTE_AUTO_SCALE_INITIATED_BASE --groupId 62c5ae60f1bd2674c3a5e87a | jq`
Would this work for this use case for you?