Modifier and Type | Method and Description |
---|---|
Log |
LogResolver.resolve(String jsonLog)
Resolves log from a JSON message.
|
Log |
LogResolverImpl.resolve(String jsonLog) |
Modifier and Type | Method and Description |
---|---|
org.springframework.http.ResponseEntity<List<? extends Log>> |
ContextController.getContext(@NotNull(message="Log id must be null.") Long logId)
Request to build context view for a given error log.
|
org.springframework.http.ResponseEntity<List<? extends Log>> |
ContextController.loadEarlierContext(@NotNull(message="Log id must be null.") Long logId,
@Min(value=0L,message="Offset cannot be negative!") long offset,
@Min(value=0L,message="Amount cannot be negative!") long amount)
Request to load more logs into the log context that happened before the error log.
|
org.springframework.http.ResponseEntity<List<? extends Log>> |
ContextController.loadLaterContext(@NotNull(message="Log id must be null.") Long logId,
@Min(value=0L,message="Offset cannot be negative!") long offset,
@Min(value=0L,message="Amount cannot be negative!") long amount)
Request to load more logs into the log context that happened after the error log.
|
Modifier and Type | Class and Description |
---|---|
class |
DebugLog
Class representing logs with severity TRACE, DEBUG and INFO.
|
class |
ErrorLog
Log with level WARN, ERROR and FATAL.
|
Modifier and Type | Method and Description |
---|---|
Log |
LogDAO.find(Long logId,
LogMetadata logMetadata)
Get log with a given ID
|
Modifier and Type | Method and Description |
---|---|
List<? extends Log> |
LogDAO.getAll()
Get all logs, used by tests
|
List<Log> |
LogDAO.loadEarlier(Log log,
Long logId,
long offset,
long amount,
LogMetadata logMetadata)
Load logs that occurred BEFORE the wanted log that have the same metaata and occurred in the same thread
|
List<Log> |
LogDAO.loadLater(Log log,
Long logId,
long offset,
long amount,
LogMetadata logMetadata)
Load logs that occurred AFTER the wanted log
|
Modifier and Type | Method and Description |
---|---|
List<Log> |
LogDAO.loadEarlier(Log log,
Long logId,
long offset,
long amount,
LogMetadata logMetadata)
Load logs that occurred BEFORE the wanted log that have the same metaata and occurred in the same thread
|
List<Log> |
LogDAO.loadLater(Log log,
Long logId,
long offset,
long amount,
LogMetadata logMetadata)
Load logs that occurred AFTER the wanted log
|
Modifier and Type | Method and Description |
---|---|
Log |
LogDAOImpl.find(Long logId,
LogMetadata logMetadata) |
Modifier and Type | Method and Description |
---|---|
List<? extends Log> |
LogDAOImpl.getAll() |
List<Log> |
LogDAOImpl.loadEarlier(Log log,
Long logId,
long offset,
long amount,
LogMetadata logMetadata) |
List<Log> |
LogDAOImpl.loadLater(Log log,
Long logId,
long offset,
long amount,
LogMetadata logMetadata) |
Modifier and Type | Method and Description |
---|---|
List<Log> |
LogDAOImpl.loadEarlier(Log log,
Long logId,
long offset,
long amount,
LogMetadata logMetadata) |
List<Log> |
LogDAOImpl.loadLater(Log log,
Long logId,
long offset,
long amount,
LogMetadata logMetadata) |
Modifier and Type | Method and Description |
---|---|
Log |
LogContextMapper.getLog(Long logId,
LogMetadata logMetadata)
Get log with a given ID
|
Modifier and Type | Method and Description |
---|---|
List<? extends Log> |
LogMapper.getAll()
Retrieved all stored logs, used by tests
|
List<Log> |
LogContextMapper.loadEarlier(Log log,
Long logId,
Long offset,
Long amount,
LogMetadata logMetadata)
Load logs that occurred BEFORE the wanted log that have the same metaata and occurred in the same thread
|
List<Log> |
LogContextMapper.loadLater(Log log,
Long logId,
Long offset,
Long amount,
LogMetadata logMetadata)
Load logs that occurred AFTER the wanted log
|
Modifier and Type | Method and Description |
---|---|
List<Log> |
LogContextMapper.loadEarlier(Log log,
Long logId,
Long offset,
Long amount,
LogMetadata logMetadata)
Load logs that occurred BEFORE the wanted log that have the same metaata and occurred in the same thread
|
List<Log> |
LogContextMapper.loadLater(Log log,
Long logId,
Long offset,
Long amount,
LogMetadata logMetadata)
Load logs that occurred AFTER the wanted log
|
Modifier and Type | Method and Description |
---|---|
List<? extends Log> |
LogContextService.getContextForLog(Long logId)
Get logs that happened before and after the given log
|
List<? extends Log> |
LogContextService.loadEarlier(Long logId,
long offset,
long amount)
Load logs that occurred BEFORE the wanted log that have the same metaata and occurred in the same thread
|
List<? extends Log> |
LogContextService.loadLater(Long logId,
long offset,
long amount)
Load logs that occurred AFTER the wanted log
|
Modifier and Type | Method and Description |
---|---|
List<? extends Log> |
LogContextServiceImpl.getContextForLog(Long logId) |
List<? extends Log> |
LogContextServiceImpl.loadEarlier(Long logId,
long offset,
long amount) |
List<? extends Log> |
LogContextServiceImpl.loadLater(Long logId,
long offset,
long amount) |
Copyright © 2020. All rights reserved.