docs: move telemetry under operations

Create a new "Operating Nomad" section of the docs where we can put reference
material for operators that doesn't quite fit in either configuration file /
command line documentation or a step-by-step Learn Guide. Pre-populate this
with the existing telemetry docs and some links out to the Learn Guide
sections.
This commit is contained in:
Tim Gross 2020-11-19 09:43:29 -05:00
parent de6b023af2
commit 4331e86e8e
5 changed files with 52 additions and 3 deletions

View file

@ -280,7 +280,25 @@ export default [
},
],
},
{category: 'telemetry', content: ['metrics']},
{
category: 'operations',
content: [
'telemetry',
'metrics',
{
title: 'Cluster Management',
href: 'https://learn.hashicorp.com/collections/nomad/manage-clusters'
},
{
title: 'Transport Security',
href: 'https://learn.hashicorp.com/collections/nomad/transport-security'
},
{
title: 'Access Control',
href: 'https://learn.hashicorp.com/collections/nomad/access-control'
}
]
},
'------------',
'enterprise',
'faq',

View file

@ -0,0 +1,19 @@
---
layout: docs
page_title: Operations
description: |-
Learn about operating Nomad.
---
# Operations
This section includes references on how to operate Nomad in production. To
learn more, choose an item from the sidebar, or choose one of the options
below:
- [Telemetry Overview](/docs/operations/telemetry)
- [Metrics](/docs/operations/metrics)
- [Cluster Management](https://learn.hashicorp.com/collections/nomad/manage-clusters)
- [Transport Security](https://learn.hashicorp.com/collections/nomad/transport-security)
- [Access Control](https://learn.hashicorp.com/collections/nomad/access-control)

View file

@ -4,8 +4,8 @@ module.exports = [
// Playground for testing url pattern matching: https://npm.runkit.com/path-to-regexp
{
source: '/docs/telemetry/overview',
destination: '/docs/telemetry',
source: '/docs/operations/overview',
destination: '/docs/operations',
permanent: true,
},
@ -804,6 +804,18 @@ module.exports = [
destination: '/docs/configuration/vault',
permanent: true,
},
// Moved telemetry under operations
{
source: '/docs/telemetry',
destination: '/docs/operations/telemetry',
permanent: true,
},
{
source: '/docs/telemetry/metrics',
destination: '/docs/operations/metrics',
permanent: true,
},
// Moved guide-like docs to /guides
{