github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/website/pages/docs/commands/quota/status.mdx (about)

     1  ---
     2  layout: docs
     3  page_title: 'Commands: quota status'
     4  sidebar_title: 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  ```plaintext
    21  nomad quota status [options] <quota_name>
    22  ```
    23  
    24  ## General Options
    25  
    26  @include 'general_options.mdx'
    27  
    28  ## Examples
    29  
    30  View the status of a quota specification:
    31  
    32  ```shell-sessionnomad quota status default-quota
    33  Name        = default-quota
    34  Description = Limit the shared default namespace
    35  Limits      = 1
    36  
    37  Quota Limits
    38  Region  CPU Usage   Memory Usage  Network Usage
    39  global  500 / 2500  256 / 2000    30 / 50
    40  ```