open-nomad/website/pages/docs/commands/namespace/inspect.mdx
Jeff Escalante 6c8f079d24
new website
2020-02-06 18:45:31 -05:00

46 lines
865 B
Plaintext

---
layout: docs
page_title: 'Commands: namespace inspect'
sidebar_title: inspect
description: >
The namespace inspect command is used to view raw information about a
particular namespace.
---
# Command: namespace inspect
The `namespace inspect` command is used to view raw information about a particular
namespace.
~> Namespace commands are new in Nomad 0.7 and are only available with Nomad
Enterprise.
## Usage
```plaintext
nomad namespace inspect [options] <namespace_name>
```
## General Options
@include 'general_options.mdx'
## Inspect Options
- `-t` : Format and display the namespace using a Go template.
## Examples
Inspect a namespace:
```shell
$ nomad namespace inspect default
{
"CreateIndex": 5,
"Description": "Default shared namespace",
"ModifyIndex": 38,
"Name": "default",
"Quota": "shared-default-quota"
}
```