Codota Logo
TimestampFilter.<init>
Code IndexAdd Codota to your IDE (free)

How to use
kieker.analysis.plugin.filter.select.TimestampFilter
constructor

Best Java code snippets using kieker.analysis.plugin.filter.select.TimestampFilter.<init> (Showing top 6 results out of 315)

  • Common ways to obtain TimestampFilter
private void myMethod () {
TimestampFilter t =
  • Codota IconConfiguration configuration;IProjectContext projectContext;new TimestampFilter(configuration, projectContext)
  • Smart code suggestions by Codota
}
origin: kieker-monitoring/kieker

/**
 * Creates a {@link TimestampFilter} with the given properties
 * using the constructor {@link TimestampFilter#TimestampFilter(kieker.common.configuration.Configuration, java.util.Map)}.
 *
 * @param ignoreExecutionsBeforeTimestamp
 * @param ignoreExecutionsAfterTimestamp
 * @return
 * @throws AnalysisConfigurationException
 *             If the internally assembled analysis configuration is somehow invalid.
 * @throws IllegalStateException
 *             If the internal analysis is in an invalid state.
 */
private void createTimestampFilter(final long ignoreExecutionsBeforeTimestamp, final long ignoreExecutionsAfterTimestamp) throws IllegalStateException,
AnalysisConfigurationException {
  final Configuration cfg = new Configuration();
  cfg.setProperty(TimestampFilter.CONFIG_PROPERTY_NAME_IGNORE_BEFORE_TIMESTAMP, Long.toString(ignoreExecutionsBeforeTimestamp));
  cfg.setProperty(TimestampFilter.CONFIG_PROPERTY_NAME_IGNORE_AFTER_TIMESTAMP, Long.toString(ignoreExecutionsAfterTimestamp));
  final TimestampFilter filter = new TimestampFilter(cfg, this.controller);
  this.controller.connect(this.reader, ListReader.OUTPUT_PORT_NAME, filter, TimestampFilter.INPUT_PORT_NAME_FLOW);
  this.controller.connect(filter, TimestampFilter.OUTPUT_PORT_NAME_WITHIN_PERIOD, this.sinkPlugin, ListCollectionFilter.INPUT_PORT_NAME);
}
origin: kieker-monitoring/kieker

final TimestampFilter timestampFilter = new TimestampFilter(timestampFilterConfiguration, analysisInstance);
origin: kieker-monitoring/kieker

private TimestampFilter createTimestampFilter(final ThreadEvent2TraceEventFilter sourceStage)
    throws IllegalStateException, AnalysisConfigurationException {
  // Create the timestamp filter and connect to the reader's output port
  final Configuration configTimestampFilter = new Configuration();
  configTimestampFilter.setProperty(TimestampFilter.CONFIG_PROPERTY_NAME_IGNORE_BEFORE_TIMESTAMP,
      this.longToString(this.settings.getIgnoreExecutionsBeforeDate()));
  configTimestampFilter.setProperty(TimestampFilter.CONFIG_PROPERTY_NAME_IGNORE_AFTER_TIMESTAMP,
      this.longToString(this.settings.getIgnoreExecutionsAfterDate()));
  final TimestampFilter timestampFilter = new TimestampFilter(configTimestampFilter, this.analysisController);
  this.analysisController.connect(sourceStage, ThreadEvent2TraceEventFilter.OUTPUT_PORT_NAME_DEFAULT, timestampFilter,
      TimestampFilter.INPUT_PORT_NAME_EXECUTION);
  this.analysisController.connect(sourceStage, ThreadEvent2TraceEventFilter.OUTPUT_PORT_NAME_DEFAULT, timestampFilter,
      TimestampFilter.INPUT_PORT_NAME_FLOW);
  return timestampFilter;
}
origin: net.kieker-monitoring/kieker

final TimestampFilter timestampFilter = new TimestampFilter(timestampFilterConfiguration, analysisInstance);
origin: net.kieker-monitoring/kieker

    Long.toString(this.ignoreExecutionsAfterTimestamp));
timestampFilter = new TimestampFilter(configTimestampFilter, this.analysisController);
this.analysisController.connect(sourceStage, sourcePort, timestampFilter,
    TimestampFilter.INPUT_PORT_NAME_EXECUTION);
origin: kieker-monitoring/kieker

final TimestampFilter timestampFilter = new TimestampFilter(confTimestampFilter, analysisController);
kieker.analysis.plugin.filter.selectTimestampFilter<init>

Javadoc

Creates a new instance of this class using the given parameters.

Popular methods of TimestampFilter

  • inRange
    A simple helper method which checks whether the given timestamp is in the configured limits.
  • inputIMonitoringRecord
  • inputOperationExecutionRecord
    This method represents the input port receiving trace events to be selected by a specific timestamp
  • inputTraceEvent
    This method represents the input port receiving trace events to be selected by a specific timestamp

Popular in Java

  • Start an intent from android
  • getSupportFragmentManager (FragmentActivity)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • setContentView (Activity)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • BitSet (java.util)
    This class implements a vector of bits that grows as needed. Each component of the bit set has a boo
  • Properties (java.util)
    The Properties class represents a persistent set of properties. The Properties can be saved to a st
  • Notification (javax.management)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registery of org.quartz
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now