Viewing a Tenancy's Limits and Usage
View limits and usage for a tenancy in Oracle Cloud Infrastructure.
For default limits, see Limits by Service. This information is also helpful if you don't yet have a tenancy or a user account for the Console, or if you don't find a particular limit listed.
You can view a tenancy's limits and usage (by region) in the Console. Be aware of the following considerations:
- The Console might not display limits and usage information for all the Oracle Cloud Infrastructure services or resources.
- The usage level listed for a particular resource type could be greater than the limit if the limit was reduced after the resources were created.
- If all the resource limits are listed as 0, this means your account has been suspended. For help, contact Oracle Support.
To view limits and usage:
Filtering List Results
Use filters to further limit the service limits in the list.
From the Search and Filter box above the list table, select one or more filters and specify the values that you want to use to narrow the list.
Change the order of the items in the list table by using the sort icons next to the column names.
For information about searching for resources and managing the columns in the list table, see Listing Resources.
Actions
To perform an action on a service limit directly from the list table, select an available option from the Actions menu in the row for that service limit:
- Create quota policy stub: Create a quota policy stub for the service limit.
- Open support request: Open the Support Request panel, in which you can access support options. See Support Requests.
Use the oci limits resource-availability get command and required parameters to list information for the specified compartment, limit, and service:
oci limits resource-availability get --compartment-id <compartment_id> --limit-name <limit_name> --service-name <service_name> ... [OPTIONS]If the scope type of the limit is AD (availability domain), then include the
--availability-domainparameter:oci limits resource-availability get --availability-domain <availability_domain>--compartment-id <compartment_id> --limit-name <limit_name> --service-name <service_name> ... [OPTIONS]For a complete list of parameters and values for CLI commands, see the CLI Command Reference.
Run the GetResourceAvailability operation to list limits for the specified service, scope, and compartment.
Fractional Usage and Availability
Some resources can have fractional usage and availability, and the Service Limits API reflects this accordingly. If the resource is a fractional one, usage reflects the rounded up value of the fractional usage, and for availability, the rounded down value of the fractional availability. As a result, these fractional availability and usage attributes help indicate the most accurate usage and availability.
For example, if a resource has 2.4 used, 4.6 available, the following API response is returned:
{ used: 3, fractionalUsed: 2.4, available: 4.6, fractionalAvailable: 4 }For more information, see the
availableandusedattributes in the ResourceAvailability Reference.