Kieker 1.5

Uses of Class
kieker.analysis.plugin.AbstractPlugin

Packages that use AbstractPlugin
kieker.analysis   
kieker.analysis.plugin   
kieker.analysis.plugin.filter   
kieker.analysis.plugin.filter.forward   
kieker.analysis.plugin.filter.select   
kieker.analysis.plugin.filter.trace   
kieker.analysis.plugin.reader   
kieker.analysis.plugin.reader.database   
kieker.analysis.plugin.reader.filesystem   
kieker.analysis.plugin.reader.jms   
kieker.analysis.plugin.reader.jmx   
kieker.analysis.plugin.reader.namedRecordPipe   
kieker.tools.currentTimeEventGenerator   
kieker.tools.logReplayer   
kieker.tools.traceAnalysis.filter   
kieker.tools.traceAnalysis.filter.executionRecordTransformation   
kieker.tools.traceAnalysis.filter.flow   
kieker.tools.traceAnalysis.filter.systemModel   
kieker.tools.traceAnalysis.filter.traceFilter   
kieker.tools.traceAnalysis.filter.traceReconstruction   
kieker.tools.traceAnalysis.filter.traceWriter   
kieker.tools.traceAnalysis.filter.visualization.callTree   
kieker.tools.traceAnalysis.filter.visualization.dependencyGraph   
kieker.tools.traceAnalysis.filter.visualization.sequenceDiagram   
 

Uses of AbstractPlugin in kieker.analysis
 

Methods in kieker.analysis with parameters of type AbstractPlugin
 void AnalysisController.connect(AbstractPlugin src, String outputPortName, AbstractPlugin dst, String inputPortName)
          This method should be used to connect two plugins.
 void AnalysisController.connect(AbstractPlugin plugin, String repositoryPort, AbstractRepository repository)
          Connects the given repository to this plugin via the given name.
 

Uses of AbstractPlugin in kieker.analysis.plugin
 

Methods in kieker.analysis.plugin with parameters of type AbstractPlugin
static void AbstractPlugin.connect(AbstractPlugin src, String outputPortName, AbstractPlugin dst, String inputPortName)
          This method connects two plugins.
static boolean AbstractPlugin.isConnectionAllowed(AbstractPlugin src, String output, AbstractPlugin dst, String input)
          This method checks whether two plugins can be connected.
 

Uses of AbstractPlugin in kieker.analysis.plugin.filter
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.filter
 class AbstractFilterPlugin
          This class should be used as a base for every analysis plugin used within Kieker.
 

Uses of AbstractPlugin in kieker.analysis.plugin.filter.forward
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.filter.forward
 class CountingFilter
          An instance of this class receives any objects, increments an intern tread-safe counter without printing any message and delivers the unchanged objects to the output.
 class TeeFilter
          This filter has exactly one input port and one output port.
 

Uses of AbstractPlugin in kieker.analysis.plugin.filter.select
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.filter.select
 class TimestampFilter
          Allows to filter IMonitoringRecord objects based on their given timestamps.
 class TypeFilter
          This filter has exactly one input port and one output port.
 

Uses of AbstractPlugin in kieker.analysis.plugin.filter.trace
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.filter.trace
 class TraceIdFilter
          Allows to filter Traces about their traceIds.
 

Uses of AbstractPlugin in kieker.analysis.plugin.reader
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.reader
 class AbstractReaderPlugin
          This class should be used as a base for every reader used within Kieker.
 

Uses of AbstractPlugin in kieker.analysis.plugin.reader.database
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.reader.database
 class DbReader
          A very simple database reader that probably only works for small data sets.
 

Uses of AbstractPlugin in kieker.analysis.plugin.reader.filesystem
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.reader.filesystem
 class FSReader
          Filesystem reader which reads from multiple directories simultaneously ordered by the logging timestamp.
 

Uses of AbstractPlugin in kieker.analysis.plugin.reader.jms
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.reader.jms
 class JMSReader
          Reads monitoring records from a (remote or local) JMS queue.
 

Uses of AbstractPlugin in kieker.analysis.plugin.reader.jmx
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.reader.jmx
 class JMXReader
           
 

Uses of AbstractPlugin in kieker.analysis.plugin.reader.namedRecordPipe
 

Subclasses of AbstractPlugin in kieker.analysis.plugin.reader.namedRecordPipe
 class PipeReader
           
 

