Kieker 1.7

Uses of Interface
kieker.analysis.analysisComponent.IAnalysisComponent

Packages that use IAnalysisComponent
kieker.analysis.analysisComponent   
kieker.analysis.plugin   
kieker.analysis.plugin.filter   
kieker.analysis.plugin.filter.flow   
kieker.analysis.plugin.filter.forward   
kieker.analysis.plugin.filter.select   
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.list   
kieker.analysis.plugin.reader.namedRecordPipe   
kieker.analysis.repository   
kieker.tools.currentTimeEventGenerator   
kieker.tools.logReplayer.filter   
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   
kieker.tools.traceAnalysis.filter.visualization.callTree   
kieker.tools.traceAnalysis.filter.visualization.dependencyGraph   
kieker.tools.traceAnalysis.filter.visualization.descriptions   
kieker.tools.traceAnalysis.filter.visualization.sequenceDiagram   
kieker.tools.traceAnalysis.filter.visualization.traceColoring   
kieker.tools.traceAnalysis.repository   
kieker.tools.traceAnalysis.systemModel.repository   
 

Uses of IAnalysisComponent in kieker.analysis.analysisComponent
 

Classes in kieker.analysis.analysisComponent that implement IAnalysisComponent
 class AbstractAnalysisComponent
          Do not inherit directly from this class! Instead inherit from the class AbstractFilterPlugin, AbstractReaderPlugin or AbstractRepository.
 

Uses of IAnalysisComponent in kieker.analysis.plugin
 

Subinterfaces of IAnalysisComponent in kieker.analysis.plugin
 interface IPlugin
          This is the interface for plugins within Kieker.
 

Classes in kieker.analysis.plugin that implement IAnalysisComponent
 class AbstractPlugin
          Do not inherit directly from this class! Instead inherit from the class AbstractFilterPlugin or AbstractReaderPlugin.
 

Uses of IAnalysisComponent in kieker.analysis.plugin.filter
 

Subinterfaces of IAnalysisComponent in kieker.analysis.plugin.filter
 interface IFilterPlugin
          This is the interface for filter plugins within Kieker.
 

Classes in kieker.analysis.plugin.filter that implement IAnalysisComponent
 class AbstractFilterPlugin
          This class should be used as a base for every analysis plugin used within Kieker.
 

Uses of IAnalysisComponent in kieker.analysis.plugin.filter.flow
 

Classes in kieker.analysis.plugin.filter.flow that implement IAnalysisComponent
 class EventRecordTraceReconstructionFilter
           
 

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

Classes in kieker.analysis.plugin.filter.forward that implement IAnalysisComponent
 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 CountingThroughputFilter
          An instance of this class computes the throughput in terms of the number of events received per time unit.
 class ListCollectionFilter<T>
          This filter collects the incoming objects in a simple synchronized list.
 class RealtimeRecordDelayFilter
          Forwards incoming IMonitoringRecords with delays computed from the IMonitoringRecord.getLoggingTimestamp() value (assumed to be in the configured resolution).
 class StringBufferFilter
          This filter has exactly one input port and one output port.
 class TeeFilter
          This filter has exactly one input port and one output port.
 

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

Classes in kieker.analysis.plugin.filter.select that implement IAnalysisComponent
 class TimestampFilter
          Allows to filter IMonitoringRecord objects based on their given timestamps.
 class TraceIdFilter
          Allows to filter Traces about their traceIds.
 class TypeFilter
          This filter has exactly one input port and one output port.
 

Uses of IAnalysisComponent in kieker.analysis.plugin.reader
 

Subinterfaces of IAnalysisComponent in kieker.analysis.plugin.reader
 interface IReaderPlugin
          This is the interface for reader plugins.
 

Classes in kieker.analysis.plugin.reader that implement IAnalysisComponent
 class AbstractReaderPlugin
          This class should be used as a base for every reader used within Kieker.
 

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

Classes in kieker.analysis.plugin.reader.database that implement IAnalysisComponent
 class DbReader
          A very simple database reader that probably only works for small data sets.
 

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

Classes in kieker.analysis.plugin.reader.filesystem that implement IAnalysisComponent
 class FSReader
          Filesystem reader which reads from multiple directories simultaneously ordered by the logging timestamp.
 

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

Classes in kieker.analysis.plugin.reader.jms that implement IAnalysisComponent
 class JMSReader
          Reads monitoring records from a (remote or local) JMS queue.
 

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

Classes in kieker.analysis.plugin.reader.jmx that implement IAnalysisComponent
 class JMXReader
          This is a reader which reads the records from a JMX queue.
 

Uses of IAnalysisComponent in kieker.analysis.plugin.reader.list
 

Classes in kieker.analysis.plugin.reader.list that implement IAnalysisComponent
 class ListReader<T>
          Helper class that reads records added using the methods ListReader.addAllObjects(List) or ListReader.addObject(Object).
 

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

Classes in kieker.analysis.plugin.reader.namedRecordPipe that implement IAnalysisComponent
 class PipeReader
          This reader can be used to read records via an in-memory pipe.
 

Uses of IAnalysisComponent in kieker.analysis.repository
 

Subinterfaces of IAnalysisComponent in kieker.analysis.repository
 interface IRepository
          This is the interface for repositories within Kieker.
 

Classes in kieker.analysis.repository that implement IAnalysisComponent
 class AbstractRepository
          This class should be used as a base for every repository used within Kieker.
 

Uses of IAnalysisComponent in kieker.tools.currentTimeEventGenerator
 

Classes in kieker.tools.currentTimeEventGenerator that implement IAnalysisComponent
 class CurrentTimeEventGenerationFilter
          Generates time events with a given resolution based on the timestamps of incoming IMonitoringRecords.
 

