github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/website/content/docs/commands/quota/status.mdx (about)

     1  ---
     2  layout: docs
     3  page_title: 'Commands: quota status'
     4  description: >
     5    The quota status command is used to view the status of a particular quota
     6    specification.
     7  ---
     8  
     9  # Command: quota status
    10  
    11  The `quota status` command is used to view the status of a particular quota
    12  specification.
    13  
    14  ~> Quota commands are new in Nomad 0.7 and are only available with Nomad
    15  Enterprise.
    16  
    17  ## Usage
    18  
    19  ```plaintext
    20  nomad quota status [options] <quota_name>
    21  ```
    22  
    23  If ACLs are enabled, this command requires a token with the `quota:read`
    24  capability and access to any namespaces that the quota is applied to.
    25  
    26  ## General Options
    27  
    28  @include 'general_options.mdx'
    29  
    30  ## Examples
    31  
    32  View the status of a quota specification:
    33  
    34  ```shell-session
    35  $ nomad quota status default-quota
    36  Name        = default-quota
    37  Description = Limit the shared default namespace
    38  Limits      = 1
    39  
    40  Quota Limits
    41  Region  CPU Usage   Memory Usage  Network Usage
    42  global  500 / 2500  256 / 2000    30 / 50
    43  ```