github.com/smintz/nomad@v0.8.3/website/source/docs/commands/quota/status.html.md.erb (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Commands: quota status"
     4  sidebar_current: "docs-commands-quota-status"
     5  description: >
     6    The quota status command is used to view the status of a particular quota
     7    specification.
     8  ---
     9  
    10  # Command: quota status
    11  
    12  The `quota status` command is used to view the status of a particular quota
    13  specification.
    14  
    15  ~> Quota commands are new in Nomad 0.7 and are only available with Nomad
    16  Enterprise.
    17  
    18  ## Usage
    19  
    20  ```
    21  nomad quota status [options] <quota_name>
    22  ```
    23  
    24  ## General Options
    25  
    26  <%= partial "docs/commands/_general_options" %>
    27  
    28  ## Examples
    29  
    30  View the status of a quota specification:
    31  
    32  ```
    33  $ nomad quota status default-quota
    34  Name        = default-quota
    35  Description = Limit the shared default namespace
    36  Limits      = 1
    37  
    38  Quota Limits
    39  Region  CPU Usage   Memory Usage
    40  global  500 / 2500  256 / 2000
    41  ```