mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
relate: https://github.com/milvus-io/milvus/issues/31823 Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
190 lines
3.9 KiB
Go
190 lines
3.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 info
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/requestutil"
|
|
)
|
|
|
|
const (
|
|
ContextUsername = "username"
|
|
ContextReturnCode = "code"
|
|
ContextReturnMessage = "message"
|
|
ContextRequest = "request"
|
|
)
|
|
|
|
type RestfulInfo struct {
|
|
params *gin.LogFormatterParams
|
|
start time.Time
|
|
req interface{}
|
|
reqInitOnce sync.Once
|
|
}
|
|
|
|
func NewRestfulInfo() *RestfulInfo {
|
|
return &RestfulInfo{start: time.Now()}
|
|
}
|
|
|
|
func (i *RestfulInfo) SetParams(p *gin.LogFormatterParams) {
|
|
i.params = p
|
|
}
|
|
|
|
func (i *RestfulInfo) InitReq() {
|
|
req, ok := i.params.Keys[ContextRequest]
|
|
if !ok {
|
|
return
|
|
}
|
|
i.req = req
|
|
}
|
|
|
|
func (i *RestfulInfo) TimeCost() string {
|
|
return fmt.Sprint(i.params.Latency)
|
|
}
|
|
|
|
func (i *RestfulInfo) TimeNow() string {
|
|
return time.Now().Format(timeFormat)
|
|
}
|
|
|
|
func (i *RestfulInfo) TimeStart() string {
|
|
if i.start.IsZero() {
|
|
return Unknown
|
|
}
|
|
return i.start.Format(timeFormat)
|
|
}
|
|
|
|
func (i *RestfulInfo) TimeEnd() string {
|
|
return i.params.TimeStamp.Format(timeFormat)
|
|
}
|
|
|
|
func (i *RestfulInfo) MethodName() string {
|
|
return i.params.Path
|
|
}
|
|
|
|
func (i *RestfulInfo) Address() string {
|
|
return i.params.ClientIP
|
|
}
|
|
|
|
func (i *RestfulInfo) TraceID() string {
|
|
traceID, ok := i.params.Keys["traceID"]
|
|
if !ok {
|
|
return Unknown
|
|
}
|
|
return traceID.(string)
|
|
}
|
|
|
|
func (i *RestfulInfo) MethodStatus() string {
|
|
if i.params.StatusCode != http.StatusOK {
|
|
return fmt.Sprintf("HttpError%d", i.params.StatusCode)
|
|
}
|
|
|
|
if code, ok := i.params.Keys[ContextReturnCode]; !ok || code.(int32) != 0 {
|
|
return "Failed"
|
|
}
|
|
|
|
return "Successful"
|
|
}
|
|
|
|
func (i *RestfulInfo) UserName() string {
|
|
username, ok := i.params.Keys[ContextUsername]
|
|
if !ok || username == "" {
|
|
return Unknown
|
|
}
|
|
|
|
return username.(string)
|
|
}
|
|
|
|
func (i *RestfulInfo) ResponseSize() string {
|
|
return fmt.Sprint(i.params.BodySize)
|
|
}
|
|
|
|
func (i *RestfulInfo) ErrorCode() string {
|
|
code, ok := i.params.Keys[ContextReturnCode]
|
|
if !ok {
|
|
return Unknown
|
|
}
|
|
return fmt.Sprint(code)
|
|
}
|
|
|
|
func (i *RestfulInfo) ErrorMsg() string {
|
|
message, ok := i.params.Keys[ContextReturnMessage]
|
|
if !ok {
|
|
return ""
|
|
}
|
|
return fmt.Sprint(message)
|
|
}
|
|
|
|
func (i *RestfulInfo) SdkVersion() string {
|
|
return "Restful"
|
|
}
|
|
|
|
func (i *RestfulInfo) DbName() string {
|
|
name, ok := requestutil.GetDbNameFromRequest(i.req)
|
|
if !ok {
|
|
return Unknown
|
|
}
|
|
return name.(string)
|
|
}
|
|
|
|
func (i *RestfulInfo) CollectionName() string {
|
|
name, ok := requestutil.GetCollectionNameFromRequest(i.req)
|
|
if !ok {
|
|
return Unknown
|
|
}
|
|
return name.(string)
|
|
}
|
|
|
|
func (i *RestfulInfo) PartitionName() string {
|
|
name, ok := requestutil.GetPartitionNameFromRequest(i.req)
|
|
if ok {
|
|
return name.(string)
|
|
}
|
|
|
|
names, ok := requestutil.GetPartitionNamesFromRequest(i.req)
|
|
if ok {
|
|
return fmt.Sprint(names.([]string))
|
|
}
|
|
|
|
return Unknown
|
|
}
|
|
|
|
func (i *RestfulInfo) Expression() string {
|
|
expr, ok := requestutil.GetExprFromRequest(i.req)
|
|
if ok {
|
|
return expr.(string)
|
|
}
|
|
|
|
dsl, ok := requestutil.GetDSLFromRequest(i.req)
|
|
if ok {
|
|
return dsl.(string)
|
|
}
|
|
return Unknown
|
|
}
|
|
|
|
func (i *RestfulInfo) OutputFields() string {
|
|
fields, ok := requestutil.GetOutputFieldsFromRequest(i.req)
|
|
if ok {
|
|
return fmt.Sprint(fields.([]string))
|
|
}
|
|
return Unknown
|
|
}
|