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
But this thread pool is not listed, when you use _cat/thread_pool?v=asdf command, because only SUPPORTED_NAMES can be listed in org.elasticsearch.rest.action.cat.RestThreadPoolAction#getTableWithHeader
The text was updated successfully, but these errors were encountered:
avlukanin
changed the title
Custom thread pools are not listed in _cat/thread_pool
List custom thread pools in _cat/thread_pool
Apr 28, 2016
We've been talking about adding a class which is responsible for creating threads. Any other class that needs a thread pool should register its requirements with this class, and they should be available in the stats.
The stats is already collected for custom thread pools, but not shown. I had to patch RestThreadPoolAction to add my custom thread pool name to SUPPORTED_NAMES and SUPPORTED_ALIASES to show it.
Can you confirm, that the stats for custom thread pools will not only be collected, but shown as well, when the new paradigm is implemented?
Describe the feature:
It is easy to create a custom thread pool in elasticsearch.yml, e.g.:
But this thread pool is not listed, when you use
_cat/thread_pool?v=asdf
command, because onlySUPPORTED_NAMES
can be listed inorg.elasticsearch.rest.action.cat.RestThreadPoolAction#getTableWithHeader
The text was updated successfully, but these errors were encountered: