Flux 0.193.0 (#4769)

pull/4770/head
Scott Anderson 2023-02-24 10:31:13 -07:00 committed by GitHub
parent c9361500d1
commit a0a15290d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
100 changed files with 511 additions and 212 deletions

View File

@ -10,6 +10,23 @@ aliases:
- /influxdb/cloud/reference/release-notes/flux/
---
## v0.193.0 [2023-02-23]
### Features
- Add `onNonmonotonic` parameter to [`histogramQuantile()`](/flux/v0.x/stdlib/universe/histogramquantile/)
to define behavior when bin counts are not monotonically increasing.
- Add the following functions to the `contrib/qxip/hash` package:
- [`hash.sha1()`](/flux/v0.x/stdlib/contrib/qxip/hash/sha1/)
- [`hash.md5()`](/flux/v0.x/stdlib/contrib/qxip/hash/md5/)
- [`hash.b64()`](/flux/v0.x/stdlib/contrib/qxip/hash/b64/)
- [`hash.hmac()`](/flux/v0.x/stdlib/contrib/qxip/hash/hmac/)
### Bug fixes
- Convert platform-dependent path separators to slashes.
- `use-after-free` in optimized String array.
---
## v0.192.0 [2023-01-09]
### Breaking changes

View File

@ -0,0 +1,62 @@
---
title: hash.b64() function
description: >
`hash.b64()` converts a string value to a Base64 string.
menu:
flux_0_x_ref:
name: hash.b64
parent: contrib/qxip/hash
identifier: contrib/qxip/hash/b64
weight: 301
introduced: 0.193.0
---
<!------------------------------------------------------------------------------
IMPORTANT: This page was generated from comments in the Flux source code. Any
edits made directly to this page will be overwritten the next time the
documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/contrib/qxip/hash/hash.flux#L108-L108
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
------------------------------------------------------------------------------->
`hash.b64()` converts a string value to a Base64 string.
##### Function type signature
```js
(v: A) => string
```
{{% caption %}}For more information, see [Function type signatures](/flux/v0.x/function-type-signatures/).{{% /caption %}}
## Parameters
### v
({{< req >}})
String to hash.
## Examples
### Convert a string to a Base64 string
```js
import "contrib/qxip/hash"
hash.b64(v: "Hello, world!")// Returns 2359500134450972198
```

View File

@ -20,7 +20,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/contrib/qxip/hash/hash.flux#L68-L68
https://github.com/influxdata/flux/blob/master/stdlib/contrib/qxip/hash/hash.flux#L88-L88
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -0,0 +1,68 @@
---
title: hash.hmac() function
description: >
`hash.hmac()` converts a string value to an MD5-signed SHA-1 hash.
menu:
flux_0_x_ref:
name: hash.hmac
parent: contrib/qxip/hash
identifier: contrib/qxip/hash/hmac
weight: 301
introduced: 0.193.0
---
<!------------------------------------------------------------------------------
IMPORTANT: This page was generated from comments in the Flux source code. Any
edits made directly to this page will be overwritten the next time the
documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/contrib/qxip/hash/hash.flux#L149-L149
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
------------------------------------------------------------------------------->
`hash.hmac()` converts a string value to an MD5-signed SHA-1 hash.
##### Function type signature
```js
(k: A, v: A) => string
```
{{% caption %}}For more information, see [Function type signatures](/flux/v0.x/function-type-signatures/).{{% /caption %}}
## Parameters
### v
({{< req >}})
String to hash.
### k
({{< req >}})
Key to sign hash.
## Examples
### Convert a string and key to a base64-signed hash
```js
import "contrib/qxip/hash"
hash.hmac(v: "helloworld", k: "123456")// Returns 75B5ueLnnGepYvh+KoevTzXCrjc=
```

View File

@ -0,0 +1,62 @@
---
title: hash.md5() function
description: >
`hash.md5()` converts a string value to an MD5 hash.
menu:
flux_0_x_ref:
name: hash.md5
parent: contrib/qxip/hash
identifier: contrib/qxip/hash/md5
weight: 301
introduced: 0.193.0
---
<!------------------------------------------------------------------------------
IMPORTANT: This page was generated from comments in the Flux source code. Any
edits made directly to this page will be overwritten the next time the
documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/contrib/qxip/hash/hash.flux#L128-L128
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
------------------------------------------------------------------------------->
`hash.md5()` converts a string value to an MD5 hash.
##### Function type signature
```js
(v: A) => string
```
{{% caption %}}For more information, see [Function type signatures](/flux/v0.x/function-type-signatures/).{{% /caption %}}
## Parameters
### v
({{< req >}})
String to hash.
## Examples
### Convert a string to an MD5 hash
```js
import "contrib/qxip/hash"
hash.md5(v: "Hello, world!")// Returns 2359500134450972198
```

View File

@ -0,0 +1,64 @@
---
title: hash.sha1() function
description: >
`hash.sha1()` converts a string value to a hexadecimal hash using the SHA-1 hash algorithm.
menu:
flux_0_x_ref:
name: hash.sha1
parent: contrib/qxip/hash
identifier: contrib/qxip/hash/sha1
weight: 301
introduced: 0.193.0
---
<!------------------------------------------------------------------------------
IMPORTANT: This page was generated from comments in the Flux source code. Any
edits made directly to this page will be overwritten the next time the
documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/contrib/qxip/hash/hash.flux#L48-L48
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
------------------------------------------------------------------------------->
`hash.sha1()` converts a string value to a hexadecimal hash using the SHA-1 hash algorithm.
##### Function type signature
```js
(v: A) => string
```
{{% caption %}}For more information, see [Function type signatures](/flux/v0.x/function-type-signatures/).{{% /caption %}}
## Parameters
### v
({{< req >}})
String to hash.
## Examples
### Convert a string to a SHA-1 hash
```js
import "contrib/qxip/hash"
hash.sha1(
v: "Hello, world!",
)// Returns 315f5bdb76d078c43b8ac0064e4a0164612b1fce77c869345bfc94c75894edd3
```

View File

@ -20,7 +20,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/contrib/qxip/hash/hash.flux#L48-L48
https://github.com/influxdata/flux/blob/master/stdlib/contrib/qxip/hash/hash.flux#L68-L68
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -20,7 +20,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/date/date.flux#L311-L311
https://github.com/influxdata/flux/blob/master/stdlib/date/date.flux#L296-L296
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
@ -30,6 +30,8 @@ Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
`date.monthDay()` returns the day of the month for a specified time.
Results range from `[1 - 31]`.
##### Function type signature
```js

View File

@ -20,7 +20,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/date/date.flux#L360-L360
https://github.com/influxdata/flux/blob/master/stdlib/date/date.flux#L345-L345
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -78,8 +78,8 @@ requests.peek(response: requests.get(url: "https://api.agify.io", params: ["name
#### Output data
| body | duration | headers | statusCode |
| ----------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
| body | duration | headers | statusCode |
| ----------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
| {"age":49,"count":25082,"name":"natalie"} | 100000000 | [
Access-Control-Allow-Credentials: true,
Access-Control-Allow-Origin: *,
@ -88,12 +88,12 @@ requests.peek(response: requests.get(url: "https://api.agify.io", params: ["name
Connection: keep-alive,
Content-Length: 41,
Content-Type: application/json; charset=utf-8,
Date: Mon, 09 Jan 2023 22:05:46 GMT,
Date: Thu, 23 Feb 2023 17:56:35 GMT,
Server: nginx/1.16.1,
X-Rate-Limit-Limit: 1000,
X-Rate-Limit-Remaining: 998,
X-Rate-Limit-Reset: 6854,
X-Request-Id: FzjDQTpxXJI494wvXynS
X-Rate-Limit-Reset: 21805,
X-Request-Id: F0aFxbJ8_WnjFxoI6M_x
] | 200 |
{{% /expand %}}

View File

@ -196,10 +196,10 @@ array.from(
#### Output data
| color | pendingDuration | id |
| ------ | ---------------- | -------- |
| red | 3 | 15612462 |
| blue | 16 | 15612462 |
| id | color | pendingDuration |
| -------- | ------ | ---------------- |
| 15612462 | red | 3 |
| 15612462 | blue | 16 |
{{% /expand %}}
{{< /expand-wrapper >}}

View File

@ -107,44 +107,44 @@ data
| _time | _value |
| -------------------- | ------------------- |
| 2023-01-09T22:03:00Z | 10.56555566168836 |
| 2023-01-09T22:03:10Z | -29.76098586714259 |
| 2023-01-09T22:03:20Z | -67.50435038579738 |
| 2023-01-09T22:03:30Z | -16.758669047964453 |
| 2023-01-09T22:03:40Z | -47.25865245658065 |
| 2023-01-09T22:03:50Z | 66.16082461651365 |
| 2023-01-09T22:04:00Z | -0.9179216017921821 |
| 2023-01-09T22:04:10Z | -56.89169240573004 |
| 2023-01-09T22:04:20Z | 11.358605472976624 |
| 2023-01-09T22:04:30Z | 28.71147881415803 |
| 2023-01-09T22:04:40Z | -30.928830759588756 |
| 2023-01-09T22:04:50Z | -22.411848631056067 |
| 2023-01-09T22:05:00Z | 17.05503606764129 |
| 2023-01-09T22:05:10Z | 9.834382683760559 |
| 2023-01-09T22:05:20Z | -12.62058579127679 |
| 2023-01-09T22:05:30Z | -44.44668391211515 |
| 2023-02-23T17:53:50Z | 10.56555566168836 |
| 2023-02-23T17:54:00Z | -29.76098586714259 |
| 2023-02-23T17:54:10Z | -67.50435038579738 |
| 2023-02-23T17:54:20Z | -16.758669047964453 |
| 2023-02-23T17:54:30Z | -47.25865245658065 |
| 2023-02-23T17:54:40Z | 66.16082461651365 |
| 2023-02-23T17:54:50Z | -0.9179216017921821 |
| 2023-02-23T17:55:00Z | -56.89169240573004 |
| 2023-02-23T17:55:10Z | 11.358605472976624 |
| 2023-02-23T17:55:20Z | 28.71147881415803 |
| 2023-02-23T17:55:30Z | -30.928830759588756 |
| 2023-02-23T17:55:40Z | -22.411848631056067 |
| 2023-02-23T17:55:50Z | 17.05503606764129 |
| 2023-02-23T17:56:00Z | 9.834382683760559 |
| 2023-02-23T17:56:10Z | -12.62058579127679 |
| 2023-02-23T17:56:20Z | -44.44668391211515 |
#### Output data
| _time | _value |
| -------------------- | ------------------- |
| 2023-01-09T22:03:00Z | 10.56555566168836 |
| 2023-01-09T22:03:10Z | -29.76098586714259 |
| 2023-01-09T22:03:20Z | -67.50435038579738 |
| 2023-01-09T22:03:30Z | -16.758669047964453 |
| 2023-01-09T22:03:40Z | -47.25865245658065 |
| 2023-01-09T22:03:50Z | 66.16082461651365 |
| 2023-01-09T22:04:00Z | -0.9179216017921821 |
| 2023-01-09T22:04:10Z | -56.89169240573004 |
| 2023-01-09T22:04:20Z | 11.358605472976624 |
| 2023-01-09T22:04:30Z | 28.71147881415803 |
| 2023-01-09T22:04:40Z | -30.928830759588756 |
| 2023-01-09T22:04:50Z | -22.411848631056067 |
| 2023-01-09T22:05:00Z | 17.05503606764129 |
| 2023-01-09T22:05:10Z | 9.834382683760559 |
| 2023-01-09T22:05:20Z | -12.62058579127679 |
| 2023-01-09T22:05:30Z | -44.44668391211515 |
| 2023-02-23T17:53:50Z | 10.56555566168836 |
| 2023-02-23T17:54:00Z | -29.76098586714259 |
| 2023-02-23T17:54:10Z | -67.50435038579738 |
| 2023-02-23T17:54:20Z | -16.758669047964453 |
| 2023-02-23T17:54:30Z | -47.25865245658065 |
| 2023-02-23T17:54:40Z | 66.16082461651365 |
| 2023-02-23T17:54:50Z | -0.9179216017921821 |
| 2023-02-23T17:55:00Z | -56.89169240573004 |
| 2023-02-23T17:55:10Z | 11.358605472976624 |
| 2023-02-23T17:55:20Z | 28.71147881415803 |
| 2023-02-23T17:55:30Z | -30.928830759588756 |
| 2023-02-23T17:55:40Z | -22.411848631056067 |
| 2023-02-23T17:55:50Z | 17.05503606764129 |
| 2023-02-23T17:56:00Z | 9.834382683760559 |
| 2023-02-23T17:56:10Z | -12.62058579127679 |
| 2023-02-23T17:56:20Z | -44.44668391211515 |
{{% /expand %}}
{{< /expand-wrapper >}}
@ -166,43 +166,43 @@ data
| _time | _value |
| -------------------- | ------------------- |
| 2023-01-09T22:03:00Z | 10.56555566168836 |
| 2023-01-09T22:03:10Z | -29.76098586714259 |
| 2023-01-09T22:03:20Z | -67.50435038579738 |
| 2023-01-09T22:03:30Z | -16.758669047964453 |
| 2023-01-09T22:03:40Z | -47.25865245658065 |
| 2023-01-09T22:03:50Z | 66.16082461651365 |
| 2023-01-09T22:04:00Z | -0.9179216017921821 |
| 2023-01-09T22:04:10Z | -56.89169240573004 |
| 2023-01-09T22:04:20Z | 11.358605472976624 |
| 2023-01-09T22:04:30Z | 28.71147881415803 |
| 2023-01-09T22:04:40Z | -30.928830759588756 |
| 2023-01-09T22:04:50Z | -22.411848631056067 |
| 2023-01-09T22:05:00Z | 17.05503606764129 |
| 2023-01-09T22:05:10Z | 9.834382683760559 |
| 2023-01-09T22:05:20Z | -12.62058579127679 |
| 2023-01-09T22:05:30Z | -44.44668391211515 |
| 2023-02-23T17:53:50Z | 10.56555566168836 |
| 2023-02-23T17:54:00Z | -29.76098586714259 |
| 2023-02-23T17:54:10Z | -67.50435038579738 |
| 2023-02-23T17:54:20Z | -16.758669047964453 |
| 2023-02-23T17:54:30Z | -47.25865245658065 |
| 2023-02-23T17:54:40Z | 66.16082461651365 |
| 2023-02-23T17:54:50Z | -0.9179216017921821 |
| 2023-02-23T17:55:00Z | -56.89169240573004 |
| 2023-02-23T17:55:10Z | 11.358605472976624 |
| 2023-02-23T17:55:20Z | 28.71147881415803 |
| 2023-02-23T17:55:30Z | -30.928830759588756 |
| 2023-02-23T17:55:40Z | -22.411848631056067 |
| 2023-02-23T17:55:50Z | 17.05503606764129 |
| 2023-02-23T17:56:00Z | 9.834382683760559 |
| 2023-02-23T17:56:10Z | -12.62058579127679 |
| 2023-02-23T17:56:20Z | -44.44668391211515 |
#### Output data
| _time | _value |
| -------------------- | ------------------- |
| 2023-01-09T22:03:00Z | 10.56555566168836 |
| 2023-01-09T22:03:20Z | -67.50435038579738 |
| 2023-01-09T22:03:30Z | -16.758669047964453 |
| 2023-01-09T22:03:40Z | -47.25865245658065 |
| 2023-01-09T22:03:50Z | 66.16082461651365 |
| 2023-01-09T22:04:00Z | -0.9179216017921821 |
| 2023-01-09T22:04:10Z | -56.89169240573004 |
| 2023-01-09T22:04:20Z | 11.358605472976624 |
| 2023-01-09T22:04:30Z | 28.71147881415803 |
| 2023-01-09T22:04:40Z | -30.928830759588756 |
| 2023-01-09T22:04:50Z | -22.411848631056067 |
| 2023-01-09T22:05:00Z | 17.05503606764129 |
| 2023-01-09T22:05:10Z | 9.834382683760559 |
| 2023-01-09T22:05:20Z | -12.62058579127679 |
| 2023-01-09T22:05:30Z | -44.44668391211515 |
| 2023-02-23T17:53:50Z | 10.56555566168836 |
| 2023-02-23T17:54:10Z | -67.50435038579738 |
| 2023-02-23T17:54:20Z | -16.758669047964453 |
| 2023-02-23T17:54:30Z | -47.25865245658065 |
| 2023-02-23T17:54:40Z | 66.16082461651365 |
| 2023-02-23T17:54:50Z | -0.9179216017921821 |
| 2023-02-23T17:55:00Z | -56.89169240573004 |
| 2023-02-23T17:55:10Z | 11.358605472976624 |
| 2023-02-23T17:55:20Z | 28.71147881415803 |
| 2023-02-23T17:55:30Z | -30.928830759588756 |
| 2023-02-23T17:55:40Z | -22.411848631056067 |
| 2023-02-23T17:55:50Z | 17.05503606764129 |
| 2023-02-23T17:56:00Z | 9.834382683760559 |
| 2023-02-23T17:56:10Z | -12.62058579127679 |
| 2023-02-23T17:56:20Z | -44.44668391211515 |
{{% /expand %}}
{{< /expand-wrapper >}}
@ -224,42 +224,42 @@ data
| _time | _value |
| -------------------- | ------------------- |
| 2023-01-09T22:03:00Z | 10.56555566168836 |
| 2023-01-09T22:03:10Z | -29.76098586714259 |
| 2023-01-09T22:03:20Z | -67.50435038579738 |
| 2023-01-09T22:03:30Z | -16.758669047964453 |
| 2023-01-09T22:03:40Z | -47.25865245658065 |
| 2023-01-09T22:03:50Z | 66.16082461651365 |
| 2023-01-09T22:04:00Z | -0.9179216017921821 |
| 2023-01-09T22:04:10Z | -56.89169240573004 |
| 2023-01-09T22:04:20Z | 11.358605472976624 |
| 2023-01-09T22:04:30Z | 28.71147881415803 |
| 2023-01-09T22:04:40Z | -30.928830759588756 |
| 2023-01-09T22:04:50Z | -22.411848631056067 |
| 2023-01-09T22:05:00Z | 17.05503606764129 |
| 2023-01-09T22:05:10Z | 9.834382683760559 |
| 2023-01-09T22:05:20Z | -12.62058579127679 |
| 2023-01-09T22:05:30Z | -44.44668391211515 |
| 2023-02-23T17:53:50Z | 10.56555566168836 |
| 2023-02-23T17:54:00Z | -29.76098586714259 |
| 2023-02-23T17:54:10Z | -67.50435038579738 |
| 2023-02-23T17:54:20Z | -16.758669047964453 |
| 2023-02-23T17:54:30Z | -47.25865245658065 |
| 2023-02-23T17:54:40Z | 66.16082461651365 |
| 2023-02-23T17:54:50Z | -0.9179216017921821 |
| 2023-02-23T17:55:00Z | -56.89169240573004 |
| 2023-02-23T17:55:10Z | 11.358605472976624 |
| 2023-02-23T17:55:20Z | 28.71147881415803 |
| 2023-02-23T17:55:30Z | -30.928830759588756 |
| 2023-02-23T17:55:40Z | -22.411848631056067 |
| 2023-02-23T17:55:50Z | 17.05503606764129 |
| 2023-02-23T17:56:00Z | 9.834382683760559 |
| 2023-02-23T17:56:10Z | -12.62058579127679 |
| 2023-02-23T17:56:20Z | -44.44668391211515 |
#### Output data
| _time | _value |
| -------------------- | ------------------- |
| 2023-01-09T22:03:00Z | 10.56555566168836 |
| 2023-01-09T22:03:20Z | -67.50435038579738 |
| 2023-01-09T22:03:30Z | -16.758669047964453 |
| 2023-01-09T22:03:40Z | -47.25865245658065 |
| 2023-01-09T22:03:50Z | 66.16082461651365 |
| 2023-01-09T22:04:00Z | -0.9179216017921821 |
| 2023-01-09T22:04:10Z | -56.89169240573004 |
| 2023-01-09T22:04:20Z | 11.358605472976624 |
| 2023-01-09T22:04:30Z | 28.71147881415803 |
| 2023-01-09T22:04:40Z | -30.928830759588756 |
| 2023-01-09T22:04:50Z | -22.411848631056067 |
| 2023-01-09T22:05:00Z | 17.05503606764129 |
| 2023-01-09T22:05:10Z | 9.834382683760559 |
| 2023-01-09T22:05:30Z | -44.44668391211515 |
| 2023-02-23T17:53:50Z | 10.56555566168836 |
| 2023-02-23T17:54:10Z | -67.50435038579738 |
| 2023-02-23T17:54:20Z | -16.758669047964453 |
| 2023-02-23T17:54:30Z | -47.25865245658065 |
| 2023-02-23T17:54:40Z | 66.16082461651365 |
| 2023-02-23T17:54:50Z | -0.9179216017921821 |
| 2023-02-23T17:55:00Z | -56.89169240573004 |
| 2023-02-23T17:55:10Z | 11.358605472976624 |
| 2023-02-23T17:55:20Z | 28.71147881415803 |
| 2023-02-23T17:55:30Z | -30.928830759588756 |
| 2023-02-23T17:55:40Z | -22.411848631056067 |
| 2023-02-23T17:55:50Z | 17.05503606764129 |
| 2023-02-23T17:56:00Z | 9.834382683760559 |
| 2023-02-23T17:56:20Z | -44.44668391211515 |
{{% /expand %}}
{{< /expand-wrapper >}}

View File

@ -20,7 +20,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/experimental/prometheus/prometheus.flux#L75-L104
https://github.com/influxdata/flux/blob/master/stdlib/experimental/prometheus/prometheus.flux#L83-L112
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
@ -36,7 +36,7 @@ InfluxDB scrapers available in InfluxDB OSS.
##### Function type signature
```js
(<-tables: stream[{B with le: D, _field: C}], quantile: float, ?metricVersion: A) => stream[E] where A: Equatable, C: Equatable, E: Record
(<-tables: stream[{B with le: D, _field: C}], quantile: float, ?metricVersion: A, ?onNonmonotonic: string) => stream[E] where A: Equatable, C: Equatable, E: Record
```
{{% caption %}}For more information, see [Function type signatures](/flux/v0.x/function-type-signatures/).{{% /caption %}}
@ -64,6 +64,17 @@ Input data. Default is piped-forward data (`<-`).
### onNonmonotonic
Describes behavior when counts are not monotonically increasing
when sorted by upper bound. Default is `error`.
**Supported values**:
- **error**: Produce an error.
- **force**: Force bin counts to be monotonic by adding to each bin such that it
is equal to the next smaller bin.
- **drop**: When a nonmonotonic table is encountered, produce no output.
## Examples

View File

@ -73,8 +73,8 @@ requests.peek(response: requests.get(url: "https://api.agify.io", params: ["name
#### Output data
| body | duration | headers | statusCode |
| ----------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
| body | duration | headers | statusCode |
| ----------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
| {"age":49,"count":25082,"name":"natalie"} | 100000000 | [
Access-Control-Allow-Credentials: true,
Access-Control-Allow-Origin: *,
@ -83,12 +83,12 @@ requests.peek(response: requests.get(url: "https://api.agify.io", params: ["name
Connection: keep-alive,
Content-Length: 41,
Content-Type: application/json; charset=utf-8,
Date: Mon, 09 Jan 2023 22:05:48 GMT,
Date: Thu, 23 Feb 2023 17:56:36 GMT,
Server: nginx/1.16.1,
X-Rate-Limit-Limit: 1000,
X-Rate-Limit-Remaining: 996,
X-Rate-Limit-Reset: 6852,
X-Request-Id: FzjDQZ1EFfn5HmUxxygx
X-Rate-Limit-Reset: 21804,
X-Request-Id: F0aFxgmtOnROQlAIw0LC
] | 200 |
{{% /expand %}}

View File

@ -189,12 +189,12 @@ requests.peek(response: response)
Cache-Control: max-age=604800,
Content-Length: 1256,
Content-Type: text/html; charset=UTF-8,
Date: Mon, 09 Jan 2023 22:05:48 GMT,
Date: Thu, 23 Feb 2023 17:56:37 GMT,
Etag: "3147526947",
Expires: Mon, 16 Jan 2023 22:05:48 GMT,
Expires: Thu, 02 Mar 2023 17:56:37 GMT,
Last-Modified: Thu, 17 Oct 2019 07:18:26 GMT,
Server: EOS (vny/0453)
] | 92658873 |
Server: EOS (vny/0452)
] | 91233054 |
{{% /expand %}}
{{< /expand-wrapper >}}

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3872-L3895
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3881-L3904
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3133-L3133
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3142-L3142
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4142-L4144
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4151-L4153
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3151-L3151
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3160-L3160
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3556-L3556
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3565-L3565
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3694-L3696
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3703-L3705
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -82,13 +82,13 @@ data
#### Input data
| y | _time | x |
| ---- | -------------------- | -- |
| 0 | 2021-01-01T00:00:00Z | 0 |
| 0.5 | 2021-01-01T00:00:12Z | 1 |
| 8 | 2021-01-01T00:00:24Z | 4 |
| 40.5 | 2021-01-01T00:00:36Z | 9 |
| 128 | 2021-01-01T00:00:48Z | 16 |
| x | y | _time |
| -- | ---- | -------------------- |
| 0 | 0 | 2021-01-01T00:00:00Z |
| 1 | 0.5 | 2021-01-01T00:00:12Z |
| 4 | 8 | 2021-01-01T00:00:24Z |
| 9 | 40.5 | 2021-01-01T00:00:36Z |
| 16 | 128 | 2021-01-01T00:00:48Z |
#### Output data

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3529-L3529
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3538-L3538
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -23,7 +23,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4459-L4465
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4468-L4474
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3201-L3201
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3210-L3210
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3048-L3051
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3057-L3060
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3085-L3088
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3094-L3097
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3245-L3245
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3254-L3254
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2987-L2987
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2996-L2996
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3014-L3014
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3023-L3023
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4227-L4235
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4236-L4244
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4262-L4270
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4271-L4279
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4190-L4200
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4199-L4209
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L876-L886
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L884-L895
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
@ -57,6 +57,7 @@ The value column represents the value of the desired quantile from the histogram
<-tables: stream[A],
?countColumn: string,
?minValue: float,
?onNonmonotonic: string,
?quantile: float,
?upperBoundColumn: string,
?valueColumn: string,
@ -96,6 +97,18 @@ Column to store the computed quantile in. Default is `_value.
Assumed minimum value of the dataset. Default is `0.0`.
### onNonmonotonic
Describes behavior when counts are not monotonically increasing
when sorted by upper bound. Default is `error`.
**Supported values**:
- **error**: Produce an error.
- **force**: Force bin counts to be monotonic by adding to each bin such that it
is equal to the next smaller bin.
- **drop**: When a nonmonotonic table is encountered, produce no output.
If the quantile falls below the lowest upper bound, interpolation is
performed between `minValue` and the lowest upper bound.
When `minValue` is equal to negative infinity, the lowest upper bound is used.

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L975-L987
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L984-L996
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1034-L1042
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1043-L1051
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3922-L3925
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3931-L3934
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3305-L3305
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3314-L3314
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1092-L1101
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1101-L1110
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -25,7 +25,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1175-L1175
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1184-L1184
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1202-L1205
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1211-L1214
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4492-L4495
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4501-L4504
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1242-L1245
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1251-L1254
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1601-L1601
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1610-L1610
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -23,7 +23,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1363-L1369
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1372-L1378
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1630-L1630
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1639-L1639
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3579-L3579
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3588-L3588
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1665-L1665
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1674-L1674
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3602-L3602
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3611-L3611
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3625-L3625
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3634-L3634
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4334-L4342
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4343-L4351
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4369-L4377
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4378-L4386
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4297-L4307
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4306-L4316
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1740-L1740
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1749-L1749
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1765-L1765
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1774-L1774
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1788-L1788
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1797-L1797
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3985-L3987
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3994-L3996
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1813-L1813
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1822-L1822
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1841-L1844
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1850-L1853
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1882-L1887
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1891-L1896
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3725-L3725
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3734-L3734
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2038-L2046
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2047-L2055
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -23,7 +23,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1951-L1959
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L1960-L1968
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2099-L2103
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2108-L2112
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2187-L2191
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2196-L2200
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2227-L2230
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2236-L2239
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2278-L2282
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2287-L2291
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2312-L2314
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2321-L2323
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2341-L2341
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2350-L2350
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2434-L2434
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2443-L2443
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2491-L2491
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2500-L2500
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2457-L2457
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2466-L2466
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4017-L4019
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4026-L4028
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4068-L4076
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4077-L4085
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2560-L2570
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2569-L2579
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2602-L2605
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2611-L2614
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3342-L3342
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3351-L3351
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2627-L2627
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2636-L2636
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2944-L2947
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2953-L2956
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2378-L2378
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2387-L2387
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3384-L3384
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3393-L3393
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4422-L4427
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4431-L4436
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2412-L2412
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2421-L2421
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3655-L3665
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3664-L3674
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4769-L4769
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4778-L4778
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4824-L4824
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4833-L4833
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4742-L4742
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4751-L4751
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4658-L4658
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4667-L4667
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4111-L4113
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4120-L4122
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4609-L4609
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4618-L4618
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4800-L4800
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4809-L4809
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4707-L4707
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4716-L4716
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4532-L4540
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4541-L4549
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2675-L2681
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2684-L2690
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -22,7 +22,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4586-L4588
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L4595-L4597
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3433-L3433
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L3442-L3442
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2738-L2738
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2747-L2747
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
@ -149,14 +149,14 @@ union(tables: [t1, t2])
| _time | _value | tag |
| -------------------- | ------- | ---- |
| 2021-01-01T00:00:00Z | 0 | bar |
| 2021-01-02T00:00:00Z | -1 | bar |
| 2021-01-03T00:00:00Z | -2 | bar |
| 2021-01-04T00:00:00Z | -3 | bar |
| 2021-01-01T00:00:00Z | 1 | foo |
| 2021-01-02T00:00:00Z | 2 | foo |
| 2021-01-03T00:00:00Z | 3 | foo |
| 2021-01-04T00:00:00Z | 4 | foo |
| 2021-01-01T00:00:00Z | 0 | bar |
| 2021-01-02T00:00:00Z | -1 | bar |
| 2021-01-03T00:00:00Z | -2 | bar |
| 2021-01-04T00:00:00Z | -3 | bar |
{{% /expand %}}
{{< /expand-wrapper >}}

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2763-L2763
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2772-L2772
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2863-L2884
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2872-L2893
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md

View File

@ -21,7 +21,7 @@ documentation is generated.
To make updates to this documentation, update the function comments above the
function definition in the Flux source code:
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2914-L2914
https://github.com/influxdata/flux/blob/master/stdlib/universe/universe.flux#L2923-L2923
Contributing to Flux: https://github.com/influxdata/flux#contributing
Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md