Supported Debug log for Services (#11124)

Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
This commit is contained in:
Ashish Gupta 2023-04-19 12:40:08 +05:30 committed by GitHub
parent 1862ba2ba4
commit fe764b7c5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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