hotfix: fix flux tag taxonomies and function filters

pull/5220/head
Scott Anderson 2023-11-06 17:08:22 -07:00
parent 5b2df64975
commit 604d22989a
356 changed files with 366 additions and 366 deletions

View File

@ -9,7 +9,7 @@ menu:
name: Boolean
parent: Basic types
weight: 201
flux/v0.x/tags: ["basic types", "data types"]
flux/v0/tags: ["basic types", "data types"]
related:
- /flux/v0/stdlib/universe/bool/
- /flux/v0/stdlib/universe/tobool/

View File

@ -9,7 +9,7 @@ menu:
name: Bytes
parent: Basic types
weight: 201
flux/v0.x/tags: ["basic types", "data types"]
flux/v0/tags: ["basic types", "data types"]
related:
- /flux/v0/stdlib/universe/bytes/
- /flux/v0/stdlib/contrib/bonitoo-io/hex/bytes/

View File

@ -9,7 +9,7 @@ menu:
name: Duration
parent: Basic types
weight: 201
flux/v0.x/tags: ["basic types", "data types"]
flux/v0/tags: ["basic types", "data types"]
related:
- /flux/v0/stdlib/universe/duration/
list_code_example: |

View File

@ -10,7 +10,7 @@ menu:
name: Float
parent: Basic types
weight: 202
flux/v0.x/tags: ["basic types", "numeric types", "data types"]
flux/v0/tags: ["basic types", "numeric types", "data types"]
related:
- /flux/v0/stdlib/universe/float/
- /flux/v0/stdlib/universe/tofloat/

View File

@ -9,7 +9,7 @@ menu:
name: Integer
parent: Basic types
weight: 202
flux/v0.x/tags: ["basic types", "numeric types", "data types"]
flux/v0/tags: ["basic types", "numeric types", "data types"]
related:
- /flux/v0/stdlib/universe/int/
- /flux/v0/stdlib/universe/toint/

View File

@ -11,7 +11,7 @@ menu:
weight: 204
related:
- /flux/v0/stdlib/internal/debug/null/
flux/v0.x/tags: ["basic types", "data types"]
flux/v0/tags: ["basic types", "data types"]
---
The **null type** represents a missing or unknown value.

View File

@ -10,7 +10,7 @@ menu:
name: Regular expression
parent: Basic types
weight: 201
flux/v0.x/tags: ["regexp types", "data types"]
flux/v0/tags: ["regexp types", "data types"]
aliases:
- /flux/v0/data-types/regexp/
related:

View File

@ -9,7 +9,7 @@ menu:
name: String
parent: Basic types
weight: 201
flux/v0.x/tags: ["basic types", "data types"]
flux/v0/tags: ["basic types", "data types"]
aliases:
- /influxdb/v2/reference/flux/language/string-interpolation/
- /influxdb/cloud/reference/flux/language/string-interpolation/

View File

@ -9,7 +9,7 @@ menu:
name: Time
parent: Basic types
weight: 201
flux/v0.x/tags: [basic types, data types, date/time]
flux/v0/tags: [basic types, data types, date/time]
related:
- /flux/v0/stdlib/universe/time/
- /flux/v0/stdlib/universe/totime/

View File

@ -9,7 +9,7 @@ menu:
name: UIntegers
parent: Basic types
weight: 202
flux/v0.x/tags: ["basic types", "numeric types", "data types"]
flux/v0/tags: ["basic types", "numeric types", "data types"]
related:
- /flux/v0/stdlib/universe/uint/
- /flux/v0/stdlib/universe/touint/

View File

@ -10,7 +10,7 @@ menu:
name: Array
parent: Composite types
weight: 202
flux/v0.x/tags: ["composite types", "data types"]
flux/v0/tags: ["composite types", "data types"]
related:
- /flux/v0/stdlib/universe/length/
- /flux/v0/stdlib/array/

View File

@ -11,7 +11,7 @@ menu:
name: Dictionary
parent: Composite types
weight: 203
flux/v0.x/tags: ["composite types", "data types"]
flux/v0/tags: ["composite types", "data types"]
related:
- /flux/v0/stdlib/dict/
list_code_example: |

View File

@ -10,7 +10,7 @@ menu:
name: Function
parent: Composite types
weight: 204
flux/v0.x/tags: ["composite types", "data types"]
flux/v0/tags: ["composite types", "data types"]
related:
- /flux/v0/define-functions/
list_code_example: |

View File

