diff --git a/docs/dev-tools/searchprofiler/getting-started.asciidoc b/docs/dev-tools/searchprofiler/getting-started.asciidoc index 18953eb78589..fdac188c2855 100644 --- a/docs/dev-tools/searchprofiler/getting-started.asciidoc +++ b/docs/dev-tools/searchprofiler/getting-started.asciidoc @@ -31,7 +31,7 @@ indices and shards, it doesn't necessarily represent the actual physical query t You can select the name of the shard and then click *View details* to see more profiling information, including details about the query component(s) that ran on the shard, as well as the timing -breakdown of low-level Lucene methods. For more information, see {ref}/search-profile.html#search-profile-queries[Profiling queries]. +breakdown of low-level Lucene methods. For more information, see {ref}/search-profile-queries.html[Profiling queries]. [float] === Index and type filtering diff --git a/docs/dev-tools/searchprofiler/more-complicated.asciidoc b/docs/dev-tools/searchprofiler/more-complicated.asciidoc index 7edc76b8d45f..ea786938b24e 100644 --- a/docs/dev-tools/searchprofiler/more-complicated.asciidoc +++ b/docs/dev-tools/searchprofiler/more-complicated.asciidoc @@ -101,4 +101,4 @@ image::dev-tools/searchprofiler/images/gs10.png["Drilling into the first shard's For more information about how the {searchprofiler} works, how timings are calculated, and how to interpret various results, see -{ref}/search-profile.html#search-profile-queries[Profiling queries]. +{ref}/search-profile-queries.html[Profiling queries]. diff --git a/docs/management/advanced-options.asciidoc b/docs/management/advanced-options.asciidoc index 336fa076589e..403718083e01 100644 --- a/docs/management/advanced-options.asciidoc +++ b/docs/management/advanced-options.asciidoc @@ -81,7 +81,7 @@ Choices are <>, a language built specifically for {kib}, and t query syntax>>. `shortDots:enable`:: Set this property to `true` to shorten long field names in visualizations. For example, show `f.b.baz` instead of `foo.bar.baz`. -`sort:options`:: Options for the Elasticsearch {ref}/search-request-body.html#search-request-sort[sort] parameter. +`sort:options`:: Options for the Elasticsearch {ref}/search-request-sort.html[sort] parameter. `state:storeInSessionStorage`:: [experimental] Kibana tracks UI state in the URL, which can lead to problems when there is a lot of state information, and the URL gets very long. @@ -182,7 +182,7 @@ Refresh the page to apply the changes. === Search settings [horizontal] -`courier:customRequestPreference`:: {ref}/search-request-body.html#search-request-preference[Request preference] +`courier:customRequestPreference`:: {ref}/search-request-preference.html[Request preference] to use when `courier:setRequestPreference` is set to "custom". `courier:ignoreFilterIfFieldNotInIndex`:: Skips filters that apply to fields that don't exist in the index for a visualization. Useful when dashboards consist of visualizations from multiple index patterns. diff --git a/src/core/public/doc_links/doc_links_service.ts b/src/core/public/doc_links/doc_links_service.ts index 97d9fd8e4556..44dc76bfe6e3 100644 --- a/src/core/public/doc_links/doc_links_service.ts +++ b/src/core/public/doc_links/doc_links_service.ts @@ -94,7 +94,7 @@ export class DocLinksService { top_hits: `${ELASTICSEARCH_DOCS}search-aggregations-metrics-top-hits-aggregation.html`, }, scriptedFields: { - scriptFields: `${ELASTICSEARCH_DOCS}search-request-body.html#search-request-script-fields`, + scriptFields: `${ELASTICSEARCH_DOCS}search-request-script-fields.html`, scriptAggs: `${ELASTICSEARCH_DOCS}search-aggregations.html#_values_source`, painless: `${ELASTICSEARCH_DOCS}modules-scripting-painless.html`, painlessApi: `${ELASTIC_WEBSITE_URL}guide/en/elasticsearch/painless/${DOC_LINK_VERSION}/painless-api-reference.html`, diff --git a/src/core/server/saved_objects/migrations/README.md b/src/core/server/saved_objects/migrations/README.md index 69f3b5cbac22..0b62d86172a5 100644 --- a/src/core/server/saved_objects/migrations/README.md +++ b/src/core/server/saved_objects/migrations/README.md @@ -98,7 +98,7 @@ If a plugin is disbled, all of its documents are retained in the Kibana index. T Kibana index migrations expose a few config settings which might be tweaked: -* `migrations.scrollDuration` - The [scroll](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-scroll.html) value used to read batches of documents from the source index. Defaults to `15m`. +* `migrations.scrollDuration` - The [scroll](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-scroll.html#scroll-search-context) value used to read batches of documents from the source index. Defaults to `15m`. * `migrations.batchSize` - The number of documents to read / transform / write at a time during index migrations * `migrations.pollInterval` - How often, in milliseconds, secondary Kibana instances will poll to see if the primary Kibana instance has finished migrating the index. diff --git a/src/legacy/core_plugins/console/api_server/spec/generated/clear_scroll.json b/src/legacy/core_plugins/console/api_server/spec/generated/clear_scroll.json index 4ac3ec2f68a6..f7a42c291b7b 100644 --- a/src/legacy/core_plugins/console/api_server/spec/generated/clear_scroll.json +++ b/src/legacy/core_plugins/console/api_server/spec/generated/clear_scroll.json @@ -6,6 +6,6 @@ "patterns": [ "_search/scroll" ], - "documentation": "http://www.elastic.co/guide/en/elasticsearch/reference/master/search-request-body.html#search-request-scroll" + "documentation": "http://www.elastic.co/guide/en/elasticsearch/reference/master/search-request-scroll.html" } } diff --git a/src/legacy/core_plugins/console/api_server/spec/generated/scroll.json b/src/legacy/core_plugins/console/api_server/spec/generated/scroll.json index c3d88192d731..03ab7557323f 100644 --- a/src/legacy/core_plugins/console/api_server/spec/generated/scroll.json +++ b/src/legacy/core_plugins/console/api_server/spec/generated/scroll.json @@ -12,6 +12,6 @@ "patterns": [ "_search/scroll" ], - "documentation": "http://www.elastic.co/guide/en/elasticsearch/reference/master/search-request-body.html#search-request-scroll" + "documentation": "http://www.elastic.co/guide/en/elasticsearch/reference/master/search-request-scroll.html" } } diff --git a/src/legacy/core_plugins/kibana/public/context/api/utils/get_es_query_sort.ts b/src/legacy/core_plugins/kibana/public/context/api/utils/get_es_query_sort.ts index ef6165322b68..c9f9b9b939f3 100644 --- a/src/legacy/core_plugins/kibana/public/context/api/utils/get_es_query_sort.ts +++ b/src/legacy/core_plugins/kibana/public/context/api/utils/get_es_query_sort.ts @@ -24,7 +24,7 @@ export type EsQuerySort = [EsQuerySortValue, EsQuerySortValue]; /** * Returns `EsQuerySort` which is used to sort records in the ES query - * https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#search-request-sort + * https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-sort.html * @param timeField * @param tieBreakerField * @param sortDir