Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

170 lines
4.6 KiB
Go

package metricsutil
import (
"fmt"
"time"
"github.com/milvus-io/milvus/pkg/v3/mlog"
"github.com/milvus-io/milvus/pkg/v3/streaming/util/message"
"github.com/milvus-io/milvus/pkg/v3/streaming/util/types"
)
const (
maxLogged = 3
logThreshold = 10 * time.Millisecond
)
type InterceptorMetrics struct {
Before time.Duration
BeforeErr error
After time.Duration
}
func (im *InterceptorMetrics) ShouldBeLogged() bool {
return im.Before > logThreshold || im.After > logThreshold || im.BeforeErr != nil
}
func (im *InterceptorMetrics) String() string {
return fmt.Sprintf("b:%s,a:%s,err:%s", im.Before, im.After, im.BeforeErr)
}
// AppendMetrics is the metrics for append operation.
type AppendMetrics struct {
wm *WriteMetrics
msg message.MutableMessage
result *types.AppendResult
err error
appendDuration time.Duration
implAppendDuration time.Duration
interceptors map[string][]*InterceptorMetrics
}
type AppendMetricsGuard struct {
inner *AppendMetrics
startAppend time.Time
startImplAppend time.Time
}
// StartInterceptorCollector start the interceptor to collect the duration.
func (m *AppendMetrics) StartInterceptorCollector(name string) *InterceptorCollectGuard {
if _, ok := m.interceptors[name]; !ok {
m.interceptors[name] = make([]*InterceptorMetrics, 0, 2)
}
im := &InterceptorMetrics{}
m.interceptors[name] = append(m.interceptors[name], im)
return &InterceptorCollectGuard{
start: time.Now(),
afterStarted: false,
interceptor: im,
}
}
// StartAppendGuard start the append operation.
func (m *AppendMetrics) StartAppendGuard() *AppendMetricsGuard {
return &AppendMetricsGuard{
inner: m,
startAppend: time.Now(),
}
}
// IntoLogFields convert the metrics to log fields.
func (m *AppendMetrics) IntoLogFields() []mlog.Field {
fields := []mlog.Field{
mlog.FieldMessage(m.msg),
mlog.Duration("duration", m.appendDuration),
mlog.Duration("implDuration", m.implAppendDuration),
}
if m.err != nil {
fields = append(fields, mlog.Err(m.err))
} else {
fields = append(fields, mlog.String("messageID", m.result.MessageID.String()))
fields = append(fields, mlog.String("lcMessageID", m.result.LastConfirmedMessageID.String()))
fields = append(fields, mlog.Uint64("timetick", m.result.TimeTick))
if m.result.TxnCtx != nil {
fields = append(fields, mlog.Int64("txnID", int64(m.result.TxnCtx.TxnID)))
}
}
loggedInterceptorCount := 0
L:
for name, ims := range m.interceptors {
for i, im := range ims {
if !im.ShouldBeLogged() {
continue
}
if loggedInterceptorCount <= maxLogged {
fields = append(fields, mlog.Stringer(fmt.Sprintf("%s_%d", name, i), im))
loggedInterceptorCount++
}
if loggedInterceptorCount >= maxLogged {
break L
}
}
}
return fields
}
// StartWALImplAppend start the implementation append operation.
func (m *AppendMetricsGuard) StartWALImplAppend() {
m.startImplAppend = time.Now()
}
// FinishImplAppend finish the implementation append operation.
func (m *AppendMetricsGuard) FinishWALImplAppend() {
m.inner.implAppendDuration = time.Since(m.startImplAppend)
}
// FinishAppend finish the append operation.
func (m *AppendMetricsGuard) FinishAppend() {
m.inner.appendDuration = time.Since(m.startAppend)
}
// RangeOverInterceptors range over the interceptors.
func (m *AppendMetrics) RangeOverInterceptors(f func(name string, ims []*InterceptorMetrics)) {
for name, ims := range m.interceptors {
f(name, ims)
}
}
// Done push the metrics.
func (m *AppendMetrics) Done(result *types.AppendResult, err error) {
m.err = err
m.result = result
m.wm.done(m)
}
// InterceptorCollectGuard is used to collect the metrics of interceptor.
type InterceptorCollectGuard struct {
start time.Time
afterStarted bool
interceptor *InterceptorMetrics
}
// BeforeDone mark the before append operation is done.
func (g *InterceptorCollectGuard) BeforeDone() {
g.interceptor.Before = time.Since(g.start)
}
// BeforeFailure mark the operation before append is failed.
func (g *InterceptorCollectGuard) BeforeFailure(err error) {
if g.interceptor.Before == 0 {
// if before duration is not set, means the operation is failed before the interceptor.
g.interceptor.Before = time.Since(g.start)
g.interceptor.BeforeErr = err
}
}
// AfterStart mark the after append operation is started.
func (g *InterceptorCollectGuard) AfterStart() {
g.start = time.Now()
g.afterStarted = true
}
// AfterDone mark the after append operation is done.
func (g *InterceptorCollectGuard) AfterDone() {
if g.afterStarted {
g.interceptor.After += time.Since(g.start)
}
}