diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index 286ebebc34..3179074986 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -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. @@ -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` diff --git a/_install-and-configure/configuring-opensearch/security-settings.md b/_install-and-configure/configuring-opensearch/security-settings.md index ce5425e502..244d601449 100644 --- a/_install-and-configure/configuring-opensearch/security-settings.md +++ b/_install-and-configure/configuring-opensearch/security-settings.md @@ -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`. diff --git a/_plugins/link-checker.rb b/_plugins/link-checker.rb index 9eb9c48bc9..d599c88adc 100644 --- a/_plugins/link-checker.rb +++ b/_plugins/link-checker.rb @@ -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 ] diff --git a/_security/access-control/users-roles.md b/_security/access-control/users-roles.md index 9faafcc008..8b22b2f509 100644 --- a/_security/access-control/users-roles.md +++ b/_security/access-control/users-roles.md @@ -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