Skip to content

Commit

Permalink
Merge branch 'main' into fail-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
vagimeli authored May 22, 2024
2 parents ec15cfb + 47a63d9 commit 999551e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion _api-reference/nodes-apis/nodes-stats.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ indices | Index statistics, such as size, document count, and search, index, and
os | Statistics about the host OS, including load, memory, and swapping.
process | Statistics about processes, including their memory consumption, open file descriptors, and CPU usage.
jvm | Statistics about the JVM, including memory pool, buffer pool, and garbage collection, and the number of loaded classes.
thread_pool | Statistics about each thread pool for the node.
fs | File system statistics, such as read/write statistics, data path, and free disk space.
transport | Transport layer statistics about send/receive in cluster communication.
http | Statistics about the HTTP layer.
Expand Down Expand Up @@ -1106,7 +1107,7 @@ active | Integer | The number of active threads in the pool.
rejected | Integer | The number of tasks that have been rejected.
largest | Integer | The peak number of threads in the pool.
completed | Integer | The number of tasks completed.
total_wait_time | Integer | The total amount of time tasks spent waiting in the thread pool queue. Currently, only `search`, `search_throttled`, and `index_searcher` thread pools support this metric.
total_wait_time_in_nanos | Integer | The total amount of time that tasks spend waiting in the thread pool queue. Currently, only `search`, `search_throttled`, and `index_searcher` thread pools support this metric.

### `fs`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ The Security plugin supports the following common settings:

- `plugins.security.compliance.salt` (Static): The salt to use when generating the hash value for field masking. Must be at least 32 characters. Only ASCII characters are allowed. Optional.

- `plugins.security.compliance.immutable_indices` (Static): Documents in indexes that are marked as immutable follow the write-once, read-many paradigm. Documents created in these indexes cannot be changed and are therefore immutable.

- `config.dynamic.http.anonymous_auth_enabled` (Static): Enables anonymous authentication. This will cause all HTTP authenticators to not challenge. Default is `false`.

- `http.detailed_errors.enabled` (Static): Enables a detailed error message for REST calls performed against the OpenSearch cluster. If set to `true`, provides the `root_cause` together with the error code. Default is `true`.
Expand Down
1 change: 1 addition & 0 deletions _plugins/link-checker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class CheckTypes
'crates.io', # 404s on bots
'www.cloudflare.com', # 403s on bots
'platform.openai.com', # 403s on bots
'openai.com', # 403s on bots
'mvnrepository.com', # 403s on bots
'example.issue.link' # a fake example link from the template
]
Expand Down
2 changes: 1 addition & 1 deletion _security/access-control/users-roles.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ See [YAML files]({{site.url}}{{site.baseurl}}/security/configuration/yaml/#roles

### REST API

See [Create role]({{site.url}}{{site.baseurl}}/security/access-control/api/#create-role).
See [Patch role]({{site.url}}{{site.baseurl}}/security/access-control/api/#patch-role).

## Mapping users to roles

Expand Down

0 comments on commit 999551e

Please sign in to comment.