Skip to content

Commit 1654d3c

Browse files
authored
Merge branch 'master' into core-enterprise-api-ref
2 parents ed42c1e + 2b40655 commit 1654d3c

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

content/flux/v0/stdlib/date/hour.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Default is the `location` option.
6262
- [Return the hour of a time value](#return-the-hour-of-a-time-value)
6363
- [Return the hour of a relative duration](#return-the-hour-of-a-relative-duration)
6464
- [Return the current hour](#return-the-current-hour)
65+
- [Return the hour in localtime ](#return-the-hour-in-localtime)
6566

6667
### Return the hour of a time value
6768

@@ -96,3 +97,11 @@ date.hour(t: now())
9697

9798
```
9899

100+
### Return the hour in local time
101+
102+
```js
103+
import "date"
104+
import "timezone"
105+
106+
date.hour(t: r._time, location: timezone.location(name: "Europe/Berlin"))
107+
```

content/influxdb3/core/install.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ docker pull \
159159
--platform linux/arm64 \
160160
quay.io/influxdb/influxdb3-core:latest
161161
```
162+
> [!Note]
163+
> The {{% product-name %}} Docker image exposes port `8181`, the `influxdb3` server default for HTTP connections.
164+
> To map the exposed port to a different port when running a container, see the Docker guide for [Publishing and exposing ports](https://docs.docker.com/get-started/docker-concepts/running-containers/publishing-ports/).
162165
163166
### Use Docker Compose
164167

content/shared/v3-core-get-started/_index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,12 @@ To run the [Docker image](/influxdb3/core/install/#docker-image) and persist dat
170170
- `-v /path/on/host:/path/in/container`: Mounts a directory from your filesystem to the container
171171
- `--object-store file --data-dir /path/in/container`: Uses the mount for server storage
172172

173-
<!--pytest.mark.skip-->
173+
> [!Note]
174+
>
175+
> The {{% product-name %}} Docker image exposes port `8181`, the `influxdb3` server default for HTTP connections.
176+
> To map the exposed port to a different port when running a container, see the Docker guide for [Publishing and exposing ports](https://docs.docker.com/get-started/docker-concepts/running-containers/publishing-ports/).
174177
178+
<!--pytest.mark.skip-->
175179
```bash
176180
# Filesystem object store with Docker
177181
# Create a mount

content/telegraf/v1/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ The generated file contains settings for all available plugins--some are enabled
5555

5656
To generate a configuration file that contains settings for only specific plugins,
5757
use the `--input-filter` and `--output-filter` options to
58-
specify [input plugins](/telegraf/v1/plugins/input_plugins)
59-
and [output plugins](/telegraf/v1/plugins/output_plugins/).
58+
specify [input plugins](/telegraf/v1/configure_plugins/input_plugins/)
59+
and [output plugins](/telegraf/v1/configure_plugins/output_plugins/).
6060
Use a colon (`:`) to separate plugin names.
6161

6262
#### Syntax

content/telegraf/v1/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,8 +584,8 @@ telegraf config > telegraf.conf
584584
585585
To generate a configuration file that contains settings for only specific plugins,
586586
use the `--input-filter` and `--output-filter` options to
587-
specify [input plugins](/telegraf/v1/plugins/input_plugins)
588-
and [output plugins](/telegraf/v1/plugins/output_plugins/)--for example:
587+
specify [input plugins](/telegraf/v1/configure_plugins/input_plugins/)
588+
and [output plugins](/telegraf/v1/configure_plugins/output_plugins/)--for example:
589589
590590
{{% code-placeholders "cpu|http|influxdb_v2|file" %}}
591591

0 commit comments

Comments
 (0)