-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
index_pattern_migrations.ts
64 lines (56 loc) · 1.78 KB
/
index_pattern_migrations.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* 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 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import { flow, omit } from 'lodash';
import { SavedObjectMigrationFn } from '@kbn/core/server';
const migrateAttributeTypeAndAttributeTypeMeta: SavedObjectMigrationFn<
{ type?: string; typeMeta?: string },
unknown
> = (doc) => ({
...doc,
attributes: {
...doc.attributes,
type: doc.attributes.type || undefined,
typeMeta: doc.attributes.typeMeta || undefined,
},
});
const migrateSubTypeAndParentFieldProperties: SavedObjectMigrationFn<
{ fields?: string },
unknown
> = (doc) => {
if (!doc.attributes.fields) return doc;
const fieldsString = doc.attributes.fields;
const fields = JSON.parse(fieldsString) as Array<{ subType?: string; parent?: string }>;
const migratedFields = fields.map((field) => {
if (field.subType === 'multi') {
return {
...omit(field, 'parent'),
subType: { multi: { parent: field.parent } },
};
}
return field;
});
return {
...doc,
attributes: {
...doc.attributes,
fields: JSON.stringify(migratedFields),
},
};
};
const addAllowNoIndex: SavedObjectMigrationFn<{}, unknown> = (doc) => ({
...doc,
attributes: {
...doc.attributes,
allowNoIndex: doc.id === 'logs-*' || doc.id === 'metrics-*' || undefined,
},
});
export const indexPatternSavedObjectTypeMigrations = {
'6.5.0': flow(migrateAttributeTypeAndAttributeTypeMeta),
'7.6.0': flow(migrateSubTypeAndParentFieldProperties),
'7.11.0': flow(addAllowNoIndex),
};