Codota Logo
rocks.inspectit.server.dao
Code IndexAdd Codota to your IDE (free)

How to use rocks.inspectit.server.dao

Best Java code snippets using rocks.inspectit.server.dao (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
DateTime d =
  • Codota Iconnew DateTime()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseDateTime(text)
  • Codota IconObject instant;new DateTime(instant)
  • Smart code suggestions by Codota
}
origin: inspectIT/inspectIT

  @Override
  public void run() {
    // update business context for invocation sequences that are in the buffer
    List<InvocationSequenceData> invocations = invocationDataDao.getInvocationSequenceDetail(0, 0, -1, null, null, null);
    for (InvocationSequenceData invocation : invocations) {
      assignBusinessContext(invocation);
    }
  }
});
origin: inspectIT/inspectIT

@Override
public List<HttpTimerData> getChartingHttpTimerDataFromDateToDate(Collection<HttpTimerData> templates, Date fromDate, Date toDate, boolean retrieveByTag) {
  return defaultDataDao.getChartingHttpTimerDataFromDateToDate(templates, fromDate, toDate, retrieveByTag);
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<TimerData> getAggregatedTimerData(TimerData timerData) {
  List<TimerData> result = timerDataDao.getAggregatedTimerData(timerData);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<AggregatedExceptionSensorData> getDataForGroupedExceptionOverview(ExceptionSensorData template) {
  List<AggregatedExceptionSensorData> result = exceptionSensorDataDao.getDataForGroupedExceptionOverview(template);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<SqlStatementData> getParameterAggregatedSqlStatements(SqlStatementData sqlStatementData) {
  List<SqlStatementData> result = sqlDataDao.getParameterAggregatedSqlStatements(sqlStatementData);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<JmxSensorValueData> getJmxDataOverview(JmxSensorValueData jmxSensorValueData, Date fromDate, Date toDate) {
  List<JmxSensorValueData> result = defaultDataDao.getJmxDataOverview(jmxSensorValueData, fromDate, toDate);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<DefaultData> getDataObjectsSinceIdIgnoreMethodId(DefaultData template) {
  List<DefaultData> result = defaultDataDao.findByExampleSinceIdIgnoreMethodId(template);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<AbstractStorageLabel<?>> getAllLabels() {
  return storageLabelDataDao.getAllLabels();
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<DefaultData> getDataObjectsSinceId(DefaultData template) {
  List<DefaultData> result = defaultDataDao.findByExampleSinceId(template);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<HttpTimerData> getAggregatedTimerData(HttpTimerData httpData, boolean includeRequestMethod) {
  return dao.getAggregatedHttpTimerData(httpData, includeRequestMethod);
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public DefaultData getLastDataObject(DefaultData template) {
  DefaultData result = defaultDataDao.findByExampleLastData(template);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public <E> List<AbstractStorageLabel<E>> getLabelSuggestions(AbstractStorageLabelType<E> labeltype) {
  List<AbstractStorageLabel<E>> results = storageLabelDataDao.getAllLabelsForType(labeltype);
  return results;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<AbstractStorageLabelType<?>> getAllLabelTypes() {
  return storageLabelDataDao.getAllLabelTypes();
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<ExceptionSensorData> getStackTraceMessagesForThrowableType(ExceptionSensorData template) {
  List<ExceptionSensorData> result = exceptionSensorDataDao.getStackTraceMessagesForThrowableType(template);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<HttpTimerData> getTaggedAggregatedTimerData(HttpTimerData httpData, boolean includeRequestMethod, Date fromDate, Date toDate) {
  return dao.getTaggedAggregatedHttpTimerData(httpData, includeRequestMethod, fromDate, toDate);
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
public Collection<InvocationSequenceData> getInvocationSequenceDetail(long traceId) {
  return invocationDataDao.getInvocationSequenceDetail(traceId);
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<TimerData> getAggregatedTimerData(TimerData timerData, Date fromDate, Date toDate) {
  List<TimerData> result = timerDataDao.getAggregatedTimerData(timerData, fromDate, toDate);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<AggregatedExceptionSensorData> getDataForGroupedExceptionOverview(ExceptionSensorData template, Date fromDate, Date toDate) {
  List<AggregatedExceptionSensorData> result = exceptionSensorDataDao.getDataForGroupedExceptionOverview(template, fromDate, toDate);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public List<SqlStatementData> getParameterAggregatedSqlStatements(SqlStatementData sqlStatementData, Date fromDate, Date toDate) {
  List<SqlStatementData> result = sqlDataDao.getParameterAggregatedSqlStatements(sqlStatementData, fromDate, toDate);
  return result;
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
@MethodLog
public InvocationSequenceData getInvocationSequenceDetail(InvocationSequenceData template) {
  InvocationSequenceData result = invocationDataDao.getInvocationSequenceDetail(template);
  return result;
}
rocks.inspectit.server.dao

Most used classes

  • DefaultDataDao
    All implementing classes of this interface are storing and retrieving the default data objects, for
  • JmxDefinitionDataIdentDao
    This DAO is used to handle all JmxDefinitionDataIdent objects.
  • MethodIdentDao
    This DAO is used to handle all MethodIdent objects.
  • MethodIdentToSensorTypeDao
    This DAO is used to handle all MethodIdentToSensorType objects.
  • MethodSensorTypeIdentDao
  • PlatformSensorTypeIdentDao,
  • StorageDataDao,
  • BufferInvocationDataDaoImpl,
  • BufferSpanDaoImpl,
  • JmxSensorTypeIdentDaoImpl,
  • TimerDataAggregator,
  • ExceptionSensorDataDao,
  • HttpTimerDataDao,
  • InvocationDataDao,
  • JmxSensorTypeIdentDao,
  • SqlDataDao,
  • TimerDataDao,
  • AbstractBufferDataDao,
  • AbstractJpaDao
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