Skip to content
This repository was archived by the owner on Sep 21, 2021. It is now read-only.

add hint on how to get the documented output #796

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion 510_Deployment/60_file_descriptors.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,18 @@ particular OS and distribution. Consult the documentation for your OS to
determine how best to change the allowed file descriptor count.

Once you think you've changed it, check Elasticsearch to make sure it really
does have enough file descriptors:
does have enough file descriptors.

You can check the `max_file_descriptors` configured for each node
using the <<cluster-nodes-stats>> API, with:

[source,js]
--------------------------------------------------
GET _nodes/stats/process?filter_path=**.max_file_descriptors
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe something like _nodes/stats/process?filter_path=**.max_file_descriptors&pretty=true would be better

--------------------------------------------------
// CONSOLE

Example output:

[source,js]
----
Expand Down