Spaces:
Running
Running
File size: 16,053 Bytes
b110593 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package monitoring
import (
"sync"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
"github.com/weaviate/weaviate/usecases/config"
)
type PrometheusMetrics struct {
BatchTime *prometheus.HistogramVec
BatchDeleteTime *prometheus.SummaryVec
ObjectsTime *prometheus.SummaryVec
LSMBloomFilters *prometheus.SummaryVec
AsyncOperations *prometheus.GaugeVec
LSMSegmentCount *prometheus.GaugeVec
LSMSegmentCountByLevel *prometheus.GaugeVec
LSMSegmentObjects *prometheus.GaugeVec
LSMSegmentSize *prometheus.GaugeVec
LSMMemtableSize *prometheus.GaugeVec
LSMMemtableDurations *prometheus.SummaryVec
VectorIndexTombstones *prometheus.GaugeVec
VectorIndexTombstoneCleanupThreads *prometheus.GaugeVec
VectorIndexTombstoneCleanedCount *prometheus.CounterVec
VectorIndexOperations *prometheus.GaugeVec
VectorIndexDurations *prometheus.SummaryVec
VectorIndexSize *prometheus.GaugeVec
VectorIndexMaintenanceDurations *prometheus.SummaryVec
ObjectCount *prometheus.GaugeVec
QueriesCount *prometheus.GaugeVec
RequestsTotal *prometheus.GaugeVec
QueriesDurations *prometheus.HistogramVec
QueriesFilteredVectorDurations *prometheus.SummaryVec
QueryDimensions *prometheus.CounterVec
QueryDimensionsCombined prometheus.Counter
GoroutinesCount *prometheus.GaugeVec
BackupRestoreDurations *prometheus.SummaryVec
BackupStoreDurations *prometheus.SummaryVec
BucketPauseDurations *prometheus.SummaryVec
BackupRestoreClassDurations *prometheus.SummaryVec
BackupRestoreBackupInitDurations *prometheus.SummaryVec
BackupRestoreFromStorageDurations *prometheus.SummaryVec
BackupRestoreDataTransferred *prometheus.CounterVec
BackupStoreDataTransferred *prometheus.CounterVec
VectorDimensionsSum *prometheus.GaugeVec
VectorSegmentsSum *prometheus.GaugeVec
StartupProgress *prometheus.GaugeVec
StartupDurations *prometheus.SummaryVec
StartupDiskIO *prometheus.SummaryVec
ShardsLoaded *prometheus.GaugeVec
ShardsUnloaded *prometheus.GaugeVec
ShardsLoading *prometheus.GaugeVec
ShardsUnloading *prometheus.GaugeVec
Group bool
}
// Delete Shard deletes existing label combinations that match both
// the shard and class name. If a metric is not collected at the shard
// level it is unaffected. This is to make sure that deleting a single
// shard (e.g. multi-tenancy) does not affect metrics for existing
// shards.
//
// In addition, there are some metrics that we explicitly keep, such
// as vector_dimensions_sum as they can be used in billing decisions.
func (pm *PrometheusMetrics) DeleteShard(className, shardName string) error {
if pm == nil {
return nil
}
labels := prometheus.Labels{
"class_name": className,
"shard_name": shardName,
}
pm.BatchTime.DeletePartialMatch(labels)
pm.BatchDeleteTime.DeletePartialMatch(labels)
pm.ObjectsTime.DeletePartialMatch(labels)
pm.ObjectCount.DeletePartialMatch(labels)
pm.QueriesFilteredVectorDurations.DeletePartialMatch(labels)
pm.AsyncOperations.DeletePartialMatch(labels)
pm.LSMBloomFilters.DeletePartialMatch(labels)
pm.LSMMemtableDurations.DeletePartialMatch(labels)
pm.LSMMemtableSize.DeletePartialMatch(labels)
pm.LSMMemtableDurations.DeletePartialMatch(labels)
pm.LSMSegmentCount.DeletePartialMatch(labels)
pm.LSMSegmentSize.DeletePartialMatch(labels)
pm.LSMSegmentCountByLevel.DeletePartialMatch(labels)
pm.VectorIndexTombstones.DeletePartialMatch(labels)
pm.VectorIndexTombstoneCleanupThreads.DeletePartialMatch(labels)
pm.VectorIndexTombstoneCleanedCount.DeletePartialMatch(labels)
pm.VectorIndexOperations.DeletePartialMatch(labels)
pm.VectorIndexMaintenanceDurations.DeletePartialMatch(labels)
pm.VectorIndexDurations.DeletePartialMatch(labels)
pm.VectorIndexSize.DeletePartialMatch(labels)
pm.StartupProgress.DeletePartialMatch(labels)
pm.StartupDurations.DeletePartialMatch(labels)
pm.StartupDiskIO.DeletePartialMatch(labels)
return nil
}
// DeleteClass deletes all metrics that match the class name, but do
// not have a shard-specific label. See [DeleteShard] for more
// information.
func (pm *PrometheusMetrics) DeleteClass(className string) error {
if pm == nil {
return nil
}
labels := prometheus.Labels{
"class_name": className,
}
pm.QueriesCount.DeletePartialMatch(labels)
pm.QueriesDurations.DeletePartialMatch(labels)
pm.GoroutinesCount.DeletePartialMatch(labels)
pm.BackupRestoreClassDurations.DeletePartialMatch(labels)
pm.BackupRestoreBackupInitDurations.DeletePartialMatch(labels)
pm.BackupRestoreFromStorageDurations.DeletePartialMatch(labels)
pm.BackupStoreDurations.DeletePartialMatch(labels)
pm.BackupRestoreDataTransferred.DeletePartialMatch(labels)
pm.BackupStoreDataTransferred.DeletePartialMatch(labels)
pm.QueriesFilteredVectorDurations.DeletePartialMatch(labels)
return nil
}
var (
msBuckets = []float64{10, 50, 100, 500, 1000, 5000}
metrics *PrometheusMetrics = nil
)
func init() {
metrics = newPrometheusMetrics()
}
func InitConfig(cfg config.Monitoring) {
metrics.Group = cfg.Group
}
func GetMetrics() *PrometheusMetrics {
return metrics
}
func newPrometheusMetrics() *PrometheusMetrics {
return &PrometheusMetrics{
BatchTime: promauto.NewHistogramVec(prometheus.HistogramOpts{
Name: "batch_durations_ms",
Help: "Duration in ms of a single batch",
Buckets: msBuckets,
}, []string{"operation", "class_name", "shard_name"}),
BatchDeleteTime: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "batch_delete_durations_ms",
Help: "Duration in ms of a single delete batch",
}, []string{"operation", "class_name", "shard_name"}),
ObjectsTime: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "objects_durations_ms",
Help: "Duration of an individual object operation. Also as part of batches.",
}, []string{"operation", "step", "class_name", "shard_name"}),
ObjectCount: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "object_count",
Help: "Number of currently ongoing async operations",
}, []string{"class_name", "shard_name"}),
QueriesCount: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "concurrent_queries_count",
Help: "Number of concurrently running query operations",
}, []string{"class_name", "query_type"}),
RequestsTotal: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "requests_total",
Help: "Number of all requests made",
}, []string{"status", "class_name", "api", "query_type"}),
QueriesDurations: promauto.NewHistogramVec(prometheus.HistogramOpts{
Name: "queries_durations_ms",
Help: "Duration of queries in milliseconds",
Buckets: msBuckets,
}, []string{"class_name", "query_type"}),
QueriesFilteredVectorDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "queries_filtered_vector_durations_ms",
Help: "Duration of queries in milliseconds",
}, []string{"class_name", "shard_name", "operation"}),
GoroutinesCount: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "concurrent_goroutines",
Help: "Number of concurrently running goroutines",
}, []string{"class_name", "query_type"}),
AsyncOperations: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "async_operations_running",
Help: "Number of currently ongoing async operations",
}, []string{"operation", "class_name", "shard_name", "path"}),
// LSM metrics
LSMSegmentCount: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "lsm_active_segments",
Help: "Number of currently present segments per shard",
}, []string{"strategy", "class_name", "shard_name", "path"}),
LSMBloomFilters: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "lsm_bloom_filters_duration_ms",
Help: "Duration of bloom filter operations",
}, []string{"operation", "strategy", "class_name", "shard_name"}),
LSMSegmentObjects: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "lsm_segment_objects",
Help: "Number of objects/entries of segment by level",
}, []string{"strategy", "class_name", "shard_name", "path", "level"}),
LSMSegmentSize: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "lsm_segment_size",
Help: "Size of segment by level and unit",
}, []string{"strategy", "class_name", "shard_name", "path", "level", "unit"}),
LSMSegmentCountByLevel: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "lsm_segment_count",
Help: "Number of segments by level",
}, []string{"strategy", "class_name", "shard_name", "path", "level"}),
LSMMemtableSize: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "lsm_memtable_size",
Help: "Size of memtable by path",
}, []string{"strategy", "class_name", "shard_name", "path"}),
LSMMemtableDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "lsm_memtable_durations_ms",
Help: "Time in ms for a bucket operation to complete",
}, []string{"strategy", "class_name", "shard_name", "path", "operation"}),
// Vector index metrics
VectorIndexTombstones: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "vector_index_tombstones",
Help: "Number of active vector index tombstones",
}, []string{"class_name", "shard_name"}),
VectorIndexTombstoneCleanupThreads: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "vector_index_tombstone_cleanup_threads",
Help: "Number of threads in use to clean up tombstones",
}, []string{"class_name", "shard_name"}),
VectorIndexTombstoneCleanedCount: promauto.NewCounterVec(prometheus.CounterOpts{
Name: "vector_index_tombstone_cleaned",
Help: "Total number of deleted objects that have been cleaned up",
}, []string{"class_name", "shard_name"}),
VectorIndexOperations: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "vector_index_operations",
Help: "Total number of mutating operations on the vector index",
}, []string{"operation", "class_name", "shard_name"}),
VectorIndexSize: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "vector_index_size",
Help: "The size of the vector index. Typically larger than number of vectors, as it grows proactively.",
}, []string{"class_name", "shard_name"}),
VectorIndexMaintenanceDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "vector_index_maintenance_durations_ms",
Help: "Duration of a sync or async vector index maintenance operation",
}, []string{"operation", "class_name", "shard_name"}),
VectorIndexDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "vector_index_durations_ms",
Help: "Duration of typical vector index operations (insert, delete)",
}, []string{"operation", "step", "class_name", "shard_name"}),
VectorDimensionsSum: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "vector_dimensions_sum",
Help: "Total dimensions in a shard",
}, []string{"class_name", "shard_name"}),
VectorSegmentsSum: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "vector_segments_sum",
Help: "Total segments in a shard if quantization enabled",
}, []string{"class_name", "shard_name"}),
// Startup metrics
StartupProgress: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "startup_progress",
Help: "A ratio (percentage) of startup progress for a particular component in a shard",
}, []string{"operation", "class_name", "shard_name"}),
StartupDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "startup_durations_ms",
Help: "Duration of individual startup operations in ms",
}, []string{"operation", "class_name", "shard_name"}),
StartupDiskIO: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "startup_diskio_throughput",
Help: "Disk I/O throuhput in bytes per second",
}, []string{"operation", "class_name", "shard_name"}),
QueryDimensions: promauto.NewCounterVec(prometheus.CounterOpts{
Name: "query_dimensions_total",
Help: "The vector dimensions used by any read-query that involves vectors",
}, []string{"query_type", "operation", "class_name"}),
QueryDimensionsCombined: promauto.NewCounter(prometheus.CounterOpts{
Name: "query_dimensions_combined_total",
Help: "The vector dimensions used by any read-query that involves vectors, aggregated across all classes and shards. The sum of all labels for query_dimensions_total should always match this labelless metric",
}),
// Backup/restore metrics
BackupRestoreDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "backup_restore_ms",
Help: "Duration of a backup restore",
}, []string{"backend_name", "class_name"}),
BackupRestoreClassDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "backup_restore_class_ms",
Help: "Duration restoring class",
}, []string{"class_name"}),
BackupRestoreBackupInitDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "backup_restore_init_ms",
Help: "startup phase of a backup restore",
}, []string{"backend_name", "class_name"}),
BackupRestoreFromStorageDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "backup_restore_from_backend_ms",
Help: "file transfer stage of a backup restore",
}, []string{"backend_name", "class_name"}),
BackupStoreDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "backup_store_to_backend_ms",
Help: "file transfer stage of a backup restore",
}, []string{"backend_name", "class_name"}),
BucketPauseDurations: promauto.NewSummaryVec(prometheus.SummaryOpts{
Name: "bucket_pause_durations_ms",
Help: "bucket pause durations",
}, []string{"bucket_dir"}),
BackupRestoreDataTransferred: promauto.NewCounterVec(prometheus.CounterOpts{
Name: "backup_restore_data_transferred",
Help: "Total number of bytes transferred during a backup restore",
}, []string{"backend_name", "class_name"}),
BackupStoreDataTransferred: promauto.NewCounterVec(prometheus.CounterOpts{
Name: "backup_store_data_transferred",
Help: "Total number of bytes transferred during a backup store",
}, []string{"backend_name", "class_name"}),
// Shard metrics
ShardsLoaded: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "shards_loaded",
Help: "Number of shards loaded",
}, []string{"class_name"}),
ShardsUnloaded: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "shards_unloaded",
Help: "Number of shards on not loaded",
}, []string{"class_name"}),
ShardsLoading: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "shards_loading",
Help: "Number of shards in process of loading",
}, []string{"class_name"}),
ShardsUnloading: promauto.NewGaugeVec(prometheus.GaugeOpts{
Name: "shards_unloading",
Help: "Number of shards in process of unloading",
}, []string{"class_name"}),
}
}
type OnceUponATimer struct {
sync.Once
Timer *prometheus.Timer
}
func NewOnceTimer(promTimer *prometheus.Timer) *OnceUponATimer {
o := OnceUponATimer{}
o.Timer = promTimer
return &o
}
func (o *OnceUponATimer) ObserveDurationOnce() {
o.Do(func() {
o.Timer.ObserveDuration()
})
}
|