"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.apmServiceGroups = void 0; var _i18n = require("@kbn/i18n"); var _configSchema = require("@kbn/config-schema"); var _service_groups = require("../../common/service_groups"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const migrateApmServiceGroups850 = doc => { const { serviceNames, ...rest } = doc.attributes; return { ...doc, attributes: { ...rest } }; }; const apmServiceGroups = { name: _service_groups.APM_SERVICE_GROUP_SAVED_OBJECT_TYPE, hidden: false, namespaceType: 'multiple', mappings: { properties: { groupName: { type: 'keyword' }, kuery: { type: 'text' }, description: { type: 'text' }, color: { type: 'text' } } }, management: { importableAndExportable: true, icon: 'apmApp', getTitle: savedObject => `${_i18n.i18n.translate('xpack.apm.apmServiceGroups.title', { defaultMessage: 'Service Group' })}: ${savedObject.attributes.groupName}`, getInAppUrl: savedObject => ({ path: `/app/apm/services?serviceGroup=${savedObject.id}`, uiCapabilitiesPath: 'apm.show' }) }, modelVersions: { '1': { changes: [], schemas: { create: _configSchema.schema.object({ groupName: _configSchema.schema.string(), kuery: _configSchema.schema.string(), description: _configSchema.schema.maybe(_configSchema.schema.string()), color: _configSchema.schema.maybe(_configSchema.schema.string()) }) } } }, migrations: { '8.5.0': migrateApmServiceGroups850 } }; exports.apmServiceGroups = apmServiceGroups;