Modifier and Type | Method and Description |
---|---|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
FullTextController.fulltext(@NotBlank(message="Search cannot be empty!") String param,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Request to full text search over errors.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
FullTextController.fulltext(String workflowExecutionId,
@NotBlank(message="Search cannot be empty!") String param,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Request to full text search over errors from workflow execution.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
FullTextController.fulltext(String workflowExecutionId,
String scenarioExecutionId,
@NotBlank(message="Search cannot be empty!") String param,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Request to full text search over errors from scenario execution.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
FullTextController.fulltext(String workflowExecutionId,
String scenarioExecutionId,
String connectionId,
@NotBlank(message="Search cannot be empty!") String param,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Request to full text search over errors from connection.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
FullTextController.fulltextPackage(String packageName,
@NotBlank(message="Search cannot be empty!") String param,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Request to full text search over errors from package.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
LogQueryController.queryLogs(List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Query error logs based on given parameters.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
LogQueryController.queryLogs(String workflowExecutionId,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Query error logs from workflow execution based on given parameters.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
LogQueryController.queryLogs(String workflowExecutionId,
String scenarioExecutionId,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Query error logs from scenario execution based on given parameters.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
LogQueryController.queryLogs(String workflowExecutionId,
String scenarioExecutionId,
String connectionId,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Query error logs from connection based on given parameters.
|
org.springframework.http.ResponseEntity<List<ErrorDTO>> |
LogQueryController.queryPackageLogs(String packageName,
List<String> categories,
List<String> errorTypes,
List<String> applications,
@Min(value=0L,message="Offset cannot be negative!") Long offset)
Query error logs from a package based on given parameters.
|
Modifier and Type | Method and Description |
---|---|
List<ErrorDTO> |
FullTextSearchService.fullText(String param,
Filter filter)
Executes the full text search.
|
List<ErrorDTO> |
LogQueryService.queryLogs(Filter filter)
Query logs based on pass filter settings
|
Modifier and Type | Method and Description |
---|---|
List<ErrorDTO> |
FullTextSearchServiceImpl.fullText(String fullTextSearchString,
Filter filter) |
List<ErrorDTO> |
LogQueryServiceImpl.queryLogs(Filter filter) |
Copyright © 2020. All rights reserved.