Skip to content

Commit 63b3db7

Browse files
authored
[DOCS] Fix capitalization for Query DSL (#69236) (#69242)
1 parent a63fee0 commit 63b3db7

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

docs/community-clients/index.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Also see the {client}/go-api/current/index.html[official Elasticsearch Go client
103103
Also see the {client}/java-api/current/index.html[official Elasticsearch Java client].
104104

105105
* https://github.com/otto-de/flummi[Flummi]:
106-
Java Rest client with comprehensive query DSL API
106+
Java Rest client with comprehensive Query DSL API
107107
* https://github.com/searchbox-io/Jest[Jest]:
108108
Java Rest client.
109109

docs/java-rest/high-level/rollup/search.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
experimental::[]
1111

1212
The Rollup Search endpoint allows searching rolled-up data using the standard
13-
query DSL. The Rollup Search endpoint is needed because, internally,
13+
Query DSL. The Rollup Search endpoint is needed because, internally,
1414
rolled-up documents utilize a different document structure than the original
15-
data. The Rollup Search endpoint rewrites standard query DSL into a format that
15+
data. The Rollup Search endpoint rewrites standard Query DSL into a format that
1616
matches the rollup documents, then takes the response and rewrites it back to
1717
what a client would expect given the original query.
1818

docs/reference/eql/eql-search-api.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,8 @@ returned.
186186
A greater `fetch_size` value often increases search speed but uses more memory.
187187

188188
`filter`::
189-
(Optional, <<query-dsl,query DSL object>>)
190-
Query, written in query DSL, used to filter the events on which the EQL query
189+
(Optional, <<query-dsl,Query DSL object>>)
190+
Query, written in Query DSL, used to filter the events on which the EQL query
191191
runs.
192192

193193
`keep_alive`::

docs/reference/eql/eql.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,9 +458,9 @@ GET /my-index-000001/_eql/search
458458

459459
[discrete]
460460
[[eql-search-filter-query-dsl]]
461-
=== Filter using query DSL
461+
=== Filter using Query DSL
462462

463-
The `filter` parameter uses <<query-dsl,query DSL>> to limit the documents on
463+
The `filter` parameter uses <<query-dsl,Query DSL>> to limit the documents on
464464
which an EQL query runs.
465465

466466
[source,console]

docs/reference/query-dsl/_query-template.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
This is a template for query DSL reference documentation.
2+
This is a template for Query DSL reference documentation.
33

44
To document a new query type, copy this file, remove comments like this, and
55
replace "sample" with the appropriate query name.

docs/reference/rollup/apis/rollup-search.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ifdef::permanently-unreleased-branch[]
1010

1111
include::put-job.asciidoc[tag=legacy-rollup-admon]
1212

13-
Searches legacy rollup data using <<query-dsl,query DSL>>.
13+
Searches legacy rollup data using <<query-dsl,Query DSL>>.
1414

1515
endif::[]
1616
ifndef::permanently-unreleased-branch[]
@@ -23,7 +23,7 @@ ifndef::permanently-unreleased-branch[]
2323
<titleabbrev>Rollup search</titleabbrev>
2424
++++
2525

26-
Enables searching rolled-up data using the standard query DSL.
26+
Enables searching rolled-up data using the standard Query DSL.
2727

2828
experimental[]
2929

@@ -39,7 +39,7 @@ endif::[]
3939

4040
The rollup search endpoint is needed because, internally, rolled-up documents
4141
utilize a different document structure than the original data. The rollup search
42-
endpoint rewrites standard query DSL into a format that matches the rollup
42+
endpoint rewrites standard Query DSL into a format that matches the rollup
4343
documents, then takes the response and rewrites it back to what a client would
4444
expect given the original query.
4545

@@ -128,7 +128,7 @@ PUT _rollup/job/sensor
128128

129129
This rolls up the `sensor-*` pattern and stores the results in `sensor_rollup`.
130130
To search this rolled up data, we need to use the `_rollup_search` endpoint.
131-
However, you'll notice that we can use regular query DSL to search the rolled-up
131+
However, you'll notice that we can use regular Query DSL to search the rolled-up
132132
data:
133133

134134
[source,console]

docs/reference/rollup/overview.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ automates this process of summarizing historical data.
4242
Details about setting up and configuring Rollup are covered in <<rollup-put-job,Create Job API>>.
4343

4444
[discrete]
45-
==== Rollup uses standard query DSL
45+
==== Rollup uses standard Query DSL
4646

4747
The Rollup feature exposes a new search endpoint (`/_rollup_search` vs the standard `/_search`) which knows how to search
4848
over rolled-up data. Importantly, this endpoint accepts 100% normal {es} Query DSL. Your application does not need to learn

docs/reference/search/multi-search.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Contains parameters for a search request:
248248
Aggregations you wish to run during the search. See <<search-aggregations>>.
249249
250250
`query`::
251-
(Optional, <<query-dsl,query DSL object>>) Query you wish to run during the
251+
(Optional, <<query-dsl,Query DSL object>>) Query you wish to run during the
252252
search. Hits matching this query are returned in the response.
253253
254254
`from`::

docs/reference/sql/endpoints/rest.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,10 @@ Which will like return the
365365

366366

367367
[[sql-rest-filtering]]
368-
=== Filtering using {es} query DSL
368+
=== Filtering using {es} Query DSL
369369

370370
One can filter the results that SQL will run on using a standard
371-
{es} query DSL by specifying the query in the filter
371+
{es} Query DSL by specifying the query in the filter
372372
parameter.
373373

374374
[source,console]
@@ -402,7 +402,7 @@ Douglas Adams |The Hitchhiker's Guide to the Galaxy|180 |1979-10-12T
402402

403403
[TIP]
404404
=================
405-
A useful and less obvious usage for standard query DSL filtering is to search documents by a specific <<search-routing, routing key>>.
405+
A useful and less obvious usage for standard Query DSL filtering is to search documents by a specific <<search-routing, routing key>>.
406406
Because {es-sql} does not support a `routing` parameter, one can specify a <<mapping-routing-field, `terms` filter for the `_routing` field>> instead:
407407
408408
[source,console]
@@ -548,7 +548,7 @@ s|Description
548548

549549
|filter
550550
|none
551-
|Optional {es} query DSL for additional <<sql-rest-filtering, filtering>>.
551+
|Optional {es} Query DSL for additional <<sql-rest-filtering, filtering>>.
552552

553553
|request_timeout
554554
|90s

x-pack/docs/en/watcher/input/http.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ index:
4545
--------------------------------------------------
4646
// NOTCONSOLE
4747

48-
You can use the full Elasticsearch <<query-dsl,query DSL>> to perform
48+
You can use the full Elasticsearch <<query-dsl,Query DSL>> to perform
4949
more sophisticated searches. For example, the following `http` input retrieves
5050
all documents that contain `event` in the `category` field:
5151

0 commit comments

Comments
 (0)