Filter mixer docs from related content sections (#9563)

* wip

* update keywords for observability pages

* switch to front-matter based approach
This commit is contained in:
Douglas Reid 2021-04-28 11:24:02 -07:00 committed by GitHub
parent 17586c328b
commit d862ba0978
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 4 deletions

View File

@ -8,6 +8,7 @@ keywords: [adapters,mixer,policies,telemetry]
aliases:
- /blog/mixer-adapter-model.html
target_release: 0.2
exclude_from_see_also: true
---
Istio 0.2 introduced a new Mixer adapter model which is intended to increase Mixers flexibility to address a varied set of infrastructure backends. This post intends to put the adapter model in context and explain how it works.

View File

@ -9,6 +9,7 @@ aliases:
- /blog/posts/2017/mixer-spof-myth.html
- /blog/mixer-spof-myth.html
target_release: 0.3
exclude_from_see_also: true
---
As [Mixer](https://istio.io/v1.6/docs/reference/config/policy-and-telemetry/) is in the request path, it is natural to question how it impacts

View File

@ -2,7 +2,7 @@
title: Observability
description: Describes the telemetry and monitoring features provided by Istio.
weight: 40
keywords: [policies,telemetry,control,config]
keywords: [telemetry,metrics,logs,tracing]
aliases:
- /docs/concepts/policy-and-control/mixer.html
- /docs/concepts/policy-and-control/mixer-config.html

View File

@ -2,6 +2,7 @@
title: Istio Standard Metrics
description: Istio standard metrics exported by Istio telemetry.
weight: 50
keywords: [telemetry,metrics]
owner: istio/wg-user-experience-maintainers
test: n/a
aliases:

View File

@ -2,7 +2,7 @@
title: Getting Envoy's Access Logs
description: This task shows you how to configure Envoy proxies to print access logs to their standard output.
weight: 10
keywords: [telemetry]
keywords: [telemetry,logs]
aliases:
- /docs/tasks/telemetry/access-log
- /docs/tasks/telemetry/logs/access-log/

View File

@ -3,8 +3,10 @@
{{ $skipPageNav := .Scratch.Get "skipPageNav" }}
{{ if .Scratch.Get "seeAlso" }}
{{ $related := .Site.RegularPages.Related . | first 6 }}
{{ with $related }}
{{ $related := .Site.RegularPages.Related . }}
{{ $excludes := where $related "Params.exclude_from_see_also" true }}
{{ $seeAlso := $related | complement $excludes | first 6 }}
{{ with $seeAlso }}
<nav id="see-also">
<h2>{{ i18n "see_also" }}</h2>