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; }