UI - Add ES log retrieval (#10667)

This commit is contained in:
Pere Miquel Brull 2023-03-22 17:52:58 +01:00 committed by GitHub
parent ba7690f14e
commit 51f4e0b170
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -98,6 +98,11 @@ const LogsViewer = () => {
break;
case PipelineType.ElasticSearchReindex:
setLogs(logs.concat(res.data?.elasticsearch_reindex_task || ''));
break;
default:
setLogs('');

View File

@ -18,6 +18,7 @@ export interface IngestionPipelineLogByIdInterface {
lineage_task?: string;
test_suite_task?: string;
data_insight_task?: string;
elasticsearch_reindex_task?: string;
dbt_task?: string;
total?: string;
after?: string;