added list_name parameter and support in children function

pull/105/head
Scott Anderson 2019-03-25 10:21:10 -06:00
parent 13016b2fb1
commit 505f24c60a
15 changed files with 17 additions and 3 deletions

View File

@ -1,5 +1,6 @@
---
title: Quick start to data collection
list_title: Quick start
description: >
Use "Quick Start" in the initial InfluxDB setup process to create a scraper
that collects InfluxDB metrics from the InfluxDB `/metrics` endpoint.

View File

@ -1,7 +1,8 @@
---
title: Use Telegraf to collect data
weight: 102
seotitle: Use Telegraf to collect and write data
list_title: Use Telegraf
weight: 102
description: >
Use Telegraf to collect and write data to InfluxDB v2.0.
Create Telegraf configurations in the InfluxDB UI or manually configure Telegraf.

View File

@ -1,5 +1,6 @@
---
title: Flux built-in functions
list_title: Built-in functions
description: >
Built-in functions provide a necessary foundation for working with data using Flux.
They do not require an import statement and are usable without any extra setup.

View File

@ -1,5 +1,6 @@
---
title: Flux built-in input functions
list_title: Built-in input functions
description: Flux's built-in input functions define sources of data or or display information about data sources.
aliases:
- /v2.0/reference/flux/functions/inputs

View File

@ -1,5 +1,6 @@
---
title: Flux built-in miscellaneous functions
list_title: Built-in miscellaneous functions
description: >
Flux provides built-in miscellaneous functions that serve purposes other than
retrieving, transforming, or outputting data.

View File

@ -1,5 +1,6 @@
---
title: Flux built-in output functions
list_title: Built-in output functions
description: Flux's built-in output functions yield results or send data to a specified output destination.
aliases:
- /v2.0/reference/flux/functions/outputs

View File

@ -1,5 +1,6 @@
---
title: Flux built-in testing functions
list_title: Built-in testing functions
description: Flux's built-in testing functions test various aspects of piped-forward data.
menu:
v2_0_ref:

View File

@ -1,5 +1,6 @@
---
title: Flux built-in transformation functions
list_title: Built-in transformation functions
description: Flux's built-in transformation functions transform and shape your data in specific ways.
aliases:
- /v2.0/reference/flux/functions/transformations

View File

@ -1,5 +1,6 @@
---
title: Flux built-in aggregate functions
list_title: Built-in aggregate functions
description: Flux's built-in aggregate functions take values from an input table and aggregate them in some way.
aliases:
- /v2.0/reference/flux/functions/transformations/aggregates

View File

@ -1,5 +1,6 @@
---
title: Flux built-in selector functions
list_title: Built-in selector functions
description: Flux's built-in selector functions return one or more records based on function logic.
aliases:
- /v2.0/reference/flux/functions/transformations/selectors

View File

@ -1,5 +1,6 @@
---
title: Flux built-in type conversion functions
list_title: Built-in type conversion functions
description: Flux's built-in built-in type conversion functions convert columns of the input table into a specific data type.
aliases:
- /v2.0/reference/flux/functions/transformations/type-conversions

View File

@ -1,5 +1,6 @@
---
title: Flux InfluxDB v1 functions
list_title: InfluxDB v1 functions
description: >
InfluxDB v1 Flux functions provide tools for managing data from an InfluxDB v1.x
database or structured using the InfluxDB v1 data structure.

View File

@ -1,5 +1,6 @@
---
title: Flux string functions
list_title: String functions
description: >
String functions provide tools for manipulating strings in Flux.
To use them, import the `strings` package.

View File

@ -1,5 +1,6 @@
---
title: Flux testing functions
list_title: Testing functions
description: >
Flux testing functions test piped-forward data in specific ways and return errors if the tests fail.
To use them, import the `testing` package.

View File

@ -15,7 +15,7 @@
{{ if eq $type "articles" }}
{{ range $pages.ByWeight }}
<h3><a href="{{ .RelPermalink }}" >{{ .Title }}</a></h3>
<h3><a href="{{ .RelPermalink }}" >{{ if .Params.list_title }}{{ .Params.list_title }}{{ else }}{{ .Title }}{{ end }}</a></h3>
<p>
{{- if .Description }}{{- .Description | markdownify -}}
{{ else }}{{- .Summary | markdownify -}}
@ -28,7 +28,7 @@
<ul>
{{ range $pages.ByWeight }}
{{ $title := replaceRE `\ function` "" .Title }}
<li><a href="{{ .RelPermalink }}">{{ $title }}</a></li>
<li><a href="{{ .RelPermalink }}">{{ if .Params.list_title }}{{ .Params.list_title }}{{ else }}{{ $title }}{{ end }}</a></li>
{{ end }}
<ul>