github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/website/content/docs/commands/namespace/status.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: namespace status' 4 sidebar_title: status 5 description: > 6 The namespace status command is used to view the status of a particular 7 namespace. 8 --- 9 10 # Command: namespace status 11 12 The `namespace status` command is used to view the status of a particular 13 namespace. 14 15 ~> Namespaces are open source in Nomad 1.0. Namespaces were Enterprise-only 16 when introduced in Nomad 0.7. 17 18 ## Usage 19 20 ```plaintext 21 nomad namespace status [options] <namespace_name> 22 ``` 23 24 If ACLs are enabled, this command requires a management ACL token or a token 25 that has a capability associated with the namespace. 26 27 ## General Options 28 29 @include 'general_options_no_namespace.mdx' 30 31 ## Examples 32 33 View the status of a namespace: 34 35 ```shell-session 36 $ nomad namespace status default 37 Name = default 38 Description = Default shared namespace 39 Quota = shared-default-quota 40 41 Quota Limits 42 Region CPU Usage Memory Usage 43 global 500 / 2500 256 / 2000 44 ```