mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 10:59:32 +08:00
7384d83d2c
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
105 lines
2.9 KiB
Go
105 lines
2.9 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package metricsinfo
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
|
)
|
|
|
|
// RateMetricLabel defines the metric label collected from nodes.
|
|
type RateMetricLabel = string
|
|
|
|
const (
|
|
NQPerSecond RateMetricLabel = "NQPerSecond"
|
|
SearchThroughput RateMetricLabel = "SearchThroughput"
|
|
ReadResultThroughput RateMetricLabel = "ReadResultThroughput"
|
|
InsertConsumeThroughput RateMetricLabel = "InsertConsumeThroughput"
|
|
DeleteConsumeThroughput RateMetricLabel = "DeleteConsumeThroughput"
|
|
)
|
|
|
|
const (
|
|
SearchQueueMetric string = "SearchQueue"
|
|
QueryQueueMetric string = "QueryQueue"
|
|
)
|
|
|
|
const (
|
|
UnsolvedQueueType string = "Unsolved"
|
|
ReadyQueueType string = "Ready"
|
|
ReceiveQueueType string = "Receive"
|
|
ExecuteQueueType string = "Execute"
|
|
)
|
|
|
|
// RateMetric contains a RateMetricLabel and a float rate.
|
|
type RateMetric struct {
|
|
Label RateMetricLabel
|
|
Rate float64
|
|
}
|
|
|
|
// FlowGraphMetric contains a minimal timestamp of flow graph and the number of flow graphs.
|
|
type FlowGraphMetric struct {
|
|
MinFlowGraphChannel string
|
|
MinFlowGraphTt typeutil.Timestamp
|
|
NumFlowGraph int
|
|
}
|
|
|
|
// ReadInfoInQueue contains NQ num or task num in QueryNode's task queue.
|
|
type ReadInfoInQueue struct {
|
|
UnsolvedQueue int64
|
|
ReadyQueue int64
|
|
ReceiveChan int64
|
|
ExecuteChan int64
|
|
AvgQueueDuration time.Duration
|
|
}
|
|
|
|
// NodeEffect contains the a node and its effected collection info.
|
|
type NodeEffect struct {
|
|
NodeID int64
|
|
CollectionIDs []int64
|
|
}
|
|
|
|
// QueryNodeQuotaMetrics are metrics of QueryNode.
|
|
type QueryNodeQuotaMetrics struct {
|
|
Hms HardwareMetrics
|
|
Rms []RateMetric
|
|
Fgm FlowGraphMetric
|
|
SearchQueue ReadInfoInQueue
|
|
QueryQueue ReadInfoInQueue
|
|
GrowingSegmentsSize int64
|
|
Effect NodeEffect
|
|
}
|
|
|
|
type DataCoordQuotaMetrics struct {
|
|
TotalBinlogSize int64
|
|
CollectionBinlogSize map[int64]int64
|
|
}
|
|
|
|
// DataNodeQuotaMetrics are metrics of DataNode.
|
|
type DataNodeQuotaMetrics struct {
|
|
Hms HardwareMetrics
|
|
Rms []RateMetric
|
|
Fgm FlowGraphMetric
|
|
Effect NodeEffect
|
|
}
|
|
|
|
// ProxyQuotaMetrics are metrics of Proxy.
|
|
type ProxyQuotaMetrics struct {
|
|
Hms HardwareMetrics
|
|
Rms []RateMetric
|
|
}
|