Uses of Class
com.influxdb.query.dsl.Flux
Packages that use Flux
-
Uses of Flux in com.influxdb.query.dsl
Subclasses of Flux in com.influxdb.query.dslModifier and TypeClassDescriptionclassHold the variable name and expression of an assignment.Methods in com.influxdb.query.dsl that return FluxModifier and TypeMethodDescriptionprotected FluxAdds a new import to this flux.final FluxFlux.withFunction(String functionName, Object function) Add named function to current function.final FluxFlux.withFunctionNamed(String functionName, String namedProperty) Add named function to current function.final FluxFlux.withPropertyNamed(String property) Add named property to current function.final FluxFlux.withPropertyNamed(String fluxName, String namedProperty) Add named property to current function.final FluxFlux.withPropertyValue(String property, Long amount, ChronoUnit unit) Add string property value to current function that will be quoted (value => "value").final FluxFlux.withPropertyValue(String propertyName, Object value) Add property value to current function.final FluxFlux.withPropertyValueEscaped(String property, String value) Add string property value to current function that will be quoted (value => "value").Methods in com.influxdb.query.dsl with parameters of type Flux -
Uses of Flux in com.influxdb.query.dsl.functions
Subclasses of Flux in com.influxdb.query.dsl.functionsModifier and TypeClassDescriptionclassBase class defining a function invocation.classAbstractFunctionFlux<CALL extends AbstractFunctionCallFlux>The base class for function definitions.classfinal classApplies an aggregate or selector function (any function with a column parameter) to fixed windows of time.final classConstructs a table from an array of records.final classThe columns() function lists the column labels of input tables.final classCounts the number of results.final classCovariance is an aggregate operation.final classCumulative sum computes a running sum for non null records in the table.final classComputes the time based difference between subsequent non null records.final classDifference computes the difference between subsequent non null records.final classDistinct produces the unique values for a given column.final classDrop will exclude specified columns from a table.final classDuplicate will duplicate a specified column in a table.classAdd an extra "elapsed" column to the result showing the time elapsed since the previous record in the series.final classThe custom Flux expression.final classReplaces all null values in input tables with a non-null value.final classFilters the results using an expression.final classReturns the first result of the query.final classAn expression to encapsulate an arbitrary expression.final classFrom produces a stream of tables from the specified bucket.final classGroups results by a user-specified set of tags.final classFor each aggregate column, it outputs the area under the curve of non null records.classInserts rows at regular intervals using linear interpolation to determine values for inserted rows.final classJoin two time series together on time and the list of on keys.final classKeep is the inverse of drop.final classReturns the last result of the query.final classRestricts the number of rows returned in the results.final classApplies a function to each row of the table.final classReturns the max value within the results.final classReturns the mean of the within the results.final classReturns the min value within the results.final classPivot collects values stored vertically (column-wise) in a table and aligns them horizontally (row-wise) into logical sets.final classQuantile is both an aggregate operation and a selector operation depending on selected options.final classFilters the results by time boundaries.final classReduce aggregates records in each table according to the reducer.final classRename will rename specified columns in a table.final classSample values from a table.final classAssigns a static value to each record.final classSkew of the results.final classSorts the results by the specified columns Default sort is ascending.final classDifference between min and max values.final classStandard Deviation of the results.final classSum of the results.final classTail caps the number of records in output tables to a fixed size n.final classShift add a fixed duration to time columns.final classConvert a value to a bool.final classConvert a value to a duration.final classConvert a value to a float.final classThe To operation takes data from a stream and writes it to a bucket.final classConvert a value to a int.final classConvert a value to a string.final classConvert a value to a time.final classConvert a value to a duration.final classTruncates all input time values in the _time to a specified unit..final classMerges two or more input streams into a single output stream..final classGroups the results by a given time range.final classYield a query results to yielded results.Methods in com.influxdb.query.dsl.functions that return FluxModifier and TypeMethodDescriptionFromFlux.withLocationFixed(String offset) Use a location with a fixed offset.FromFlux.withLocationNamed(String name) Use a timezone based on a location name.Methods in com.influxdb.query.dsl.functions with parameters of type FluxModifier and TypeMethodDescriptionAbstractFunctionFlux.invokePiped(Flux flux) Map of table to join.UnionFlux.withTables(Flux... tables) Constructors in com.influxdb.query.dsl.functions with parameters of type FluxModifierConstructorDescriptionprotectedAbstractParametrizedFlux(Flux source) AggregateWindow(Flux source) ColumnsFlux(Flux source) CovarianceFlux(Flux source) CumulativeSumFlux(Flux source) DerivativeFlux(Flux source) DifferenceFlux(Flux source) DistinctFlux(Flux source) DuplicateFlux(Flux source) ElapsedFlux(Flux source) ExpressionFlux(Flux source, String expression) FilterFlux(Flux source) IntegralFlux(Flux source) InterpolateLinearFlux(Flux source) QuantileFlux(Flux source) ReduceFlux(Flux source) RenameFlux(Flux source) SampleFlux(Flux source) SpreadFlux(Flux source) StddevFlux(Flux source) TimeShiftFlux(Flux source) ToBoolFlux(Flux source) ToDurationFlux(Flux source) ToFloatFlux(Flux source) ToStringFlux(Flux source) ToTimeFlux(Flux source) ToUIntFlux(Flux source) TruncateTimeColumnFlux(Flux source) WindowFlux(Flux flux)