You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|Fleet needs to have Elasticsearch API keys enabled, and also to have TLS enabled on kibana, (if you want to run Kibana without TLS you can provide the following config flag --xpack.fleet.agents.tlsCheckDisabled=false)
Copy file name to clipboardExpand all lines: docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchsource.getserializedfields.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,15 @@ serializes search source fields (which can later be passed to [ISearchStartSearc
| [serialize()](./kibana-plugin-plugins-data-public.searchsource.serialize.md) ||SerializestheinstancetoaJSONstringandasetofreferencedobjects. Usethismethodtogetarepresentationofthesearchsourcewhichcanbestoredinasavedobject.<!---->Thereferencesreturnedbythisfunction can be mixed with other references in the same object, however make sure there are no name-collisions. The references will be named <code>kibanaSavedObjectMeta.searchSourceJSON.index</code> and <code>kibanaSavedObjectMeta.searchSourceJSON.filter[<number>].meta.index</code>.<!---->Using<code>createSearchSource</code>, theinstancecanbere-created. |
_log__WEBPACK_IMPORTED_MODULE_3__["log"].debug(`[bazel_tools] bazelisk is not installed. Installing @bazel/bazelisk@${bazeliskVersion} and bazel@${bazelVersion}`);
_log__WEBPACK_IMPORTED_MODULE_4__["log"].debug(`[bazel_tools] bazelisk is not installed. Installing @bazel/bazelisk@${bazeliskVersion} and bazel@${bazelVersion}`);
this.kibanaVersion=kibanaVersion.split('-')[0];// coerce a semver-like string (x.y.z-SNAPSHOT) or prerelease version (x.y.z-alpha) to a regular semver (x.y.z);
99
100
this.documentMigrator=newDocumentMigrator({
100
-
kibanaVersion,
101
+
kibanaVersion: this.kibanaVersion,
101
102
typeRegistry,
102
103
log: this.log,
103
104
});
@@ -163,6 +164,15 @@ export class KibanaMigrator {
163
164
registry: this.typeRegistry,
164
165
});
165
166
167
+
this.log.debug('Applying registered migrations for the following saved object types:');
0 commit comments