代码拉取完成,页面将自动刷新
/*
* Licensed to the Apache Software Foundation (ASF) 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 metrics
import (
"gitee.com/git4chen/dubbo-go/common"
"gitee.com/git4chen/dubbo-go/common/constant"
)
type MetricKey struct {
Name string
Desc string
}
func NewMetricKey(name string, desc string) *MetricKey {
return &MetricKey{Name: name, Desc: desc}
}
type MetricLevel interface {
Tags() map[string]string
}
type ApplicationMetricLevel struct {
ApplicationName string
Version string
GitCommitId string
Ip string
HostName string
}
var applicationName string
var applicationVersion string
// cannot import rootConfig,may cause cycle import,so be it
func InitAppInfo(appName string, appVersion string) {
applicationName = appName
applicationVersion = appVersion
}
func GetApplicationLevel() *ApplicationMetricLevel {
return &ApplicationMetricLevel{
ApplicationName: applicationName,
Version: applicationVersion,
Ip: common.GetLocalIp(),
HostName: common.GetLocalHostName(),
GitCommitId: "",
}
}
func (m *ApplicationMetricLevel) Tags() map[string]string {
tags := make(map[string]string)
tags[constant.TagIp] = m.Ip
tags[constant.TagHostname] = m.HostName
tags[constant.TagApplicationName] = m.ApplicationName
tags[constant.TagApplicationVersion] = m.Version
tags[constant.TagGitCommitId] = m.GitCommitId
return tags
}
type ServiceMetricLevel struct {
*ApplicationMetricLevel
Interface string
}
func NewServiceMetric(interfaceName string) *ServiceMetricLevel {
return &ServiceMetricLevel{ApplicationMetricLevel: GetApplicationLevel(), Interface: interfaceName}
}
func (m ServiceMetricLevel) Tags() map[string]string {
tags := m.ApplicationMetricLevel.Tags()
tags[constant.TagInterface] = m.Interface
return tags
}
type MethodMetricLevel struct {
*ServiceMetricLevel
Method string
Group string
Version string
}
func (m MethodMetricLevel) Tags() map[string]string {
tags := m.ServiceMetricLevel.Tags()
tags[constant.TagMethod] = m.Method
tags[constant.TagGroup] = m.Group
tags[constant.TagVersion] = m.Version
return tags
}
type ConfigCenterLevel struct {
ApplicationName string
Ip string
HostName string
Key string
Group string
ConfigCenter string
ChangeType string
}
func NewConfigCenterLevel(key string, group string, configCenter string, changeType string) *ConfigCenterLevel {
return &ConfigCenterLevel{
ApplicationName: applicationName,
Ip: common.GetLocalIp(),
HostName: common.GetLocalHostName(),
Key: key,
Group: group,
ConfigCenter: configCenter,
ChangeType: changeType,
}
}
func (l ConfigCenterLevel) Tags() map[string]string {
tags := make(map[string]string)
tags[constant.TagApplicationName] = l.ApplicationName
tags[constant.TagIp] = l.Ip
tags[constant.TagHostname] = l.HostName
tags[constant.TagKey] = l.Key
tags[constant.TagGroup] = l.Group
tags[constant.TagConfigCenter] = l.ConfigCenter
tags[constant.TagChangeType] = l.ChangeType
return tags
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。