Uses of Class
com.pervasive.datarush.graphs.LogicalStatistic
-
Packages that use LogicalStatistic Package Description com.pervasive.datarush.graphs Provides classes and interfaces for the construction of executable dataflow graphs. -
-
Uses of LogicalStatistic in com.pervasive.datarush.graphs
Methods in com.pervasive.datarush.graphs that return LogicalStatistic Modifier and Type Method Description LogicalStatistic
LogicalStatistic.Builder. build()
Creates a new LogicalStatistic.LogicalStatistic
LogicalStatistic. finalSnapshot()
Returns a snapshot view of these statistics with all statistics appropriate for a graph that is in a terminated state.LogicalStatistic
LogicalStatistic. snapshot()
Returns a snapshot view of these statistics.Methods in com.pervasive.datarush.graphs that return types with arguments of type LogicalStatistic Modifier and Type Method Description static List<LogicalStatistic>
LogicalStatistics. filter(List<LogicalStatistic> stats, StatisticDefinition<?> definition)
Utility method to select all statistics that match the given definition.static List<LogicalStatistic>
LogicalGraphInstances. getConnectionStatistics(LogicalGraphInstance instance, LogicalPort inputPort)
Returns the connection statistics associated with the given input port.static List<LogicalStatistic>
LogicalGraphInstances. getOperatorStatistics(LogicalGraphInstance instance, LogicalOperator operator)
Returns the operator statistics associated with the given operator.List<LogicalStatistic>
InputPortInstance. getStatistics()
Returns statistics for this port.List<LogicalStatistic>
OperatorInstance. getStatistics()
Returns the operator statistics associated with the operator.Methods in com.pervasive.datarush.graphs with parameters of type LogicalStatistic Modifier and Type Method Description int
LogicalStatistic. compareTo(LogicalStatistic other)
Method parameters in com.pervasive.datarush.graphs with type arguments of type LogicalStatistic Modifier and Type Method Description static StatisticsMap
LogicalStatistics. aggregate(List<LogicalStatistic> details)
Performs aggregation across logical statistic by the standard aggregation defined for eachStatisticDefinition
.static StatisticsMap
LogicalStatistics. aggregateMinOfSumsOfCounts(List<LogicalStatistic> details)
Performs aggregation across the given list of statistics for the special case monitoring counter progress for a composite port.static List<LogicalStatistic>
LogicalStatistics. filter(List<LogicalStatistic> stats, StatisticDefinition<?> definition)
Utility method to select all statistics that match the given definition.static <T extends StatisticSupplier>
List<T>LogicalStatistics. filterSuppliers(List<LogicalStatistic> stats, StatisticDefinition<T> definition)
Utility method to select all statistics suppliers that match the given definition.static List<RuntimeStatistic<?>>
LogicalStatistics. statistics(List<LogicalStatistic> logicalStatistics)
Utility method to select each of thestatistic()
's from the specified list.
-