From b02bd8227df4a25428cc8f17927c16c1c7ad96c3 Mon Sep 17 00:00:00 2001 From: David Dougherty Date: Wed, 12 Feb 2025 06:13:29 -0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Rachel Elledge <86307637+rrelledge@users.noreply.github.com> --- content/commands/info/index.md | 6 +++--- .../prometheus-metrics-definitions.md | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/content/commands/info/index.md b/content/commands/info/index.md index 6f2014ad8..e4dd6d1b6 100644 --- a/content/commands/info/index.md +++ b/content/commands/info/index.md @@ -498,11 +498,11 @@ The **modules** section contains additional information about loaded modules if * `search_number_of_indexes`: The total number of indexes in the shard. * `search_number_of_active_indexes`: The total number of indexes running a background indexing and/or background query processing operation. Background indexing refers to vector ingestion process, or in-progress background indexer. * `search_number_of_active_indexes_running_queries`: The total count of indexes currently running a background query process. -* `search_number_of_active_indexes_indexing`: The total count of indexes currently undergoing a background indexing process. Background indexing refers to a vector ingestion process, or an in-progress background indexer. This metric is Limited by the number of WORKER threads allocated for writing operations plus the number of indexes. -* `search_total_active_write_threads`: The total count of background write (indexing) processes currently running in the shard. Background indexing refers to a vector ingestion process, or an in-progress background indexer. This metric is Limited by the number of threads allocated for writing operations. +* `search_number_of_active_indexes_indexing`: The total count of indexes currently undergoing a background indexing process. Background indexing refers to a vector ingestion process, or an in-progress background indexer. This metric is limited by the number of WORKER threads allocated for writing operations plus the number of indexes. +* `search_total_active_write_threads`: The total count of background write (indexing) processes currently running in the shard. Background indexing refers to a vector ingestion process, or an in-progress background indexer. This metric is limited by the number of threads allocated for writing operations. * `search_fields_text_Text`: The total number of `TEXT` fields across all indexes in the shard. * `search_fields_text_Sortable`: The total number of `SORTABLE TEXT` fields across all indexes in the shard. This field appears only if its value is larger than 0. -* `search_fields_text_NoIndex`: The total number of `NOINDEX TEXT` fields across all indexes in the shard; i.e., used for sorting only but not indexed. This field appears only if its value is larger than 0. +* `search_fields_text_NoIndex`: The total number of `NOINDEX TEXT` fields across all indexes in the shard, which are used for sorting only but not indexed. This field appears only if its value is larger than 0. * `search_fields_numeric_Numeric`: The total number of `NUMERIC` fields across all indexes in the shard. * `search_fields_numeric_Sortable`: The total number of `SORTABLE NUMERIC` fields across all indexes in the shard. This field appears only if its value is larger than 0. * `search_fields_numeric_NoIndex`: The total number of `NOINDEX NUMERIC` fields across all indexes in the shard; i.e., used for sorting only but not indexed. This field appears only if its value is larger than 0. diff --git a/content/integrate/prometheus-with-redis-enterprise/prometheus-metrics-definitions.md b/content/integrate/prometheus-with-redis-enterprise/prometheus-metrics-definitions.md index e9276ce51..6ee5e91e5 100644 --- a/content/integrate/prometheus-with-redis-enterprise/prometheus-metrics-definitions.md +++ b/content/integrate/prometheus-with-redis-enterprise/prometheus-metrics-definitions.md @@ -174,17 +174,17 @@ The v2 metrics in the following tables are available as of Redis Enterprise Soft | redis_server_total_net_output_bytes | Number of bytes sent by the shard; calculate the throughput for a time period by comparing the value at different times | | redis_server_up | Shard is up and running | | redis_server_used_memory | Memory used by shard (in BigRedis this includes flash) (bytes) | -| search_number_of_indexes | total number of indexes in the shard | +| search_number_of_indexes | Total number of indexes in the shard | | search_number_of_active_indexes | The total number of indexes running a background indexing and/or background query processing operation. Background indexing refers to vector ingestion process, or in-progress background indexer. | | search_number_of_active_indexes_running_queries | Total count of indexes currently running a background query process. | -| search_number_of_active_indexes_indexing | Total count of indexes currently undergoing a background indexing process. Background indexing refers to vector ingestion process, or in-progress background indexer. This metric is Limited by the number of WORKER threads allocated for writing operations + the number of indexes. | -| search_total_active_write_threads | Total count of background write (indexing) processes currently running in the shard. Background indexing refers to vector ingestion process, or in-progress background indexer. This metric is Limited by the number of threads allocated for writing operations. | +| search_number_of_active_indexes_indexing | Total count of indexes currently undergoing a background indexing process. Background indexing refers to vector ingestion process, or in-progress background indexer. This metric is limited by the number of WORKER threads allocated for writing operations + the number of indexes. | +| search_total_active_write_threads | Total count of background write (indexing) processes currently running in the shard. Background indexing refers to vector ingestion process, or in-progress background indexer. This metric is limited by the number of threads allocated for writing operations. | | search_fields_text_Text | The total number of `TEXT` fields across all indexes in the shard. | | search_fields_text_Sortable | The total number of `SORTABLE TEXT` fields across all indexes in the shard. This field appears only if its value is larger than 0. | | search_fields_text_NoIndex | The total number of `NOINDEX TEXT` fields across all indexes in the shard; i.e., used for sorting only but not indexed. This field appears only if its value is larger than 0. | | search_fields_numeric_Numeric | The total number of `NUMERIC` fields across all indexes in the shard. | | search_fields_numeric_Sortable | The total number of `SORTABLE NUMERIC` fields across all indexes in the shard. This field appears only if its value is larger than 0. | -| search_fields_numeric_NoIndex | The total number of `NOINDEX NUMERIC` fields across all indexes in the shard; i.e., used for sorting only but not indexed. This field appears only if its value is larger than 0. | +| search_fields_numeric_NoIndex | The total number of `NOINDEX NUMERIC` fields across all indexes in the shard, which are used for sorting only but not indexed. This field appears only if its value is larger than 0. | | search_fields_tag_Tag | The total number of `TAG` fields across all indexes in the shard. | | search_fields_tag_Sortable | The total number of `SORTABLE TAG` fields across all indexes in the shard. This field appears only if its value is larger than 0. | | search_fields_tag_NoIndex | The total number of `NOINDEX TAG` fields across all indexes in the shard; i.e., used for sorting only but not indexed. This field appears only if its value is larger than 0. |