Uses of AbstractPlugin in kieker.tools.currentTimeEventGenerator
 

Subclasses of AbstractPlugin in kieker.tools.currentTimeEventGenerator
 class CurrentTimeEventGenerationFilter
          Generates time events with a given resolution based on the timestamps of incoming IMonitoringRecords.
 

Uses of AbstractPlugin in kieker.tools.logReplayer
 

Subclasses of AbstractPlugin in kieker.tools.logReplayer
 class FSReaderRealtime
           
 class RealtimeReplayDistributor
          IMonitoringRecordConsumerPlugin that distributes the log records to the worker thread for "real time" replays.
This class has exactly one input port named "in" and one output ports named "out".
TODO: Currently this class can not be used for the later analysis tool, as the objects for the constructor cannot be configured with a configuration object.
 class RealtimeReplayWorker
          A Runnable to be scheduled via the RealtimeReplayDistributor TODO This plugin has to be rewritten in 1.6 to be initializable without further methods (initialize(...))
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter
 class AbstractExecutionTraceProcessingFilter
           
 class AbstractInvalidExecutionTraceProcessingFilter
           
 class AbstractMessageTraceProcessingFilter
           
 class AbstractTimestampFilter
           
 class AbstractTraceAnalysisFilter
           
 class AbstractTraceIdFilter
          Convenience class for plugins filtering by trace IDs.
 class AbstractTraceProcessingFilter
           
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.executionRecordTransformation
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.executionRecordTransformation
 class ExecutionRecordTransformationFilter
          Transforms OperationExecutionRecords into Execution objects.
This class has exactly one input port and one output port.
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.flow
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.flow
 class EventRecordTraceGenerationFilter
          TODO: The implementation of this plugin was based on the TraceReconstructionFilter.
 class EventTrace2ExecutionAndMessageTraceFilter
          This filter converts an event-based trace to an execution-based trace.
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.systemModel
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.systemModel
 class SystemModel2FileFilter
          Writes the contents of a connected SystemModelRepository to files.
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.traceFilter
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.traceFilter
 class TraceEquivalenceClassFilter
          This class has exactly one input port named "in" and two output ports named "messageTraceOutput", "executionTraceOutput".
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.traceReconstruction
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.traceReconstruction
 class TraceReconstructionFilter
           
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.traceWriter
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.traceWriter
 class ExecutionTraceWriterFilter
          This class has exactly one input port named "in".
 class InvalidExecutionTraceWriterFilter
           
 class MessageTraceWriterFilter
           
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.visualization.callTree
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.visualization.callTree
 class AbstractAggregatedCallTreeFilter<T>
          This class has exactly one input port named "in".
 class AbstractCallTreeFilter<T>
          Plugin providing the creation of calling trees both for individual traces and an aggregated form mulitple traces.
 class AggregatedAllocationComponentOperationCallTreeFilter
           
 class AggregatedAssemblyComponentOperationCallTreeFilter
           
 class TraceCallTreeFilter
          Plugin providing the creation of calling trees both for individual traces and an aggregated form for multiple traces.
This class has exactly one input port named "in".
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.visualization.dependencyGraph
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.visualization.dependencyGraph
 class AbstractDependencyGraphFilter<T>
          Refactored copy from LogAnalysis-legacy tool
 class ComponentDependencyGraphAllocationFilter
          Refactored copy from LogAnalysis-legacy tool
This class has exactly one input port named "in".
 class ComponentDependencyGraphAssemblyFilter
          Refactored copy from LogAnalysis-legacy tool
This class has exactly one input port named "in".
 class ContainerDependencyGraphFilter
          Refactored copy from LogAnalysis-legacy tool
This class has exactly one input port named "in".
 class OperationDependencyGraphAllocationFilter
          Refactored copy from LogAnalysis-legacy tool
This class has exactly one input port named "in".
 class OperationDependencyGraphAssemblyFilter
          Refactored copy from LogAnalysis-legacy tool
This class has exactly one input port named "in".
 

Uses of AbstractPlugin in kieker.tools.traceAnalysis.filter.visualization.sequenceDiagram
 

Subclasses of AbstractPlugin in kieker.tools.traceAnalysis.filter.visualization.sequenceDiagram
 class SequenceDiagramFilter
          Refactored copy from LogAnalysis-legacy tool
This class has exactly one input port named "in".
 


Kieker 1.5

Copyright 2012 the Kieker Project, http://kieker-monitoring.net