Skip to Main Content

MongoByte MongoDB Logo

Welcome to the new MongoDB Feedback Portal!

{Improvement: "Your idea"}
We’ve upgraded our system to better capture and act on your feedback.
Your feedback is meaningful and helps us build better products.

Status Submitted
Categories Atlas CLI
Created by Guest
Created on Jul 18, 2025

details should to be returned from `atlas events projects` like that is visible in Atlas WebUI

The `Altas events project list` ought to return more details than the date/time and type. For example, I want to search for COMPUTE_AUTO_SCALE_INITIATED_BASE events and see the change being made and the cluster to which the change made in the list of events. I can see this in the activity feed in the Atlas WebUI. Why not also in the CLI output?
  • Guest
    Jul 25, 2025
    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?
  • Guest
    Jul 25, 2025
    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?