mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-03 06:03:12 +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'),
|
entityPlural: t('label.ml-model-lowercase-plural'),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
loggerLevelField,
|
||||||
];
|
];
|
||||||
|
|
||||||
const objectStoreMetadataFields: FieldProp[] = [
|
const objectStoreMetadataFields: FieldProp[] = [
|
||||||
@ -739,8 +740,11 @@ const ConfigureIngestion = ({
|
|||||||
id: 'root/containerFilterPattern',
|
id: 'root/containerFilterPattern',
|
||||||
hasSeparator: true,
|
hasSeparator: true,
|
||||||
},
|
},
|
||||||
|
loggerLevelField,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const metadataServiceMetadataFields: FieldProp[] = [loggerLevelField];
|
||||||
|
|
||||||
const getMetadataFields = () => {
|
const getMetadataFields = () => {
|
||||||
let fields = [...commonMetadataFields];
|
let fields = [...commonMetadataFields];
|
||||||
|
|
||||||
@ -770,6 +774,11 @@ const ConfigureIngestion = ({
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ServiceCategory.METADATA_SERVICES:
|
||||||
|
fields = [...fields, ...metadataServiceMetadataFields];
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user