Tabnine Logo
Trace.getId
Code IndexAdd Tabnine to your IDE (free)

How to use
getId
method
in
com.springsource.insight.intercept.trace.Trace

Best Java code snippets using com.springsource.insight.intercept.trace.Trace.getId (Showing top 4 results out of 315)

origin: com.springsource.insight/insight-repo

public DuplicateTraceException(Trace trace) {
  super("Unable to add a trace which has already been added (app=" + trace.getAppName() + ", traceId=" + trace.getId() + ")");
  appName = trace.getAppName();
  traceId = trace.getId();
}

origin: com.springsource.insight.dispatch/insight-dispatch-core

public TraceId getId() {
  Trace    t=getTrace();
  return (t == null) ? null : t.getId();
}
origin: com.springsource.insight/insight-common

public List<Command> processTrace(TraceInterface traceAccess) {
  Trace    trace=traceAccess.asTrace();
  if (filter.filters(traceAccess)) {
    if (log.isDebugEnabled()) {
      log.debug("Trace [" + trace.getId() + "] was filtered");
    }
    return Collections.emptyList();
  }
  TraceAnalysis analysis = analyzer.analyze(traceAccess);          
  List<Command> commands = commandGenerator.generateCommands(analysis);
  List<Command> metricGeneratorsCommands = metricsGenerators.generateCommands(traceAccess, analysis);
  commands.addAll(metricGeneratorsCommands);
  // TODO: Aggregation of some commands (increment) could happen here
  return commands;
}
origin: com.springsource.insight/insight-repo

  throw new RuntimeException("Error serializing trace", e);
PersistedTrace persistedTrace = new PersistedTrace(trace.getId(), new Time(trace.getDate()), traceBytes);
traceDao.storeTrace(persistedTrace);
    throw new InsightRuntimeException("Unable to store trace[" + trace.getId() + "] from server [" + trace.getServer() + "]: It depends on " +
                     "resource [" + resourceKey.getKey() + "] which can't be found");
com.springsource.insight.intercept.traceTracegetId

Popular methods of Trace

  • getRange
  • getRootFrame
  • getAllFramesOfType
  • getAppName
  • getServer
  • getDate
  • getFirstFrameOfType
  • getTraceSource
  • addExternalResourceKeys
  • getEndpoint
  • getLabel
  • getTimestamp
  • getLabel,
  • getTimestamp,
  • isSensitive,
  • isTraceSourceAnalysisRequired,
  • newInstance,
  • setAppName,
  • setEndpoint,
  • setServer,
  • setTraceSource

Popular in Java

  • Updating database using SQL prepared statement
  • putExtra (Intent)
  • runOnUiThread (Activity)
  • getSharedPreferences (Context)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now