Searched refs:thread_pool_patterns (Results 1 – 3 of 3) sorted by relevance
30 protected $thread_pool_patterns; variable in Elasticsearch\\Endpoints\\Cat\\ThreadPool34 $thread_pool_patterns = $this->thread_pool_patterns ?? null;36 if (isset($thread_pool_patterns)) {37 return "/_cat/thread_pool/$thread_pool_patterns";61 public function setThreadPoolPatterns($thread_pool_patterns): ThreadPool argument63 if (isset($thread_pool_patterns) !== true) {66 if (is_array($thread_pool_patterns) === true) {67 $thread_pool_patterns = implode(",", $thread_pool_patterns);69 $this->thread_pool_patterns = $thread_pool_patterns;
662 $thread_pool_patterns = $this->extractArgument($params, 'thread_pool_patterns');667 $endpoint->setThreadPoolPatterns($thread_pool_patterns);
517 $params['thread_pool_patterns'] = (list) A comma-separated list of regular-expressions to filter th…