Interface TraceSpanRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<TraceSpan,UUID>, org.springframework.data.jpa.repository.JpaRepository<TraceSpan,UUID>, org.springframework.data.repository.ListCrudRepository<TraceSpan,UUID>, org.springframework.data.repository.ListPagingAndSortingRepository<TraceSpan,UUID>, org.springframework.data.repository.PagingAndSortingRepository<TraceSpan,UUID>, org.springframework.data.repository.query.QueryByExampleExecutor<TraceSpan>, org.springframework.data.repository.Repository<TraceSpan,UUID>

public interface TraceSpanRepository extends org.springframework.data.jpa.repository.JpaRepository<TraceSpan,UUID>
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the spans of a trace ordered by start time, nulls last for spans missing a timestamp.

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findByTrace_IdOrderByStartTimeUnixNanoAsc

      List<TraceSpan> findByTrace_IdOrderByStartTimeUnixNanoAsc(UUID tracePk)
      Returns the spans of a trace ordered by start time, nulls last for spans missing a timestamp.