ADAPT-Chase's picture
Add files using upload-large-folder tool
e89cd08 verified
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved.
//
// CONTACT: hello@weaviate.io
//
package monitoring
// Move the shard from unloaded to in progress
func (pm *PrometheusMetrics) StartLoadingShard() {
if pm == nil {
return
}
pm.ShardsUnloaded.Dec()
pm.ShardsLoading.Inc()
}
// Move the shard from in progress to loaded
func (pm *PrometheusMetrics) FinishLoadingShard() {
if pm == nil {
return
}
pm.ShardsLoading.Dec()
pm.ShardsLoaded.Inc()
}
// Move the shard from loaded to in progress
func (pm *PrometheusMetrics) StartUnloadingShard() {
if pm == nil {
return
}
pm.ShardsLoaded.Dec()
pm.ShardsUnloading.Inc()
}
// Move the shard from in progress to unloaded
func (pm *PrometheusMetrics) FinishUnloadingShard() {
if pm == nil {
return
}
pm.ShardsUnloading.Dec()
pm.ShardsUnloaded.Inc()
}
// Register a new, unloaded shard
func (pm *PrometheusMetrics) NewUnloadedshard() {
if pm == nil {
return
}
pm.ShardsUnloaded.Inc()
}