Viewing the Details of a Cloud Stack

View the resources and other attributes of your cloud stacks in Oracle Cloud Stack.

Viewing Cloud Stacks with the Console

Use the web console to monitor your cloud stacks in Oracle Cloud Stack.

  1. Sign in to the Oracle Cloud Stack console and navigate to the Stacks page.

    The Stacks page lists the cloud stacks in this identity domain. A stack’s icon is used to indicate its status and health. This page also shows the number of Oracle CPUs (OCPUs), memory and block storage allocated to the resources in each stack.

    Tip:

    To view the template definition that was used to create a stack, click its Template link.
  2. Locate the stack you want to view.

    If tags are assigned to stacks, you can also search for stacks using tag expressions and wild cards. See Find Tags and Instances Using Search Expressions.

  3. Click the name of the stack.

    The Stack Details page is displayed.

  4. Click Stack Details Three vertical dots, located at the top of the page, for additional information about the stack.
  5. Locate the Resources area of the Stack Details page.

    This section lists the cloud resources of which this stack is made up. Different icons are used to distinguish different types of cloud resources, as well as their status.

    For each resource, this page shows its Name and Type, along with the number of OCPUs, memory and block storage allocated to the resource (if applicable).

  6. Click the Name link for a specific resource to go to the console for this cloud service.

    Use a resource’s service console for more detailed monitoring and troubleshooting.

    Note:

    You may not be able to click on some types of cloud resources, such as Oracle Cloud Infrastructure Object Storage Classic containers.
  7. At the top of the page, click the link with the name of your stack in order to return back to the Stack Details page in the Oracle Cloud Stack console.
  8. Click the Stacks link at the top of the page to go back to the Stacks page.
  9. Click the Arrow pointing to the right icon to expand the Stack Create and Delete History area
    This area lists the operations that Oracle Cloud Stack has executed on all stacks, or is in the process of executing.
  10. Click the Arrow pointing to the right icon for a specific operation to view its log.

    Tip:

    You can also use the Activity page to monitor stack operations. To view only those operations performed by Oracle Cloud Stack, set the Service Type to Oracle Cloud Stack.

For more information about the console user interface see these topics:

Viewing Cloud Stacks with the CLI

Use the CLI to monitor your cloud stacks in Oracle Cloud Stack.

  1. Execute the stack list command.

    Use the output to identify the names of your existing cloud stacks. For example:

    psm stack list
    
    {
        "identityDomain":"MyIdentityDomain",
        "stacks":[
            {
                "serviceName":"MyStack1",
                "description":"",
                "serviceURI":"http://example.org:7200//paas/api/v1.1/instancemgmt/MyIdentityDomain/services/stack/instances/MyStack1",
                "state":"READY",
                "stateDetail":"Ready",
                "identityDomain":"MyIdentityDomain",
                "createdBy":"joe@example.com",
                "creationJobId":"80161",
                "creationTime":"2016-07-26T15:48:18.366+0000",
                "lastModifiedTime":"2016-07-26T15:48:18.365+0000",
                "template":{
                    "templateName":"MyTemplate",
                    "templateVersion":"1.0.0",
                    "templateURI":"http://example.org:7200//paas/api/v1.1/instancemgmt/MyIdentityDomain/templates/cst/instances/MyTemplate/export?version=1.0.0"
                }
            },
            {
                "serviceName":"MyStack2",
                "description":"",
                "serviceURI":"http://example.org:7200//paas/api/v1.1/instancemgmt/MyIdentityDomain/services/stack/instances/MyStack1",
                "state":"READY",
                "stateDetail":"Ready",
                "identityDomain":"MyIdentityDomain",
                "createdBy":"joe@example.com",
                "creationJobId":"80161",
                "creationTime":"2016-07-27T15:48:18.366+0000",
                "lastModifiedTime":"2016-07-27T15:48:18.365+0000",
                "template":{
                    "templateName":"MyTemplate",
                    "templateVersion":"1.0.0",
                    "templateURI":"http://example.org:7200//paas/api/v1.1/instancemgmt/MyIdentityDomain/templates/cst/instances/MyTemplate/export?version=1.0.0"
                }
            }
        ]
    }
  2. To retrieve additional details about a specific cloud stack, use the CLI to execute the stack describe command.
    psm stack describe -n stackName

    For example:

    psm stack describe -n MyStack1

For more information about the CLI commands for Oracle Cloud Stack, see psm stack Commands.