@ -10,7 +10,7 @@ menu:
name: Record
parent: Composite types
weight: 201
flux/v0.x/tags: ["composite types", "data types"]
flux/v0/tags: ["composite types", "data types"]
list_code_example: |
```js
{foo: "bar", baz: 123.4, quz: -2}

View File

@ -11,7 +11,7 @@ menu:
name: Dynamic types
parent: Work with Flux types
weight: 101
flux/v0.x/tags: [dynamic types, data types]
flux/v0/tags: [dynamic types, data types]
---
A **dynamic** type is a wrapper for data whose type is not known until runtime.

View File

@ -9,6 +9,6 @@ menu:
name: Union types
parent: Work with Flux types
weight: 101
flux/v0.x/tags: ["regexp types", "data types"]
flux/v0/tags: ["regexp types", "data types"]
draft: true
---

View File

@ -69,7 +69,7 @@ and important function behaviors.
Flux input functions return data from data sources.
The following input functions are available:
{{< list-all-functions filters="inputs" >}}
{{< flux/list-all-functions filters="inputs" >}}
---
@ -77,7 +77,7 @@ The following input functions are available:
Flux output functions yield results or send data to a specified output destination.
The following output functions are are available:
{{< list-all-functions filters="outputs" >}}
{{< flux/list-all-functions filters="outputs" >}}
---
@ -119,7 +119,7 @@ Each output table from an aggregate function will:
**The following aggregate functions are available:**
{{< list-all-functions filters="aggregates" >}}
{{< flux/list-all-functions filters="aggregates" >}}
##### Aggregate selectors
The following functions are both aggregates and selectors.
@ -144,7 +144,7 @@ Each output table from a selector function will:
**The following selector functions are available:**
{{< list-all-functions filters="selectors" >}}
{{< flux/list-all-functions filters="selectors" >}}
##### Selectors and aggregates
The following functions can be used as both selectors or aggregates, but they are
@ -160,7 +160,7 @@ Flux dynamic query functions extract a table from a stream of tables and access
columns and records.
For recommended usage, see [Extract scalar values](/influxdb/cloud/query-data/flux/scalar-values/).
{{< list-all-functions filters="dynamic queries" >}}
{{< flux/list-all-functions filters="dynamic queries" >}}
---
@ -181,7 +181,7 @@ specified conditions.
Rows that do not match the specified conditions are dropped from the output.
The following filter functions are available:
{{< list-all-functions filters="filters" >}}
{{< flux/list-all-functions filters="filters" >}}
---
@ -189,7 +189,7 @@ The following filter functions are available:
Flux type conversion functions convert scalar values or columns to a specific data type.
The following type conversion functions are available:
{{< list-all-functions filters="type-conversions" >}}
{{< flux/list-all-functions filters="type-conversions" >}}
---
@ -198,7 +198,7 @@ Flux testing functions test various aspects of data.
Tests return either `true` or `false`, a transformed stream of tables, or, upon failure, an error.
The following testing functions are available:
{{< list-all-functions filters="tests" >}}
{{< flux/list-all-functions filters="tests" >}}
---
@ -207,7 +207,7 @@ Flux date/time functions return or operate on [time](/flux/v0/data-types/basic/t
or [duration](/flux/v0/spec/types/#duration-types) values.
The following data/time functions are available:
{{< list-all-functions filters="date/time" >}}
{{< flux/list-all-functions filters="date/time" >}}
---
@ -215,7 +215,7 @@ The following data/time functions are available:
Flux metadata functions return metadata from the input stream or from an underlying data source.
The following metadata functions are available:
{{< list-all-functions filters="metadata" >}}
{{< flux/list-all-functions filters="metadata" >}}
---
@ -223,7 +223,7 @@ The following metadata functions are available:
Flux notification endpoint functions send notifications to external endpoints or services.
The following notification endpoint functions are available:
{{< list-all-functions filters="notification endpoints" >}}
{{< flux/list-all-functions filters="notification endpoints" >}}
---
@ -231,4 +231,4 @@ The following notification endpoint functions are available:
Flux geotemporal functions are designed to work with geotemporal data (geographic location over time).
The following geotemporal functions are available:
{{< list-all-functions filters="geotemporal" >}}
{{< flux/list-all-functions filters="geotemporal" >}}

View File

@ -5,7 +5,7 @@ description: >
from an HTTP-accessible endpoint.
menu: flux_0_x
weight: 8
flux/v0.x/tags: [prometheus]
flux/v0/tags: [prometheus]
---
[Prometheus](https://prometheus.io/) is an open-source toolkit designed

View File

@ -12,7 +12,7 @@ weight: 102
cascade:
related:
- https://prometheus.io/docs/concepts/metric_types/, Prometheus metric types
flux/v0.x/tags: [prometheus]
flux/v0/tags: [prometheus]
---
Learn how to use Flux to work with the four core

View File

@ -14,7 +14,7 @@ weight: 101
related:
- https://prometheus.io/docs/concepts/metric_types/, Prometheus metric types
- /influxdb/v2/reference/prometheus-metrics/
flux/v0.x/tags: [prometheus]
flux/v0/tags: [prometheus]
---
Use Flux to query and transform Prometheus **counter** metrics stored in InfluxDB.

View File

@ -13,7 +13,7 @@ weight: 101
related:
- https://prometheus.io/docs/concepts/metric_types/, Prometheus metric types
- /influxdb/v2/reference/prometheus-metrics/
flux/v0.x/tags: [prometheus]
flux/v0/tags: [prometheus]
---
Use Flux to query and transform Prometheus **gauge** metrics stored in InfluxDB.

View File

@ -11,7 +11,7 @@ menu:
name: Histogram
parent: Prometheus metric types
weight: 101
flux/v0.x/tags: [prometheus]
flux/v0/tags: [prometheus]
related:
- https://prometheus.io/docs/concepts/metric_types/, Prometheus metric types
- /influxdb/v2/reference/prometheus-metrics/

View File

@ -11,7 +11,7 @@ menu:
name: Summary
parent: Prometheus metric types
weight: 101
flux/v0.x/tags: [prometheus]
flux/v0/tags: [prometheus]
related:
- https://prometheus.io/docs/concepts/metric_types/, Prometheus metric types
- /influxdb/v2/reference/prometheus-metrics/

View File

@ -7,7 +7,7 @@ menu:
flux_v0:
parent: Work with Prometheus
weight: 101
flux/v0.x/tags: [prometheus]
flux/v0/tags: [prometheus]
related:
- https://prometheus.io/docs/concepts/data_model/, Prometheus data model
- /flux/v0/stdlib/experimental/prometheus/scrape/

View File

@ -11,7 +11,7 @@ aliases:
- /influxdb/v2/reference/flux/language/
- /influxdb/cloud/reference/flux/language/
- /flux/v0/language/
flux/v0.x/tags: [flux]
flux/v0/tags: [flux]
---
The following documents specify the Flux language and query execution.

View File

@ -10,7 +10,7 @@ weight: 110
aliases:
- /influxdb/v2/reference/flux/language/operators/
- /influxdb/cloud/reference/flux/language/operators/
flux/v0.x/tags: [operators]
flux/v0/tags: [operators]
---
Flux includes the following types of operators:

View File

@ -11,7 +11,7 @@ aliases:
- /influxdb/cloud/reference/flux/stdlib/
- /influxdb/cloud/reference/flux/stdlib/
- /flux/v0/functions/
flux/v0.x/tags: [flux, functions, package]
flux/v0/tags: [flux, functions, package]
menu:
flux_v0_ref:
name: Standard library

View File

@ -18,4 +18,4 @@ see [Flux function types and categories](/flux/v0/function-types/).
{{< list-filters "flux" >}}
{{< list-all-functions >}}
{{< flux/list-all-functions >}}

View File

@ -9,7 +9,7 @@ menu:
identifier: array
weight: 11
cascade:
flux/v0.x/tags: [array, tables]
flux/v0/tags: [array, tables]
introduced: 0.103.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: array
identifier: array/from
weight: 101
flux/v0.x/tags: [inputs]
flux/v0/tags: [inputs]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
identifier: bitwise
weight: 11
cascade:
flux/v0.x/tags: [bitwise]
flux/v0/tags: [bitwise]
introduced: 0.173.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/RohanSreerama5/naiveBayesClassifier
identifier: contrib/RohanSreerama5/naiveBayesClassifier/naiveBayes
weight: 301
flux/v0.x/tags: [transformations]
flux/v0/tags: [transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/alerta
identifier: contrib/bonitoo-io/alerta/alert
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/alerta
identifier: contrib/bonitoo-io/alerta/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/servicenow
identifier: contrib/bonitoo-io/servicenow/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints]
flux/v0/tags: [notification endpoints]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/servicenow
identifier: contrib/bonitoo-io/servicenow/event
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -10,7 +10,7 @@ menu:
parent: contrib/bonitoo-io/tickscript
identifier: contrib/bonitoo-io/tickscript/alert
weight: 301
flux/v0.x/tags: [transformations, outputs]
flux/v0/tags: [transformations, outputs]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
parent: contrib/bonitoo-io/tickscript
identifier: contrib/bonitoo-io/tickscript/compute
weight: 301
flux/v0.x/tags: [transformations]
flux/v0/tags: [transformations]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
parent: contrib/bonitoo-io/tickscript
identifier: contrib/bonitoo-io/tickscript/deadman
weight: 301
flux/v0.x/tags: [transformations]
flux/v0/tags: [transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/tickscript
identifier: contrib/bonitoo-io/tickscript/groupBy
weight: 301
flux/v0.x/tags: [transformations]
flux/v0/tags: [transformations]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
parent: contrib/bonitoo-io/tickscript
identifier: contrib/bonitoo-io/tickscript/join
weight: 301
flux/v0.x/tags: [transformations]
flux/v0/tags: [transformations]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
parent: contrib/bonitoo-io/tickscript
identifier: contrib/bonitoo-io/tickscript/select
weight: 301
flux/v0.x/tags: [transformations]
flux/v0/tags: [transformations]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
parent: contrib/bonitoo-io/tickscript
identifier: contrib/bonitoo-io/tickscript/selectWindow
weight: 301
flux/v0.x/tags: [transformations]
flux/v0/tags: [transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/victorops
identifier: contrib/bonitoo-io/victorops/alert
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/victorops
identifier: contrib/bonitoo-io/victorops/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/zenoss
identifier: contrib/bonitoo-io/zenoss/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/bonitoo-io/zenoss
identifier: contrib/bonitoo-io/zenoss/event
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -10,7 +10,7 @@ menu:
parent: contrib/chobbs/discord
identifier: contrib/chobbs/discord/endpoint
weight: 301
flux/v0.x/tags: [notifcation endpoints, transformations]
flux/v0/tags: [notifcation endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/chobbs/discord
identifier: contrib/chobbs/discord/send
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/jsternberg/influxdb
identifier: contrib/jsternberg/influxdb/from
weight: 301
flux/v0.x/tags: [inputs]
flux/v0/tags: [inputs]
---
<!------------------------------------------------------------------------------

View File

@ -11,7 +11,7 @@ menu:
parent: contrib/jsternberg/influxdb
identifier: contrib/jsternberg/influxdb/select
weight: 301
flux/v0.x/tags: [inputs]
flux/v0/tags: [inputs]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/qxip/clickhouse
identifier: contrib/qxip/clickhouse/query
weight: 301
flux/v0.x/tags: [inputs]
flux/v0/tags: [inputs]
---
<!------------------------------------------------------------------------------

View File

@ -10,7 +10,7 @@ menu:
parent: contrib/qxip/logql
identifier: contrib/qxip/logql/query_range
weight: 301
flux/v0.x/tags: [inputs]
flux/v0/tags: [inputs]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/rhajek/bigpanda
identifier: contrib/rhajek/bigpanda/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/rhajek/bigpanda
identifier: contrib/rhajek/bigpanda/sendAlert
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/sranka/opsgenie
identifier: contrib/sranka/opsgenie/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/sranka/opsgenie
identifier: contrib/sranka/opsgenie/sendAlert
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -10,7 +10,7 @@ menu:
parent: contrib/sranka/sensu
identifier: contrib/sranka/sensu/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/sranka/sensu
identifier: contrib/sranka/sensu/event
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/sranka/teams
identifier: contrib/sranka/teams/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
parent: contrib/sranka/teams
identifier: contrib/sranka/teams/message
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/sranka/telegram
identifier: contrib/sranka/telegram/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
parent: contrib/sranka/telegram
identifier: contrib/sranka/telegram/message
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/sranka/webexteams
identifier: contrib/sranka/webexteams/endpoint
weight: 301
flux/v0.x/tags: [notification endpoints, transformations]
flux/v0/tags: [notification endpoints, transformations]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
parent: contrib/sranka/webexteams
identifier: contrib/sranka/webexteams/message
weight: 301
flux/v0.x/tags: [single notification]
flux/v0/tags: [single notification]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: contrib/tomhollingworth/events
identifier: contrib/tomhollingworth/events/duration
weight: 301
flux/v0.x/tags: [transformations, events]
flux/v0/tags: [transformations, events]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
identifier: csv
weight: 11
cascade:
flux/v0.x/tags: [csv]
flux/v0/tags: [csv]
introduced: 0.14.0
---

View File

@ -9,7 +9,7 @@ menu:
parent: csv
identifier: csv/from
weight: 101
flux/v0.x/tags: [csv, inputs]
flux/v0/tags: [csv, inputs]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
identifier: date
weight: 11
cascade:
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
introduced: 0.37.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: date
identifier: date/add
weight: 101
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
introduced: 0.162.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/friday
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -9,7 +9,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/monday
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/month
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/saturday
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/sunday
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/thursday
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/tuesday
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/wednesday
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -9,7 +9,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/week
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
deprecated: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: date/boundaries
identifier: date/boundaries/yesterday
weight: 201
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
introduced: 0.172.0
deprecated: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: date
identifier: date/scale
weight: 101
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: date
identifier: date/sub
weight: 101
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
introduced: 0.162.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental
identifier: experimental/addDuration
weight: 101
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
introduced: 0.39.0
deprecated: 0.162.0
---

View File

@ -9,7 +9,7 @@ menu:
parent: experimental/aggregate
identifier: experimental/aggregate/rate
weight: 201
flux/v0.x/tags: [transformations, aggregates]
flux/v0/tags: [transformations, aggregates]
---
<!------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@ menu:
parent: experimental
identifier: experimental/alignTime
weight: 101
flux/v0.x/tags: [transformations, date/time]
flux/v0/tags: [transformations, date/time]
introduced: 0.66.0
---

View File

@ -9,7 +9,7 @@ menu:
identifier: experimental/array
weight: 21
cascade:
flux/v0.x/tags: [array, tables]
flux/v0/tags: [array, tables]
introduced: 0.79.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/array
identifier: experimental/array/toBool
weight: 201
flux/v0.x/tags: [type-conversions]
flux/v0/tags: [type-conversions]
introduced: 0.184.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/array
identifier: experimental/array/toDuration
weight: 201
flux/v0.x/tags: [type-conversions]
flux/v0/tags: [type-conversions]
introduced: 0.184.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/array
identifier: experimental/array/toFloat
weight: 201
flux/v0.x/tags: [type-conversions]
flux/v0/tags: [type-conversions]
introduced: 0.184.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/array
identifier: experimental/array/toInt
weight: 201
flux/v0.x/tags: [type-conversions]
flux/v0/tags: [type-conversions]
introduced: 0.184.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/array
identifier: experimental/array/toString
weight: 201
flux/v0.x/tags: [type-conversions]
flux/v0/tags: [type-conversions]
introduced: 0.184.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/array
identifier: experimental/array/toTime
weight: 201
flux/v0.x/tags: [type-conversions]
flux/v0/tags: [type-conversions]
introduced: 0.184.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/array
identifier: experimental/array/toUInt
weight: 201
flux/v0.x/tags: [type-conversions]
flux/v0/tags: [type-conversions]
introduced: 0.184.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/bigtable
identifier: experimental/bigtable/from
weight: 201
flux/v0.x/tags: [inputs]
flux/v0/tags: [inputs]
---
<!------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ menu:
identifier: experimental/bitwise
weight: 21
cascade:
flux/v0.x/tags: [bitwise]
flux/v0/tags: [bitwise]
introduced: 0.138.0
deprecated: 0.173.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental
identifier: experimental/count
weight: 101
flux/v0.x/tags: [transformations, aggregates]
flux/v0/tags: [transformations, aggregates]
introduced: 0.107.0
---

View File

@ -9,7 +9,7 @@ menu:
identifier: experimental/csv
weight: 21
cascade:
flux/v0.x/tags: [csv]
flux/v0/tags: [csv]
introduced: 0.64.0
deprecated: 0.173.0
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/date/boundaries
identifier: experimental/date/boundaries/friday
weight: 301
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
introduced: 0.177.1
---

View File

@ -9,7 +9,7 @@ menu:
parent: experimental/date/boundaries
identifier: experimental/date/boundaries/monday
weight: 301
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
introduced: 0.177.1
---

View File

@ -8,7 +8,7 @@ menu:
parent: experimental/date/boundaries
identifier: experimental/date/boundaries/month
weight: 301
flux/v0.x/tags: [date/time]
flux/v0/tags: [date/time]
introduced: 0.177.1
---

Some files were not shown because too many files have changed in this diff Show More