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
Copy file name to clipboardExpand all lines: docs/reference/querying.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,9 @@ As a result, when you know which namespace and function you need, you can call t
22
22
How can you figure out the namespace?
23
23
24
24
* The [Elasticsearch API docs](https://www.elastic.co/docs/api/doc/elasticsearch/) can help, even though the tags it uses do not fully map to namespaces.
25
-
* You can also use the client docs, by:
26
-
*browing the [Elasticsearch API Reference](https://elasticsearch-py.readthedocs.io/en/stable/api.html) page, or
27
-
*search for your endpoint using [Read the Docs](https://elasticsearch-py.readthedocs.io/) search, which is powered by Elasticsearch!
25
+
* You can also use the client documentation, by:
26
+
*browsing the [Elasticsearch API Reference](https://elasticsearch-py.readthedocs.io/en/stable/api.html) page, or
27
+
*searching for your endpoint using [Read the Docs](https://elasticsearch-py.readthedocs.io/) search, which is powered by Elasticsearch!
28
28
* Finally, most examples in the [Elasticsearch guide](https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html) are also available in Python. In the example below, `client.ingest.put_pipeline(...)` is the function that calls the "Create or update a pipeline" API.
29
29
30
30
@@ -59,7 +59,7 @@ print(resp)
59
59
60
60
In this case, the client will send to Elasticsearch the following JSON body:
61
61
62
-
```json
62
+
```console
63
63
PUT /logs
64
64
{
65
65
"aliases": {"logs-alias": {}},
@@ -83,7 +83,7 @@ resp = client.indices.create(
83
83
print(resp)
84
84
```
85
85
86
-
In the event where an API is missing, you need to call the low-level `perform_request` function:
86
+
In the event where an API is missing, you need to use the low-level `perform_request` function:
0 commit comments