Github user MikeThomsen commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2562#discussion_r177120294
--- Diff:
nifi-nar-bundles/nifi-influxdb-bundle/nifi-influxdb-processors/src/main/java/org/apache/nifi/processors/influxdb/ExecuteInfluxDBQuery.java
---
@@ -72,6 +74,16 @@
.sensitive(false)
.build();
+ public static final PropertyDescriptor INFLUX_DB_SCHEDULED_QUERY = new
PropertyDescriptor.Builder()
+ .name("influxdb-scheduled-query")
+ .displayName("InfluxDB Schedued Query")
--- End diff --
I think calling it a "scheduled query" might be a bit confusing. In other
places like `GetMongo` it's just `Query` and documents that this field will be
used if it's filled in, otherwise it'll try to extract the query from the body.
Might want to also note that you can use this w/ an incoming connection and use
the flowfile to power the EL.
---