Merge branch 'master' into copilot/fix-6301
commit
8bee92ba7e
|
@ -96,6 +96,91 @@ less than or equal to `08-19-2019T13:00:00Z`.
|
|||
{{% /expand %}}
|
||||
{{< /expand-wrapper >}}
|
||||
|
||||
### Filter data by dynamic date ranges
|
||||
|
||||
Use date and time functions to filter data by relative time periods that automatically update.
|
||||
|
||||
#### Get data from yesterday
|
||||
|
||||
```sql
|
||||
SELECT *
|
||||
FROM h2o_feet
|
||||
WHERE "location" = 'santa_monica'
|
||||
AND time >= DATE_TRUNC('day', NOW() - INTERVAL '1 day')
|
||||
AND time < DATE_TRUNC('day', NOW())
|
||||
```
|
||||
|
||||
{{< expand-wrapper >}}
|
||||
{{% expand "View example results" %}}
|
||||
|
||||
This query filters data to include only records from the previous calendar day:
|
||||
|
||||
- `NOW() - INTERVAL '1 day'` calculates yesterday's timestamp
|
||||
- `DATE_TRUNC('day', ...)` truncates to the start of that day (00:00:00)
|
||||
- The range spans from yesterday at 00:00:00 to today at 00:00:00
|
||||
|
||||
| level description | location | time | water_level |
|
||||
| :---------------- | :----------- | :----------------------- | :---------- |
|
||||
| below 3 feet | santa_monica | 2019-08-18T12:00:00.000Z | 2.533 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T12:06:00.000Z | 2.543 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T12:12:00.000Z | 2.385 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T12:18:00.000Z | 2.362 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T12:24:00.000Z | 2.405 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T12:30:00.000Z | 2.398 |
|
||||
|
||||
{{% /expand %}}
|
||||
{{< /expand-wrapper >}}
|
||||
|
||||
#### Get data from the last 24 hours
|
||||
|
||||
```sql
|
||||
SELECT *
|
||||
FROM h2o_feet
|
||||
WHERE time >= NOW() - INTERVAL '1 day' AND location = 'santa_monica'
|
||||
```
|
||||
|
||||
{{< expand-wrapper >}}
|
||||
{{% expand "View example results" %}}
|
||||
|
||||
This query returns data from exactly 24 hours before the current time. Unlike the "yesterday" example, this creates a rolling 24-hour window that moves with the current time.
|
||||
|
||||
| level description | location | time | water_level |
|
||||
| :---------------- | :----------- | :----------------------- | :---------- |
|
||||
| below 3 feet | santa_monica | 2019-08-18T18:00:00.000Z | 2.120 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T18:06:00.000Z | 2.028 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T18:12:00.000Z | 1.982 |
|
||||
| below 3 feet | santa_monica | 2019-08-19T06:00:00.000Z | 1.825 |
|
||||
| below 3 feet | santa_monica | 2019-08-19T06:06:00.000Z | 1.753 |
|
||||
| below 3 feet | santa_monica | 2019-08-19T06:12:00.000Z | 1.691 |
|
||||
|
||||
{{% /expand %}}
|
||||
{{< /expand-wrapper >}}
|
||||
|
||||
#### Get data from the current week
|
||||
|
||||
```sql
|
||||
SELECT *
|
||||
FROM h2o_feet
|
||||
WHERE time >= DATE_TRUNC('week', NOW()) AND location = 'santa_monica'
|
||||
```
|
||||
|
||||
{{< expand-wrapper >}}
|
||||
{{% expand "View example results" %}}
|
||||
|
||||
This query returns all data from the start of the current week (Monday at 00:00:00) to the current time. The DATE_TRUNC('week', NOW()) function truncates the current timestamp to the beginning of the week.
|
||||
|
||||
| level description | location | time | water_level |
|
||||
| :---------------- | :----------- | :----------------------- | :---------- |
|
||||
| below 3 feet | santa_monica | 2019-08-12T00:00:00.000Z | 2.064 |
|
||||
| below 3 feet | santa_monica | 2019-08-14T09:30:00.000Z | 2.116 |
|
||||
| below 3 feet | santa_monica | 2019-08-16T15:45:00.000Z | 1.952 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T12:00:00.000Z | 2.533 |
|
||||
| below 3 feet | santa_monica | 2019-08-18T18:00:00.000Z | 2.385 |
|
||||
| below 3 feet | santa_monica | 2019-08-19T10:30:00.000Z | 1.691 |
|
||||
|
||||
{{% /expand %}}
|
||||
{{< /expand-wrapper >}}
|
||||
|
||||
### Filter data using the OR operator
|
||||
|
||||
```sql
|
||||
|
|
|
@ -11,6 +11,84 @@ menu:
|
|||
weight: 60
|
||||
---
|
||||
|
||||
## v1.36.0 {date="2025-09-08"}
|
||||
|
||||
### Important Changes
|
||||
|
||||
- Pull request [#17355](https://github.com/influxdata/telegraf/pull/17355) updates `profiles` support in `inputs.opentelemetry` from v1 experimental to v1 development, following upstream changes to the experimental API. This update modifies metric output. For example, the `frame_type`, `stack_trace_id`, `build_id`, and `build_id_type` fields are no longer reported. The value format of other fields or tags might also have changed. For more information, see the [OpenTelemetry documentation](https://opentelemetry.io/docs/).
|
||||
|
||||
### New Plugins
|
||||
|
||||
- [#17368](https://github.com/influxdata/telegraf/pull/17368) `inputs.turbostat` Add plugin
|
||||
- [#17078](https://github.com/influxdata/telegraf/pull/17078) `processors.round` Add plugin
|
||||
|
||||
### Features
|
||||
|
||||
- [#16705](https://github.com/influxdata/telegraf/pull/16705) `agent` Introduce labels and selectors to enable and disable plugins
|
||||
- [#17547](https://github.com/influxdata/telegraf/pull/17547) `inputs.influxdb_v2_listener` Add `/health` route
|
||||
- [#17312](https://github.com/influxdata/telegraf/pull/17312) `inputs.internal` Allow to collect statistics per plugin instance
|
||||
- [#17024](https://github.com/influxdata/telegraf/pull/17024) `inputs.lvm` Add sync_percent for lvm_logical_vol
|
||||
- [#17355](https://github.com/influxdata/telegraf/pull/17355) `inputs.opentelemetry` Upgrade otlp proto module
|
||||
- [#17156](https://github.com/influxdata/telegraf/pull/17156) `inputs.syslog` Add support for RFC3164 over TCP
|
||||
- [#17543](https://github.com/influxdata/telegraf/pull/17543) `inputs.syslog` Allow limiting message size in octet counting mode
|
||||
- [#17539](https://github.com/influxdata/telegraf/pull/17539) `inputs.x509_cert` Add support for Windows certificate stores
|
||||
- [#17244](https://github.com/influxdata/telegraf/pull/17244) `output.nats` Allow disabling stream creation for externally managed streams
|
||||
- [#17474](https://github.com/influxdata/telegraf/pull/17474) `outputs.elasticsearch` Support array headers and preserve commas in values
|
||||
- [#17548](https://github.com/influxdata/telegraf/pull/17548) `outputs.influxdb` Add internal statistics for written bytes
|
||||
- [#17213](https://github.com/influxdata/telegraf/pull/17213) `outputs.nats` Allow providing a subject layout
|
||||
- [#17346](https://github.com/influxdata/telegraf/pull/17346) `outputs.nats` Enable batch serialization with use_batch_format
|
||||
- [#17249](https://github.com/influxdata/telegraf/pull/17249) `outputs.sql` Allow sending batches of metrics in transactions
|
||||
- [#17510](https://github.com/influxdata/telegraf/pull/17510) `parsers.avro` Support record arrays at root level
|
||||
- [#17365](https://github.com/influxdata/telegraf/pull/17365) `plugins.snmp` Allow debug logging in gosnmp
|
||||
- [#17345](https://github.com/influxdata/telegraf/pull/17345) `selfstat` Implement collection of plugin-internal statistics
|
||||
|
||||
### Bugfixes
|
||||
|
||||
- [#17411](https://github.com/influxdata/telegraf/pull/17411) `inputs.diskio` Handle counter wrapping in io fields
|
||||
- [#17551](https://github.com/influxdata/telegraf/pull/17551) `inputs.s7comm` Use correct value for string length with 'extra' parameter
|
||||
- [#17579](https://github.com/influxdata/telegraf/pull/17579) `internal` Extract go version more robustly
|
||||
- [#17566](https://github.com/influxdata/telegraf/pull/17566) `outputs` Retrigger batch-available-events only if at least one metric was written successfully
|
||||
- [#17381](https://github.com/influxdata/telegraf/pull/17381) `packaging` Rename rpm from loong64 to loongarch64
|
||||
|
||||
### Dependency Updates
|
||||
|
||||
- [#17519](https://github.com/influxdata/telegraf/pull/17519) `deps` Bump cloud.google.com/go/storage from 1.56.0 to 1.56.1
|
||||
- [#17532](https://github.com/influxdata/telegraf/pull/17532) `deps` Bump github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.18.2 to 1.19.0
|
||||
- [#17494](https://github.com/influxdata/telegraf/pull/17494) `deps` Bump github.com/SAP/go-hdb from 1.13.12 to 1.14.0
|
||||
- [#17488](https://github.com/influxdata/telegraf/pull/17488) `deps` Bump github.com/antchfx/xpath from 1.3.4 to 1.3.5
|
||||
- [#17540](https://github.com/influxdata/telegraf/pull/17540) `deps` Bump github.com/aws/aws-sdk-go-v2/config from 1.31.0 to 1.31.2
|
||||
- [#17538](https://github.com/influxdata/telegraf/pull/17538) `deps` Bump github.com/aws/aws-sdk-go-v2/credentials from 1.18.4 to 1.18.6
|
||||
- [#17517](https://github.com/influxdata/telegraf/pull/17517) `deps` Bump github.com/aws/aws-sdk-go-v2/feature/ec2/imds from 1.18.3 to 1.18.4
|
||||
- [#17528](https://github.com/influxdata/telegraf/pull/17528) `deps` Bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.48.0 to 1.48.2
|
||||
- [#17536](https://github.com/influxdata/telegraf/pull/17536) `deps` Bump github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs from 1.56.0 to 1.57.0
|
||||
- [#17524](https://github.com/influxdata/telegraf/pull/17524) `deps` Bump github.com/aws/aws-sdk-go-v2/service/dynamodb from 1.46.0 to 1.49.1
|
||||
- [#17493](https://github.com/influxdata/telegraf/pull/17493) `deps` Bump github.com/aws/aws-sdk-go-v2/service/ec2 from 1.242.0 to 1.244.0
|
||||
- [#17527](https://github.com/influxdata/telegraf/pull/17527) `deps` Bump github.com/aws/aws-sdk-go-v2/service/ec2 from 1.244.0 to 1.246.0
|
||||
- [#17530](https://github.com/influxdata/telegraf/pull/17530) `deps` Bump github.com/aws/aws-sdk-go-v2/service/kinesis from 1.38.0 to 1.39.1
|
||||
- [#17534](https://github.com/influxdata/telegraf/pull/17534) `deps` Bump github.com/aws/aws-sdk-go-v2/service/sts from 1.37.0 to 1.38.0
|
||||
- [#17513](https://github.com/influxdata/telegraf/pull/17513) `deps` Bump github.com/aws/aws-sdk-go-v2/service/timestreamwrite from 1.34.0 to 1.34.2
|
||||
- [#17514](https://github.com/influxdata/telegraf/pull/17514) `deps` Bump github.com/coreos/go-systemd/v22 from 22.5.0 to 22.6.0
|
||||
- [#17563](https://github.com/influxdata/telegraf/pull/17563) `deps` Bump github.com/facebook/time from 0.0.0-20240626113945-18207c5d8ddc to 0.0.0-20250903103710-a5911c32cdb9
|
||||
- [#17526](https://github.com/influxdata/telegraf/pull/17526) `deps` Bump github.com/gophercloud/gophercloud/v2 from 2.7.0 to 2.8.0
|
||||
- [#17537](https://github.com/influxdata/telegraf/pull/17537) `deps` Bump github.com/microsoft/go-mssqldb from 1.9.2 to 1.9.3
|
||||
- [#17490](https://github.com/influxdata/telegraf/pull/17490) `deps` Bump github.com/nats-io/nats-server/v2 from 2.11.7 to 2.11.8
|
||||
- [#17523](https://github.com/influxdata/telegraf/pull/17523) `deps` Bump github.com/nats-io/nats.go from 1.44.0 to 1.45.0
|
||||
- [#17492](https://github.com/influxdata/telegraf/pull/17492) `deps` Bump github.com/safchain/ethtool from 0.5.10 to 0.6.2
|
||||
- [#17486](https://github.com/influxdata/telegraf/pull/17486) `deps` Bump github.com/snowflakedb/gosnowflake from 1.15.0 to 1.16.0
|
||||
- [#17541](https://github.com/influxdata/telegraf/pull/17541) `deps` Bump github.com/tidwall/wal from 1.1.8 to 1.2.0
|
||||
- [#17529](https://github.com/influxdata/telegraf/pull/17529) `deps` Bump github.com/vmware/govmomi from 0.51.0 to 0.52.0
|
||||
- [#17496](https://github.com/influxdata/telegraf/pull/17496) `deps` Bump go.opentelemetry.io/collector/pdata from 1.36.1 to 1.38.0
|
||||
- [#17533](https://github.com/influxdata/telegraf/pull/17533) `deps` Bump go.opentelemetry.io/collector/pdata from 1.38.0 to 1.39.0
|
||||
- [#17516](https://github.com/influxdata/telegraf/pull/17516) `deps` Bump go.step.sm/crypto from 0.69.0 to 0.70.0
|
||||
- [#17499](https://github.com/influxdata/telegraf/pull/17499) `deps` Bump golang.org/x/mod from 0.26.0 to 0.27.0
|
||||
- [#17497](https://github.com/influxdata/telegraf/pull/17497) `deps` Bump golang.org/x/net from 0.42.0 to 0.43.0
|
||||
- [#17487](https://github.com/influxdata/telegraf/pull/17487) `deps` Bump google.golang.org/api from 0.246.0 to 0.247.0
|
||||
- [#17531](https://github.com/influxdata/telegraf/pull/17531) `deps` Bump google.golang.org/api from 0.247.0 to 0.248.0
|
||||
- [#17520](https://github.com/influxdata/telegraf/pull/17520) `deps` Bump google.golang.org/grpc from 1.74.2 to 1.75.0
|
||||
- [#17518](https://github.com/influxdata/telegraf/pull/17518) `deps` Bump google.golang.org/protobuf from 1.36.7 to 1.36.8
|
||||
- [#17498](https://github.com/influxdata/telegraf/pull/17498) `deps` Bump k8s.io/client-go from 0.33.3 to 0.33.4
|
||||
- [#17515](https://github.com/influxdata/telegraf/pull/17515) `deps` Bump super-linter/super-linter from 8.0.0 to 8.1.0
|
||||
|
||||
## v1.35.4 {date="2025-08-18"}
|
||||
|
||||
### Bugfixes
|
||||
|
@ -5973,14 +6051,14 @@ for details about the mapping.
|
|||
|
||||
### New input data formats (parsers)
|
||||
|
||||
- [csv](https://archive.docs.influxdata.com/telegraf/v1/data_formats/input/csv) - Contributed by @maxunt
|
||||
- [grok](https://archive.docs.influxdata.com/telegraf/v1/data_formats/input/grok/) - Contributed by @maxunt
|
||||
- [logfmt](https://archive.docs.influxdata.com/telegraf/v1/data_formats/input/logfmt/) - Contributed by @Ayrdrie & @maxunt
|
||||
- [wavefront](https://archive.docs.influxdata.com/telegraf/v1/data_formats/input/wavefront/) - Contributed by @puckpuck
|
||||
- [csv](https://docs.influxdata.com/telegraf/v1/data_formats/input/csv/) - Contributed by @maxunt
|
||||
- [grok](https://docs.influxdata.com/telegraf/v1/data_formats/input/grok/) - Contributed by @maxunt
|
||||
- [logfmt](https://docs.influxdata.com/telegraf/v1/data_formats/input/logfmt/) - Contributed by @Ayrdrie & @maxunt
|
||||
- [wavefront](https://docs.influxdata.com/telegraf/v1/data_formats/input/wavefront/) - Contributed by @puckpuck
|
||||
|
||||
### New output data formats (serializers)
|
||||
|
||||
- [splunkmetric](https://archive.docs.influxdata.com/telegraf/v1/data_formats/output/splunkmetric/) - Contributed by @ronnocol
|
||||
- [splunkmetric](https://docs.influxdata.com/telegraf/v1/data_formats/output/splunkmetric/) - Contributed by @ronnocol
|
||||
|
||||
### Features
|
||||
|
||||
|
@ -6761,7 +6839,7 @@ These plugins will replace [udp_listener](https://github.com/influxdata/telegraf
|
|||
- Add [DMCache input plugin](https://github.com/influxdata/telegraf/tree/release-1.8/plugins/inputs/dmcache).
|
||||
- Add support for precision in [HTTP Listener input plugin](https://github.com/influxdata/telegraf/tree/release-1.8/plugins/inputs/http_listener).
|
||||
- Add `message_len_max` option to the [Kafka consumer input plugin](https://github.com/influxdata/telegraf/tree/release-1.8/plugins/inputs/kafka_consumer).
|
||||
- Add [collectd parser](https://archive.docs.influxdata.com/telegraf/v1/concepts/data_formats_input/#collectd).
|
||||
- Add [collectd parser](https://docs.influxdata.com/telegraf/v1/data_formats/input/collectd/).
|
||||
- Simplify plugin testing without outputs.
|
||||
- Check signature in the [GitHub webhook input plugin](https://github.com/influxdata/telegraf/tree/release-1.8/plugins/inputs/webhooks/github).
|
||||
- Add [papertrail](https://github.com/influxdata/telegraf/tree/release-1.8/plugins/inputs/webhooks/papertrail) support to webhooks.
|
||||
|
|
|
@ -141,9 +141,9 @@ telegraf:
|
|||
menu_category: other
|
||||
list_order: 6
|
||||
versions: [v1]
|
||||
latest: v1.35
|
||||
latest: v1.36
|
||||
latest_patches:
|
||||
v1: 1.35.4
|
||||
v1: 1.36.0
|
||||
ai_sample_questions:
|
||||
- How do I install and configure Telegraf?
|
||||
- How do I write a custom Telegraf plugin?
|
||||
|
|
|
@ -502,8 +502,8 @@ input:
|
|||
Docker containers.
|
||||
|
||||
> [!NOTE]
|
||||
> Make sure Telegraf has sufficient permissions to access the
|
||||
> configured endpoint.
|
||||
> Make sure Telegraf has sufficient permissions to access the configured
|
||||
> endpoint.
|
||||
introduced: v0.1.9
|
||||
os_support: [freebsd, linux, macos, solaris, windows]
|
||||
tags: [containers]
|
||||
|
@ -515,9 +515,9 @@ input:
|
|||
Docker containers.
|
||||
|
||||
> [!NOTE]
|
||||
> This plugin works only for containers with the `local` or `json-file` or
|
||||
> `journald` logging driver. Please make sure Telegraf has sufficient
|
||||
> permissions to access the configured endpoint.
|
||||
> This plugin works only for containers with the `local`, `json-file`, or
|
||||
> `journald` logging driver. Make sure Telegraf has sufficient permissions
|
||||
> to access the configured endpoint.
|
||||
introduced: v1.12.0
|
||||
os_support: [freebsd, linux, macos, solaris, windows]
|
||||
tags: [containers, logging]
|
||||
|
@ -1970,6 +1970,11 @@ input:
|
|||
This service plugin receives traces, metrics, logs and profiles from
|
||||
[OpenTelemetry](https://opentelemetry.io) clients and compatible agents
|
||||
via gRPC.
|
||||
|
||||
> [!NOTE]
|
||||
> Telegraf v1.32 through v1.35 support the Profiles signal using the **v1
|
||||
> experimental API**. Telegraf v1.36+ supports the Profiles signal using the
|
||||
> **v1 development API**.
|
||||
introduced: v1.19.0
|
||||
os_support: [freebsd, linux, macos, solaris, windows]
|
||||
tags: [logging, messaging]
|
||||
|
@ -2672,6 +2677,19 @@ input:
|
|||
introduced: v0.3.0
|
||||
os_support: [freebsd, linux, macos, solaris, windows]
|
||||
tags: [testing]
|
||||
- name: Turbostat
|
||||
id: turbostat
|
||||
description: |
|
||||
This service plugin monitors system performance using the
|
||||
[turbostat](https://github.com/torvalds/linux/tree/master/tools/power/x86/turbostat)
|
||||
command.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> This plugin requires the `turbostat` executable to be installed on the
|
||||
> system.
|
||||
introduced: v1.36.0
|
||||
os_support: [linux]
|
||||
tags: [hardware, system]
|
||||
- name: Twemproxy
|
||||
id: twemproxy
|
||||
description: |
|
||||
|
@ -2835,7 +2853,8 @@ input:
|
|||
description: |
|
||||
This plugin provides information about
|
||||
[X.509](https://en.wikipedia.org/wiki/X.509) certificates accessible e.g.
|
||||
via local file, tcp, udp, https or smtp protocols.
|
||||
via local file, tcp, udp, https or smtp protocols and the Windows
|
||||
Certificate Store.
|
||||
|
||||
> [!NOTE]
|
||||
> When using a UDP address as a certificate source, the server must
|
||||
|
@ -2940,8 +2959,8 @@ output:
|
|||
Explorer](https://docs.microsoft.com/en-us/azure/data-explorer), [Azure
|
||||
Synapse Data
|
||||
Explorer](https://docs.microsoft.com/en-us/azure/synapse-analytics/data-explorer/data-explorer-overview),
|
||||
and [Real-Time Intelligence in
|
||||
Fabric](https://learn.microsoft.com/fabric/real-time-intelligence/overview)
|
||||
and [Real time analytics in
|
||||
Fabric](https://learn.microsoft.com/en-us/fabric/real-time-analytics/overview)
|
||||
services.
|
||||
|
||||
Azure Data Explorer is a distributed, columnar store, purpose built for
|
||||
|
@ -3299,9 +3318,17 @@ output:
|
|||
- name: Microsoft Fabric
|
||||
id: microsoft_fabric
|
||||
description: |
|
||||
This plugin writes metrics to [Real time analytics in
|
||||
Fabric](https://learn.microsoft.com/en-us/fabric/real-time-analytics/overview)
|
||||
services.
|
||||
This plugin writes metrics to [Fabric
|
||||
Eventhouse](https://learn.microsoft.com/fabric/real-time-intelligence/eventhouse)
|
||||
and [Fabric
|
||||
Eventstream](https://learn.microsoft.com/fabric/real-time-intelligence/event-streams/overview?tabs=enhancedcapabilities)
|
||||
artifacts of [Real-Time Intelligence in Microsoft
|
||||
Fabric](https://learn.microsoft.com/fabric/real-time-intelligence/overview).
|
||||
|
||||
Real-Time Intelligence is a SaaS service in Microsoft Fabric that allows
|
||||
you to extract insights and visualize data in motion. It offers an
|
||||
end-to-end solution for event-driven scenarios, streaming data, and data
|
||||
logs.
|
||||
introduced: v1.35.0
|
||||
os_support: [freebsd, linux, macos, solaris, windows]
|
||||
tags: [datastore]
|
||||
|
@ -4026,6 +4053,17 @@ processor:
|
|||
introduced: v1.15.0
|
||||
os_support: [freebsd, linux, macos, solaris, windows]
|
||||
tags: [annotation]
|
||||
- name: Round
|
||||
id: round
|
||||
description: |
|
||||
This plugin rounds numerical field values to the configured
|
||||
precision. This is particularly useful in combination with the [dedup
|
||||
processor](/telegraf/v1/plugins/#processor-dedup) to reduce the number of
|
||||
metrics sent to the output when a lower precision is required for the
|
||||
values.
|
||||
introduced: v1.36.0
|
||||
os_support: [freebsd, linux, macos, solaris, windows]
|
||||
tags: [transformation]
|
||||
- name: S2 Geo
|
||||
id: s2geo
|
||||
description: |
|
||||
|
@ -4122,7 +4160,7 @@ processor:
|
|||
- name: Template
|
||||
id: template
|
||||
description: |
|
||||
This plugin applies templates to metrics for generatuing a new tag. The
|
||||
This plugin applies templates to metrics for generating a new tag. The
|
||||
primary use case of this plugin is to create a tag that can be used for
|
||||
dynamic routing to multiple output plugins or using an output specific
|
||||
routing option.
|
||||
|
|
Loading…
Reference in New Issue