From fe764b7c5cde284091c4b03af378c7e1aeb9d74c Mon Sep 17 00:00:00 2001 From: Ashish Gupta Date: Wed, 19 Apr 2023 12:40:08 +0530 Subject: [PATCH] Supported Debug log for Services (#11124) Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com> --- .../components/AddIngestion/Steps/ConfigureIngestion.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/Steps/ConfigureIngestion.tsx b/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/Steps/ConfigureIngestion.tsx index 59bddaadd22..cece65da5b4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/Steps/ConfigureIngestion.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/Steps/ConfigureIngestion.tsx @@ -718,6 +718,7 @@ const ConfigureIngestion = ({ entityPlural: t('label.ml-model-lowercase-plural'), }), }, + loggerLevelField, ]; const objectStoreMetadataFields: FieldProp[] = [ @@ -739,8 +740,11 @@ const ConfigureIngestion = ({ id: 'root/containerFilterPattern', hasSeparator: true, }, + loggerLevelField, ]; + const metadataServiceMetadataFields: FieldProp[] = [loggerLevelField]; + const getMetadataFields = () => { let fields = [...commonMetadataFields]; @@ -770,6 +774,11 @@ const ConfigureIngestion = ({ break; + case ServiceCategory.METADATA_SERVICES: + fields = [...fields, ...metadataServiceMetadataFields]; + + break; + default: break; }