Uses of Class
com.pervasive.datarush.monitoring.RuntimeStatistic
-
Packages that use RuntimeStatistic Package Description com.pervasive.datarush.cal Provides interfaces the define the "cluster abstraction layer".com.pervasive.datarush.cal.monitoring com.pervasive.datarush.graphs Provides classes and interfaces for the construction of executable dataflow graphs.com.pervasive.datarush.monitoring Provides classes and interfaces for reporting on commonly monitored resources such as memory, threads, and I/O. -
-
Uses of RuntimeStatistic in com.pervasive.datarush.cal
Methods in com.pervasive.datarush.cal that return types with arguments of type RuntimeStatistic Modifier and Type Method Description List<RuntimeStatistic<?>>
MonitoredCallable. getStatistics()
Returns the statistics for this callable -
Uses of RuntimeStatistic in com.pervasive.datarush.cal.monitoring
Method parameters in com.pervasive.datarush.cal.monitoring with type arguments of type RuntimeStatistic Modifier and Type Method Description static NodeStatisticsSnapshot
NodeStatisticsSnapshot. captureThisJVM(String nodeID, String host, JobServerInformation jobWorkerInfo, List<RuntimeStatistic<?>> additionalStats)
-
Uses of RuntimeStatistic in com.pervasive.datarush.graphs
Methods in com.pervasive.datarush.graphs that return RuntimeStatistic Modifier and Type Method Description RuntimeStatistic<?>
LogicalStatistic. statistic()
Returns the pair ofLogicalStatistic.definition()
andLogicalStatistic.supplier()
.Methods in com.pervasive.datarush.graphs that return types with arguments of type RuntimeStatistic Modifier and Type Method Description static List<RuntimeStatistic<?>>
LogicalStatistics. statistics(List<LogicalStatistic> logicalStatistics)
Utility method to select each of theLogicalStatistic.statistic()
's from the specified list.Methods in com.pervasive.datarush.graphs with parameters of type RuntimeStatistic Modifier and Type Method Description LogicalStatistic.Builder
LogicalStatistic.Builder. define(RuntimeStatistic<?> statistic)
Sets the values forLogicalStatistic.definition()
andLogicalStatistic.supplier()
based on those specified.void
StatisticsRegistry. register(RuntimeStatistic<?> statistic)
Registers the given statistics object. -
Uses of RuntimeStatistic in com.pervasive.datarush.monitoring
Methods in com.pervasive.datarush.monitoring that return RuntimeStatistic Modifier and Type Method Description RuntimeStatistic<T>
RuntimeStatistic. finalSnapshot()
Creates a final snapshot of this statisticRuntimeStatistic<T>
RuntimeStatistic. snapshot()
Creates a snapshot of this statisticMethods in com.pervasive.datarush.monitoring that return types with arguments of type RuntimeStatistic Modifier and Type Method Description List<RuntimeStatistic<?>>
StatisticsMap. entries()
Returns the list of statistic pairsMethods in com.pervasive.datarush.monitoring with parameters of type RuntimeStatistic Modifier and Type Method Description static String
StatisticFormats. format(RuntimeStatistic<?> statistic)
Formats the given runtime statistics as a string for presentation in the UI.<T extends StatisticSupplier>
voidStatisticsMap. put(RuntimeStatistic<T> statistic)
Type-safe put that adds a pair of statistic and definitionMethod parameters in com.pervasive.datarush.monitoring with type arguments of type RuntimeStatistic Modifier and Type Method Description static StatisticsMap
StatisticSuppliers. aggregate(List<RuntimeStatistic<?>> details)
Performs aggregation across statistic details by the standard aggregation defined for eachStatisticDefinition
.Constructor parameters in com.pervasive.datarush.monitoring with type arguments of type RuntimeStatistic Constructor Description StatisticsMap(List<RuntimeStatistic<?>> entries)
Creates a map consisting of the specified entries
-