This repository was archived by the owner on Sep 21, 2021. It is now read-only.
This repository was archived by the owner on Sep 21, 2021. It is now read-only.
max_file_descriptors not available in nodes info API. #529
Open
Description
Guide says to check file descriptors in _nodes/process
, but it doesn't seem to exist there anymore:
{
"cluster_name": "elasticsearch",
"nodes": {
"9a2eRZkcSFC-XWiTvqWtjQ": {
"name": "Matt Murdock",
"transport_address": "127.0.0.1:9300",
"host": "127.0.0.1",
"ip": "127.0.0.1",
"version": "5.0.0-alpha1",
"build_hash": "7d4ed5b",
"http_address": "127.0.0.1:9200",
"roles": [
"master",
"data",
"ingest"
],
"process": {
"refresh_interval_in_millis": 1000,
"id": 18372,
"mlockall": false
}
}
}
}
_nodes/stats
seems to have it...
"process": {
"timestamp": 1462998295332,
"open_file_descriptors": 260,
"max_file_descriptors": 10240,
"cpu": {
"percent": 0,
"total_in_millis": 45030
},
"mem": {
"total_virtual_in_bytes": 5245067264
}
},