44 lines
945 B
Plaintext
44 lines
945 B
Plaintext
---
|
|
layout: docs
|
|
page_title: 'Commands: quota status'
|
|
description: >
|
|
The quota status command is used to view the status of a particular quota
|
|
specification.
|
|
---
|
|
|
|
# Command: quota status
|
|
|
|
The `quota status` command is used to view the status of a particular quota
|
|
specification.
|
|
|
|
~> Quota commands are new in Nomad 0.7 and are only available with Nomad
|
|
Enterprise.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad quota status [options] <quota_name>
|
|
```
|
|
|
|
If ACLs are enabled, this command requires a token with the `quota:read`
|
|
capability and access to any namespaces that the quota is applied to.
|
|
|
|
## General Options
|
|
|
|
@include 'general_options.mdx'
|
|
|
|
## Examples
|
|
|
|
View the status of a quota specification:
|
|
|
|
```shell-session
|
|
$ nomad quota status default-quota
|
|
Name = default-quota
|
|
Description = Limit the shared default namespace
|
|
Limits = 1
|
|
|
|
Quota Limits
|
|
Region CPU Usage Memory Usage Network Usage
|
|
global 500 / 2500 256 / 2000 30 / 50
|
|
```
|