mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-31 04:14:34 +00:00
Supported Debug log for Services (#11124)
Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
This commit is contained in:
parent
1862ba2ba4
commit
fe764b7c5c
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user