Class EventRecordTraceReconstructionFilter
java.lang.Object
kieker.analysis.analysisComponent.AbstractAnalysisComponent
kieker.analysis.plugin.AbstractPlugin
kieker.analysis.plugin.filter.AbstractFilterPlugin
kieker.analysis.plugin.filter.flow.EventRecordTraceReconstructionFilter
- All Implemented Interfaces:
IAnalysisComponent,IFilterPlugin,IPlugin
@Deprecated public final class EventRecordTraceReconstructionFilter extends AbstractFilterPlugin
Deprecated.
1.15 ported to teetime kieker.analysis.filter.flow
- Since:
- 1.6
-
Nested Class Summary
Nested classes/interfaces inherited from interface kieker.analysis.plugin.IPlugin
IPlugin.PluginInputPortReference, IPlugin.STATE -
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONFIG_PROPERTY_NAME_MAX_TRACE_DURATIONDeprecated.The name of the property determining the maximal trace duration.static java.lang.StringCONFIG_PROPERTY_NAME_MAX_TRACE_TIMEOUTDeprecated.The name of the property determining the maximal trace timeout.static java.lang.StringCONFIG_PROPERTY_NAME_REPAIR_EVENT_BASED_TRACESDeprecated.This is the name of the property determining whether to repair BeforeEvents with missing AfterEvents (e.g.static java.lang.StringCONFIG_PROPERTY_NAME_TIMEUNITDeprecated.The name of the property determining the time unit.static java.lang.StringCONFIG_PROPERTY_VALUE_MAX_TIMEDeprecated.The default value of the properties for the maximal trace duration and timeout.static java.lang.StringCONFIG_PROPERTY_VALUE_TIMEUNITDeprecated.The default value of the time unit property (nanoseconds).static java.lang.StringINPUT_PORT_NAME_TIME_EVENTDeprecated.The name of the input port receiving the trace records.static java.lang.StringINPUT_PORT_NAME_TRACE_RECORDSDeprecated.The name of the input port receiving the trace records.static java.lang.StringINPUT_PORT_NAME_TRACEEVENT_RECORDSDeprecated.The name of the input port receiving the trace records.static java.lang.StringOUTPUT_PORT_NAME_TRACE_INVALIDDeprecated.The name of the output port delivering the invalid traces.static java.lang.StringOUTPUT_PORT_NAME_TRACE_VALIDDeprecated.The name of the output port delivering the valid traces.Fields inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent
CONFIG_NAME, configuration, logger, projectContext, recordsTimeUnitFromProjectContext -
Constructor Summary
Constructors Constructor Description EventRecordTraceReconstructionFilter(kieker.common.configuration.Configuration configuration, IProjectContext projectContext)Deprecated.Creates a new instance of this class using the given parameters. -
Method Summary
Modifier and Type Method Description kieker.common.configuration.ConfigurationgetCurrentConfiguration()Deprecated.This method should deliver aConfigurationobject containing the current configuration of this instance.voidnewEvent(java.lang.Long timestamp)Deprecated.This method is the input port for the timeout.voidnewEvent(kieker.common.record.flow.IFlowRecord record)Deprecated.This method is the input port for the new events for this filter.voidnewTraceEventRecord(TraceEventRecords traceEventRecords)Deprecated.This method is the input port for the new events for this filter.voidterminate(boolean error)Deprecated.Initiates a termination of the plugin.Methods inherited from class kieker.analysis.plugin.AbstractPlugin
areAllRepositoryPortsConnected, connect, connect, deliver, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentRepositories, getDefaultConfiguration, getIncomingPlugins, getPluginDescription, getPluginName, getRepository, getState, isConnectionAllowed, notifyNewIncomingConnection, notifyNewOutgoingConnection, shutdown, startMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface kieker.analysis.plugin.IPlugin
connect, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentRepositories, getName, getPluginDescription, getPluginName, getState
-
Field Details
-
OUTPUT_PORT_NAME_TRACE_VALID
public static final java.lang.String OUTPUT_PORT_NAME_TRACE_VALIDDeprecated.The name of the output port delivering the valid traces.- See Also:
- Constant Field Values
-
OUTPUT_PORT_NAME_TRACE_INVALID
public static final java.lang.String OUTPUT_PORT_NAME_TRACE_INVALIDDeprecated.The name of the output port delivering the invalid traces.- See Also:
- Constant Field Values
-
INPUT_PORT_NAME_TRACE_RECORDS
public static final java.lang.String INPUT_PORT_NAME_TRACE_RECORDSDeprecated.The name of the input port receiving the trace records.- See Also:
- Constant Field Values
-
INPUT_PORT_NAME_TRACEEVENT_RECORDS
public static final java.lang.String INPUT_PORT_NAME_TRACEEVENT_RECORDSDeprecated.The name of the input port receiving the trace records.- See Also:
- Constant Field Values
-
INPUT_PORT_NAME_TIME_EVENT
public static final java.lang.String INPUT_PORT_NAME_TIME_EVENTDeprecated.The name of the input port receiving the trace records.- See Also:
- Constant Field Values
-
CONFIG_PROPERTY_NAME_TIMEUNIT
public static final java.lang.String CONFIG_PROPERTY_NAME_TIMEUNITDeprecated.The name of the property determining the time unit.- See Also:
- Constant Field Values
-
CONFIG_PROPERTY_NAME_MAX_TRACE_DURATION
public static final java.lang.String CONFIG_PROPERTY_NAME_MAX_TRACE_DURATIONDeprecated.The name of the property determining the maximal trace duration.- See Also:
- Constant Field Values
-
CONFIG_PROPERTY_NAME_MAX_TRACE_TIMEOUT
public static final java.lang.String CONFIG_PROPERTY_NAME_MAX_TRACE_TIMEOUTDeprecated.The name of the property determining the maximal trace timeout.- See Also:
- Constant Field Values
-
CONFIG_PROPERTY_VALUE_MAX_TIME
public static final java.lang.String CONFIG_PROPERTY_VALUE_MAX_TIMEDeprecated.The default value of the properties for the maximal trace duration and timeout.- See Also:
- Constant Field Values
-
CONFIG_PROPERTY_VALUE_TIMEUNIT
public static final java.lang.String CONFIG_PROPERTY_VALUE_TIMEUNITDeprecated.The default value of the time unit property (nanoseconds).- See Also:
- Constant Field Values
-
CONFIG_PROPERTY_NAME_REPAIR_EVENT_BASED_TRACES
public static final java.lang.String CONFIG_PROPERTY_NAME_REPAIR_EVENT_BASED_TRACESDeprecated.This is the name of the property determining whether to repair BeforeEvents with missing AfterEvents (e.g. because of software crash) or not.- See Also:
- Constant Field Values
-
-
Constructor Details
-
EventRecordTraceReconstructionFilter
public EventRecordTraceReconstructionFilter(kieker.common.configuration.Configuration configuration, IProjectContext projectContext)Deprecated.Creates a new instance of this class using the given parameters.- Parameters:
configuration- The configuration for this component.projectContext- The project context for this component.
-
-
Method Details
-
newEvent
public void newEvent(java.lang.Long timestamp)Deprecated.This method is the input port for the timeout.- Parameters:
timestamp- The timestamp
-
newTraceEventRecord
Deprecated.This method is the input port for the new events for this filter.- Parameters:
traceEventRecords- The new record to handle.
-
newEvent
public void newEvent(kieker.common.record.flow.IFlowRecord record)Deprecated.This method is the input port for the new events for this filter.- Parameters:
record- The new record to handle.
-
terminate
public void terminate(boolean error)Deprecated.Initiates a termination of the plugin. This method is only used by the framework and should not be called manually. Use the methodAnalysisController.terminate(boolean)instead. After receiving this notification, the plugin should terminate any running methods, e.g., read for readers.- Specified by:
terminatein interfaceIPlugin- Overrides:
terminatein classAbstractFilterPlugin- Parameters:
error- Determines whether the plugin is terminated due to an error or not.
-
getCurrentConfiguration
public kieker.common.configuration.Configuration getCurrentConfiguration()Deprecated.This method should deliver aConfigurationobject containing the current configuration of this instance. In other words: The constructor should be able to use the given object to initialize a new instance of this class with the same intern properties.- Specified by:
getCurrentConfigurationin interfaceIAnalysisComponent- Specified by:
getCurrentConfigurationin interfaceIPlugin- Specified by:
getCurrentConfigurationin classAbstractAnalysisComponent- Returns:
- A completely filled configuration object.
-