Class 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
Author:
Jan Waller
  • Field Details

    • OUTPUT_PORT_NAME_TRACE_VALID

      public static final String OUTPUT_PORT_NAME_TRACE_VALID
      Deprecated.
      The name of the output port delivering the valid traces.
      See Also:
    • OUTPUT_PORT_NAME_TRACE_INVALID

      public static final String OUTPUT_PORT_NAME_TRACE_INVALID
      Deprecated.
      The name of the output port delivering the invalid traces.
      See Also:
    • INPUT_PORT_NAME_TRACE_RECORDS

      public static final String INPUT_PORT_NAME_TRACE_RECORDS
      Deprecated.
      The name of the input port receiving the trace records.
      See Also:
    • INPUT_PORT_NAME_TRACEEVENT_RECORDS

      public static final String INPUT_PORT_NAME_TRACEEVENT_RECORDS
      Deprecated.
      The name of the input port receiving the trace records.
      See Also:
    • INPUT_PORT_NAME_TIME_EVENT

      public static final String INPUT_PORT_NAME_TIME_EVENT
      Deprecated.
      The name of the input port receiving the trace records.
      See Also:
    • CONFIG_PROPERTY_NAME_TIMEUNIT

      public static final String CONFIG_PROPERTY_NAME_TIMEUNIT
      Deprecated.
      The name of the property determining the time unit.
      See Also:
    • CONFIG_PROPERTY_NAME_MAX_TRACE_DURATION

      public static final String CONFIG_PROPERTY_NAME_MAX_TRACE_DURATION
      Deprecated.
      The name of the property determining the maximal trace duration.
      See Also:
    • CONFIG_PROPERTY_NAME_MAX_TRACE_TIMEOUT

      public static final String CONFIG_PROPERTY_NAME_MAX_TRACE_TIMEOUT
      Deprecated.
      The name of the property determining the maximal trace timeout.
      See Also:
    • CONFIG_PROPERTY_VALUE_MAX_TIME

      public static final String CONFIG_PROPERTY_VALUE_MAX_TIME
      Deprecated.
      The default value of the properties for the maximal trace duration and timeout.
      See Also:
    • CONFIG_PROPERTY_VALUE_TIMEUNIT

      public static final String CONFIG_PROPERTY_VALUE_TIMEUNIT
      Deprecated.
      The default value of the time unit property (nanoseconds).
      See Also:
    • CONFIG_PROPERTY_NAME_REPAIR_EVENT_BASED_TRACES

      public static final String CONFIG_PROPERTY_NAME_REPAIR_EVENT_BASED_TRACES
      Deprecated.
      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:
  • Constructor Details

    • EventRecordTraceReconstructionFilter

      public EventRecordTraceReconstructionFilter(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(Long timestamp)
      Deprecated.
      This method is the input port for the timeout.
      Parameters:
      timestamp - The timestamp
    • newTraceEventRecord

      public void newTraceEventRecord(TraceEventRecords traceEventRecords)
      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(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 method AnalysisController.terminate(boolean) instead. After receiving this notification, the plugin should terminate any running methods, e.g., read for readers.
      Specified by:
      terminate in interface IPlugin
      Overrides:
      terminate in class AbstractFilterPlugin
      Parameters:
      error - Determines whether the plugin is terminated due to an error or not.
    • getCurrentConfiguration

      public Configuration getCurrentConfiguration()
      Deprecated.
      This method should deliver a Configuration object 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:
      getCurrentConfiguration in interface IAnalysisComponent
      Specified by:
      getCurrentConfiguration in interface IPlugin
      Specified by:
      getCurrentConfiguration in class AbstractAnalysisComponent
      Returns:
      A completely filled configuration object.