2021-11-03 19:27:24 +08:00
|
|
|
// 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.
|
|
|
|
|
2021-05-21 21:48:04 +08:00
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
2022-04-12 20:11:34 +08:00
|
|
|
|
2021-12-23 11:39:10 +08:00
|
|
|
// nolint:gosec
|
|
|
|
_ "net/http/pprof"
|
|
|
|
|
2022-10-13 10:37:23 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/management"
|
2021-06-01 11:04:31 +08:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2021-05-21 21:48:04 +08:00
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
|
|
)
|
|
|
|
|
2021-06-01 16:10:32 +08:00
|
|
|
const (
|
2021-12-13 10:31:17 +08:00
|
|
|
milvusNamespace = "milvus"
|
2022-03-02 16:23:55 +08:00
|
|
|
|
|
|
|
AbandonLabel = "abandon"
|
2022-03-03 16:05:57 +08:00
|
|
|
SuccessLabel = "success"
|
|
|
|
FailLabel = "fail"
|
|
|
|
TotalLabel = "total"
|
2022-03-02 16:23:55 +08:00
|
|
|
|
2022-03-03 16:05:57 +08:00
|
|
|
InsertLabel = "insert"
|
|
|
|
DeleteLabel = "delete"
|
2022-03-02 16:23:55 +08:00
|
|
|
SearchLabel = "search"
|
|
|
|
QueryLabel = "query"
|
|
|
|
|
|
|
|
CacheHitLabel = "hit"
|
|
|
|
CacheMissLabel = "miss"
|
2022-03-03 16:05:57 +08:00
|
|
|
|
|
|
|
UnissuedIndexTaskLabel = "unissued"
|
|
|
|
InProgressIndexTaskLabel = "in-progress"
|
|
|
|
FinishedIndexTaskLabel = "finished"
|
|
|
|
FailedIndexTaskLabel = "failed"
|
|
|
|
RecycledIndexTaskLabel = "recycled"
|
|
|
|
|
2022-03-15 21:51:21 +08:00
|
|
|
SealedSegmentLabel = "Sealed"
|
|
|
|
GrowingSegmentLabel = "Growing"
|
|
|
|
FlushedSegmentLabel = "Flushed"
|
|
|
|
FlushingSegmentLabel = "Flushing"
|
|
|
|
DropedSegmentLabel = "Dropped"
|
|
|
|
|
|
|
|
nodeIDLabelName = "node_id"
|
|
|
|
statusLabelName = "status"
|
|
|
|
indexTaskStatusLabelName = "index_task_status"
|
|
|
|
msgTypeLabelName = "msg_type"
|
|
|
|
collectionIDLabelName = "collection_id"
|
|
|
|
channelNameLabelName = "channel_name"
|
|
|
|
functionLabelName = "function_name"
|
|
|
|
queryTypeLabelName = "query_type"
|
2022-10-18 19:17:27 +08:00
|
|
|
collectionName = "collection_name"
|
2022-04-27 23:03:47 +08:00
|
|
|
segmentStateLabelName = "segment_state"
|
2022-04-11 19:49:34 +08:00
|
|
|
usernameLabelName = "username"
|
2022-08-04 11:04:34 +08:00
|
|
|
rolenameLabelName = "role_name"
|
2022-04-27 23:03:47 +08:00
|
|
|
cacheNameLabelName = "cache_name"
|
|
|
|
cacheStateLabelName = "cache_state"
|
2022-03-03 16:05:57 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// buckets involves durations in milliseconds,
|
|
|
|
// [1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768 65536 1.31072e+05]
|
|
|
|
buckets = prometheus.ExponentialBuckets(1, 2, 18)
|
2021-06-01 16:10:32 +08:00
|
|
|
)
|
|
|
|
|
2022-10-13 10:37:23 +08:00
|
|
|
//Register serves prometheus http service
|
|
|
|
func Register(r *prometheus.Registry) {
|
|
|
|
management.Register(&management.HTTPHandler{
|
|
|
|
Path: "/metrics",
|
|
|
|
Handler: promhttp.HandlerFor(r, promhttp.HandlerOpts{}),
|
|
|
|
})
|
|
|
|
management.Register(&management.HTTPHandler{
|
|
|
|
Path: "/metrics_default",
|
|
|
|
Handler: promhttp.Handler(),
|
|
|
|
})
|
2022-04-12 20:11:34 +08:00
|
|
|
}
|