Uses of IAnalysisComponent in kieker.tools.logReplayer.filter
 

Classes in kieker.tools.logReplayer.filter that implement IAnalysisComponent
 class MonitoringRecordLoggerFilter
          Passes IMonitoringRecords received via its input port MonitoringRecordLoggerFilter.INPUT_PORT_NAME_RECORD to its own IMonitoringController instance, which is created based on the Configuration file passed via the filter's property MonitoringRecordLoggerFilter.CONFIG_PROPERTY_NAME_MONITORING_PROPS_FN.
 

Uses of IAnalysisComponent in kieker.tools.traceAnalysis.filter
 

Classes in kieker.tools.traceAnalysis.filter that implement IAnalysisComponent
 class AbstractExecutionTraceProcessingFilter
          This is the abstract base for a filter processing execution traces.
 class AbstractGraphProducingFilter<G extends AbstractGraph<?,?,?>>
          Abstract superclass for graph-producing filters.
 class AbstractInvalidExecutionTraceProcessingFilter
          This is an abstract base for filters processing invalid execution traces.
 class AbstractMessageTraceProcessingFilter
          This is an abstract base for components which process message traces.
 class AbstractTimestampFilter
          Deprecated. To be removed in Kieker 1.8
 class AbstractTraceAnalysisFilter
           
 class AbstractTraceIdFilter
          Deprecated. To be removed in Kieker 1.8
 class AbstractTraceProcessingFilter
          This is an abstract base for filters processing traces.
 

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

Classes in kieker.tools.traceAnalysis.filter.executionRecordTransformation that implement IAnalysisComponent
 class ExecutionRecordTransformationFilter
          Transforms OperationExecutionRecords into Execution objects.
This class has exactly one input port and one output port.
 

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

Classes in kieker.tools.traceAnalysis.filter.flow that implement IAnalysisComponent
 class EventRecordTraceCounter
          Counts and reports the number of incoming valid/invalid TraceEventRecords.
 class TraceEventRecords2ExecutionAndMessageTraceFilter
           
 

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

Classes in kieker.tools.traceAnalysis.filter.systemModel that implement IAnalysisComponent
 class SystemModel2FileFilter
          Writes the contents of a connected SystemModelRepository to files.
 

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

Classes in kieker.tools.traceAnalysis.filter.traceFilter that implement IAnalysisComponent
 class TraceEquivalenceClassFilter
           
 

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

Classes in kieker.tools.traceAnalysis.filter.traceReconstruction that implement IAnalysisComponent
 class TraceReconstructionFilter
           
 

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

Classes in kieker.tools.traceAnalysis.filter.traceWriter that implement IAnalysisComponent
 class ExecutionTraceWriterFilter
          This class has exactly one input port named "in".
 class InvalidExecutionTraceWriterFilter
           
 class MessageTraceWriterFilter
           
 

Uses of IAnalysisComponent in kieker.tools.traceAnalysis.filter.visualization
 

Classes in kieker.tools.traceAnalysis.filter.visualization that implement IAnalysisComponent
 class AbstractGraphFilter<G extends AbstractGraph<V,E,O>,V extends AbstractVertex<V,E,O>,E extends AbstractEdge<V,E,O>,O>
          Abstract superclass for all graph filters.
 class GraphWriterPlugin
          Generic graph writer plugin to generate graph specifications and save them to disk.
 

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

Classes in kieker.tools.traceAnalysis.filter.visualization.callTree that implement IAnalysisComponent
 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 multiple 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 IAnalysisComponent in kieker.tools.traceAnalysis.filter.visualization.dependencyGraph
 

Classes in kieker.tools.traceAnalysis.filter.visualization.dependencyGraph that implement IAnalysisComponent
 class AbstractDependencyGraphFilter<T extends ISystemModelElement>
          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 IAnalysisComponent in kieker.tools.traceAnalysis.filter.visualization.descriptions
 

Classes in kieker.tools.traceAnalysis.filter.visualization.descriptions that implement IAnalysisComponent
 class DescriptionDecoratorFilter<V extends AbstractPayloadedVertex<V,E,O,ISystemModelElement>,E extends AbstractEdge<V,E,O>,O>
          A filter which attaches decorations from a repository to graph entities.
 

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

Classes in kieker.tools.traceAnalysis.filter.visualization.sequenceDiagram that implement IAnalysisComponent
 class SequenceDiagramFilter
          Refactored copy from LogAnalysis-legacy tool
This class has exactly one input port named "in".
 

Uses of IAnalysisComponent in kieker.tools.traceAnalysis.filter.visualization.traceColoring
 

Classes in kieker.tools.traceAnalysis.filter.visualization.traceColoring that implement IAnalysisComponent
 class TraceColoringFilter<V extends AbstractVertex<V,E,TraceInformation>,E extends AbstractEdge<V,E,TraceInformation>>
          This filter sets the color of nodes and edges which belong to a single trace according to a trace coloring schema defined in a color repository (see TraceColorRepository).
 

Uses of IAnalysisComponent in kieker.tools.traceAnalysis.repository
 

Classes in kieker.tools.traceAnalysis.repository that implement IAnalysisComponent
 class DescriptionRepository
          Implementation of a description repository which stores descriptions for names.
 class TraceColorRepository
          Implementation of a trace color repository, which associates colors to traces.
 

Uses of IAnalysisComponent in kieker.tools.traceAnalysis.systemModel.repository
 

Classes in kieker.tools.traceAnalysis.systemModel.repository that implement IAnalysisComponent
 class SystemModelRepository
          This repository is a model manager for the Kieker's component model.
 


Kieker 1.7

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