github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/website/content/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 If ACLs are enabled, this command requires a token with the `quota:read` 25 capability and access to any namespaces that the quota is applied to. 26 27 ## General Options 28 29 @include 'general_options.mdx' 30 31 ## Examples 32 33 View the status of a quota specification: 34 35 ```shell-session 36 $ nomad quota status default-quota 37 Name = default-quota 38 Description = Limit the shared default namespace 39 Limits = 1 40 41 Quota Limits 42 Region CPU Usage Memory Usage Network Usage 43 global 500 / 2500 256 / 2000 30 / 50 44 ```