From d5285939038a601a9d0a76631603628871075151 Mon Sep 17 00:00:00 2001 From: Anush008 Date: Fri, 20 Dec 2024 15:10:33 +0530 Subject: [PATCH 1/2] chore: fixed typos /guides/monitoring.md Signed-off-by: Anush008 --- .../documentation/guides/monitoring.md | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/qdrant-landing/content/documentation/guides/monitoring.md b/qdrant-landing/content/documentation/guides/monitoring.md index 52992a4e3..78119cd07 100644 --- a/qdrant-landing/content/documentation/guides/monitoring.md +++ b/qdrant-landing/content/documentation/guides/monitoring.md @@ -30,31 +30,31 @@ To scrape metrics from a Qdrant cluster running in Qdrant Cloud, note that an [A Each Qdrant server will expose the following metrics. -| Name | Type | Meaning | -| ----------------------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------- | -| app_info | gauge | Information about Qdrant server | -| app_status_recovery_mode | gauge | If Qdrant is currently started in recovery mode | -| collections_total | gauge | Number of collections | -| collections_vector_total | gauge | Total number of vectors in all collections | -| collections_full_total | gauge | Number of full collections | -| collections_aggregated_total | gauge | Number of aggregated collections | -| rest_responses_total | counter | Total number of responses through REST API | -| rest_responses_fail_total | counter | Total number of failed responses through REST API | -| rest_responses_avg_duration_seconds | gauge | Average response duration in REST API | -| rest_responses_min_duration_seconds | gauge | Minimum response duration in REST API | -| rest_responses_max_duration_seconds | gauge | Maximum response duration in REST API | -| grpc_responses_total | counter | Total number of responses through gRPC API | -| grpc_responses_fail_total | counter | Total number of failed responses through REST API | -| grpc_responses_avg_duration_seconds | gauge | Average response duration in gRPC API | -| grpc_responses_min_duration_seconds | gauge | Minimum response duration in gRPC API | -| grpc_responses_max_duration_seconds | gauge | Maximum response duration in gRPC API | -| cluster_enabled | gauge | Whether the cluster support is enabled. 1 - YES | -| memory_active_bytes | gauge | Total number of bytes in active pages allocated by the application ([jemalloc](https://jemalloc.net/jemalloc.3.html#stats.active)) | -| memory_allocated_bytes | gauge | Total number of bytes allocated by the application ([jemalloc](https://jemalloc.net/jemalloc.3.html#stats.allocated)) | -| memory_metadata_bytes | gauge | Total number of bytes dedicated to allocator metadata ([jemalloc](https://jemalloc.net/jemalloc.3.html#stats.metadata)) | -| memory_resident_bytes | gauge | Maximum number of bytes in physically resident data pages mapped ([resident](https://jemalloc.net/jemalloc.3.html#stats.resident)) | -| memory_retained_bytes | gauge | Total number of bytes in virtual memory mappings ([retained](https://jemalloc.net/jemalloc.3.html#stats.retained)) | -| collection_hardware_metric_cpu | gauge | CPU measurements of a collection | +| Name | Type | Meaning | +| ----------------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| app_info | gauge | Information about Qdrant server | +| app_status_recovery_mode | gauge | If Qdrant is currently started in recovery mode | +| collections_total | gauge | Number of collections | +| collections_vector_total | gauge | Total number of vectors in all collections | +| collections_full_total | gauge | Number of full collections | +| collections_aggregated_total | gauge | Number of aggregated collections | +| rest_responses_total | counter | Total number of responses through REST API | +| rest_responses_fail_total | counter | Total number of failed responses through REST API | +| rest_responses_avg_duration_seconds | gauge | Average response duration in REST API | +| rest_responses_min_duration_seconds | gauge | Minimum response duration in REST API | +| rest_responses_max_duration_seconds | gauge | Maximum response duration in REST API | +| grpc_responses_total | counter | Total number of responses through gRPC API | +| grpc_responses_fail_total | counter | Total number of failed responses through REST API | +| grpc_responses_avg_duration_seconds | gauge | Average response duration in gRPC API | +| grpc_responses_min_duration_seconds | gauge | Minimum response duration in gRPC API | +| grpc_responses_max_duration_seconds | gauge | Maximum response duration in gRPC API | +| cluster_enabled | gauge | Whether the cluster support is enabled. 1 - YES | +| memory_active_bytes | gauge | Total number of bytes in active pages allocated by the application ([Reference](https://jemalloc.net/jemalloc.3.html#stats.active)) | +| memory_allocated_bytes | gauge | Total number of bytes allocated by the application ([Reference](https://jemalloc.net/jemalloc.3.html#stats.allocated)) | +| memory_metadata_bytes | gauge | Total number of bytes dedicated to allocator metadata ([Reference](https://jemalloc.net/jemalloc.3.html#stats.metadata)) | +| memory_resident_bytes | gauge | Maximum number of bytes in physically resident data pages mapped ([Reference](https://jemalloc.net/jemalloc.3.html#stats.resident)) | +| memory_retained_bytes | gauge | Total number of bytes in virtual memory mappings ([Reference](https://jemalloc.net/jemalloc.3.html#stats.retained)) | +| collection_hardware_metric_cpu | gauge | CPU measurements of a collection | ### Cluster-related metrics From 9d39f0c2fa2ea16e118eab5e173c31b4ffcdff05 Mon Sep 17 00:00:00 2001 From: Anush008 Date: Fri, 20 Dec 2024 15:14:09 +0530 Subject: [PATCH 2/2] chore: No () Signed-off-by: Anush008 --- .../documentation/guides/monitoring.md | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/qdrant-landing/content/documentation/guides/monitoring.md b/qdrant-landing/content/documentation/guides/monitoring.md index 78119cd07..cf80bb9a6 100644 --- a/qdrant-landing/content/documentation/guides/monitoring.md +++ b/qdrant-landing/content/documentation/guides/monitoring.md @@ -30,31 +30,31 @@ To scrape metrics from a Qdrant cluster running in Qdrant Cloud, note that an [A Each Qdrant server will expose the following metrics. -| Name | Type | Meaning | -| ----------------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| app_info | gauge | Information about Qdrant server | -| app_status_recovery_mode | gauge | If Qdrant is currently started in recovery mode | -| collections_total | gauge | Number of collections | -| collections_vector_total | gauge | Total number of vectors in all collections | -| collections_full_total | gauge | Number of full collections | -| collections_aggregated_total | gauge | Number of aggregated collections | -| rest_responses_total | counter | Total number of responses through REST API | -| rest_responses_fail_total | counter | Total number of failed responses through REST API | -| rest_responses_avg_duration_seconds | gauge | Average response duration in REST API | -| rest_responses_min_duration_seconds | gauge | Minimum response duration in REST API | -| rest_responses_max_duration_seconds | gauge | Maximum response duration in REST API | -| grpc_responses_total | counter | Total number of responses through gRPC API | -| grpc_responses_fail_total | counter | Total number of failed responses through REST API | -| grpc_responses_avg_duration_seconds | gauge | Average response duration in gRPC API | -| grpc_responses_min_duration_seconds | gauge | Minimum response duration in gRPC API | -| grpc_responses_max_duration_seconds | gauge | Maximum response duration in gRPC API | -| cluster_enabled | gauge | Whether the cluster support is enabled. 1 - YES | -| memory_active_bytes | gauge | Total number of bytes in active pages allocated by the application ([Reference](https://jemalloc.net/jemalloc.3.html#stats.active)) | -| memory_allocated_bytes | gauge | Total number of bytes allocated by the application ([Reference](https://jemalloc.net/jemalloc.3.html#stats.allocated)) | -| memory_metadata_bytes | gauge | Total number of bytes dedicated to allocator metadata ([Reference](https://jemalloc.net/jemalloc.3.html#stats.metadata)) | -| memory_resident_bytes | gauge | Maximum number of bytes in physically resident data pages mapped ([Reference](https://jemalloc.net/jemalloc.3.html#stats.resident)) | -| memory_retained_bytes | gauge | Total number of bytes in virtual memory mappings ([Reference](https://jemalloc.net/jemalloc.3.html#stats.retained)) | -| collection_hardware_metric_cpu | gauge | CPU measurements of a collection | +| Name | Type | Meaning | +| ----------------------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| app_info | gauge | Information about Qdrant server | +| app_status_recovery_mode | gauge | If Qdrant is currently started in recovery mode | +| collections_total | gauge | Number of collections | +| collections_vector_total | gauge | Total number of vectors in all collections | +| collections_full_total | gauge | Number of full collections | +| collections_aggregated_total | gauge | Number of aggregated collections | +| rest_responses_total | counter | Total number of responses through REST API | +| rest_responses_fail_total | counter | Total number of failed responses through REST API | +| rest_responses_avg_duration_seconds | gauge | Average response duration in REST API | +| rest_responses_min_duration_seconds | gauge | Minimum response duration in REST API | +| rest_responses_max_duration_seconds | gauge | Maximum response duration in REST API | +| grpc_responses_total | counter | Total number of responses through gRPC API | +| grpc_responses_fail_total | counter | Total number of failed responses through REST API | +| grpc_responses_avg_duration_seconds | gauge | Average response duration in gRPC API | +| grpc_responses_min_duration_seconds | gauge | Minimum response duration in gRPC API | +| grpc_responses_max_duration_seconds | gauge | Maximum response duration in gRPC API | +| cluster_enabled | gauge | Whether the cluster support is enabled. 1 - YES | +| memory_active_bytes | gauge | Total number of bytes in active pages allocated by the application. [Reference](https://jemalloc.net/jemalloc.3.html#stats.active) | +| memory_allocated_bytes | gauge | Total number of bytes allocated by the application. [Reference](https://jemalloc.net/jemalloc.3.html#stats.allocated) | +| memory_metadata_bytes | gauge | Total number of bytes dedicated to allocator metadata. [Reference](https://jemalloc.net/jemalloc.3.html#stats.metadata) | +| memory_resident_bytes | gauge | Maximum number of bytes in physically resident data pages mapped. [Reference](https://jemalloc.net/jemalloc.3.html#stats.resident) | +| memory_retained_bytes | gauge | Total number of bytes in virtual memory mappings. [Reference](https://jemalloc.net/jemalloc.3.html#stats.retained) | +| collection_hardware_metric_cpu | gauge | CPU measurements of a collection | ### Cluster-related metrics