Codota Logo
BusinessContextRecognitionProcessor.identify
Code IndexAdd Codota to your IDE (free)

How to use
identify
method
in
rocks.inspectit.server.processor.impl.BusinessContextRecognitionProcessor

Best Java code snippets using rocks.inspectit.server.processor.impl.BusinessContextRecognitionProcessor.identify (Showing top 1 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
origin: inspectIT/inspectIT

/**
 * Assigns the business context to the passed {@link InvocationSequenceData} instance.
 *
 * @param invocSequence
 *            {@link InvocationSequenceData} instance to assign the business context for.
 */
private void assignBusinessContext(InvocationSequenceData invocSequence) {
  List<ApplicationDefinition> applicationDefinitions = configurationInterfaceService.getApplicationDefinitions();
  ApplicationDefinition appDefinition = identify(invocSequence, applicationDefinitions);
  if (null == appDefinition) {
    appDefinition = ApplicationDefinition.DEFAULT_APPLICATION_DEFINITION;
  }
  ApplicationData application = businessContextRegistryService.registerApplication(appDefinition);
  invocSequence.setApplicationId(application.getId());
  BusinessTransactionDefinition businessTxDefinition = identify(invocSequence, appDefinition.getBusinessTransactionDefinitions());
  String businessTxName = businessTxDefinition.determineBusinessTransactionName(invocSequence, cachedDataService);
  BusinessTransactionData businessTransaction = businessContextRegistryService.registerBusinessTransaction(application, businessTxDefinition, businessTxName);
  invocSequence.setBusinessTransactionId(businessTransaction.getId());
}
rocks.inspectit.server.processor.implBusinessContextRecognitionProcessoridentify

Javadoc

Identifies a matching rule provider.

Popular methods of BusinessContextRecognitionProcessor

  • assignBusinessContext
    Assigns the business context to the passed InvocationSequenceData instance.
  • onApplicationEvent
  • process

Popular in Java

  • Creating JSON documents from java classes using gson
  • startActivity (Activity)
  • getExternalFilesDir (Context)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Dictionary (java.util)
    The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to valu
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
  • Properties (java.util)
    The Properties class represents a persistent set of properties. The Properties can be saved to a st
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • SortedSet (java.util)
    A Set that further provides a total ordering on its elements. The elements are ordered using their C
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