Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/main/java/io/kestra/plugin/influxdb/FluxQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Query InfluxDB using Flux language",
description = "Execute a Flux query against InfluxDB"
title = "Query InfluxDB using Flux language.",
description = "Execute a Flux query against InfluxDB."
)
@Plugin(
examples = {
Expand All @@ -56,7 +56,7 @@
"""
),
@Example(
title = "Query data from InfluxDB and return all rows in execution output",
title = "Query data from InfluxDB and return all rows in execution output.",
full = true,
code = """
id: influxdb_flux_query_inline
Expand All @@ -79,7 +79,7 @@
"""
),
@Example(
title = "Query data from InfluxDB and return only the first row",
title = "Query data from InfluxDB and return only the first row.",
full = true,
code = """
id: influxdb_flux_query_one
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/influxdb/FluxTrigger.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Wait for Flux query on InfluxDB to return results."
title = "Trigger a flow on a Flux query of InfluxDB that returns results."
)
@Plugin(
examples = {
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/io/kestra/plugin/influxdb/InfluxQLQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Query InfluxDB using InfluxQL",
description = "Execute an InfluxQL query against InfluxDB"
title = "Query InfluxDB using InfluxQL.",
description = "Execute an InfluxQL query against InfluxDB."
)
@Plugin(
examples = {
@Example(
title = "Execute an InfluxQL query",
title = "Execute an InfluxQL query.",
full = true,
code = """
id: influxdb_query
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/io/kestra/plugin/influxdb/Load.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Load data points to InfluxDB from a file",
description = "Load data points to InfluxDB from an ION file where each record becomes a data point"
title = "Load data points to InfluxDB from a file.",
description = "Load data points to InfluxDB from an ION file where each record becomes a data point."
)
@Plugin(
examples = {
@Example(
title = "Load data points to InfluxDB from an ION file",
title = "Load data points to InfluxDB from an ION file.",
full = true,
code = """
id: influxdb_load
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/io/kestra/plugin/influxdb/Write.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Write data to InfluxDB using line protocol",
description = "Write data to InfluxDB using InfluxDB line protocol format"
title = "Write data to InfluxDB using line protocol.",
description = "Write data to InfluxDB using InfluxDB line protocol format."
)
@Plugin(
examples = {
@Example(
title = "Write data to InfluxDB using line protocol",
title = "Write data to InfluxDB using line protocol.",
full = true,
code = """
id: influxdb_write
Expand Down
Loading