【环球报资讯】【prometheus】-04 轻松搞定Prometheus Eureka服务发现
Prometheus服务发现机制之Eureka
概述
Eureka服务发现协议允许使用Eureka Rest API
检索出Prometheus需要监控的targets,Prometheus会定时周期性的从Eureka调用Eureka Rest API
,并将每个应用实例创建出一个target。
(资料图片仅供参考)
Eureka服务发现协议支持对如下元标签进行relabeling
:
__meta_eureka_app_name
: the name of the app__meta_eureka_app_instance_id
: the ID of the app instance__meta_eureka_app_instance_hostname
: the hostname of the instance__meta_eureka_app_instance_homepage_url
: the homepage url of the app instance__meta_eureka_app_instance_statuspage_url
: the status page url of the app instance__meta_eureka_app_instance_healthcheck_url
: the health check url of the app instance__meta_eureka_app_instance_ip_addr
: the IP address of the app instance__meta_eureka_app_instance_vip_address
: the VIP address of the app instance__meta_eureka_app_instance_secure_vip_address
: the secure VIP address of the app instance__meta_eureka_app_instance_status
: the status of the app instance__meta_eureka_app_instance_port
: the port of the app instance__meta_eureka_app_instance_port_enabled
: the port enabled of the app instance__meta_eureka_app_instance_secure_port
: the secure port address of the app instance__meta_eureka_app_instance_secure_port_enabled
: the secure port of the app instance__meta_eureka_app_instance_country_id
: the country ID of the app instance__meta_eureka_app_instance_metadata_
: app instance metadata__meta_eureka_app_instance_datacenterinfo_name
: the datacenter name of the app instance__meta_eureka_app_instance_datacenterinfo_
: the datacenter metadataeureka_sd_configs
配置可选项如下:
# The URL to connect to the Eureka server.server: # Sets the `Authorization` header on every request with the# configured username and password.# password and password_file are mutually exclusive.basic_auth: [ username: ] [ password: ] [ password_file: ]# Optional `Authorization` header configuration.authorization: # Sets the authentication type. [ type: | default: Bearer ] # Sets the credentials. It is mutually exclusive with # `credentials_file`. [ credentials: ] # Sets the credentials to the credentials read from the configured file. # It is mutually exclusive with `credentials`. [ credentials_file: ]# Optional OAuth 2.0 configuration.# Cannot be used at the same time as basic_auth or authorization.oauth2: [ ]# Configures the scrape request"s TLS settings.tls_config: [ ]# Optional proxy URL.[ proxy_url: ]# Configure whether HTTP requests follow HTTP 3xx redirects.[ follow_redirects: | default = true ]# Refresh interval to re-read the app instance list.[ refresh_interval: | default = 30s ]
协议分析
通过前面分析的Prometheus服务发现原理以及基于文件方式服务发现协议实现的分析,Eureka服务发现大致原理如下图:
通过解析配置中eureka_sd_configs
协议的job生成Config,然后NewDiscovery
方法创建出对应的Discoverer
,最后调用Discoverer.Run()
方法启动服务发现targets。
1、基于文件服务发现配置解析
假如我们定义如下job:
- job_name: "eureka" eureka_sd_configs: - server: http://localhost:8761/eureka
会被解析成eureka.SDConfig
如下:
eureka.SDConfig
定义如下:
type SDConfig struct { // eureka-server地址 Server string `yaml:"server,omitempty"` // http请求client配置,如:认证信息 HTTPClientConfig config.HTTPClientConfig `yaml:",inline"` // 周期刷新间隔,默认30s RefreshInterval model.Duration `yaml:"refresh_interval,omitempty"`}
2、Discovery
创建
func NewDiscovery(conf *SDConfig, logger log.Logger) (*Discovery, error) { rt, err := config.NewRoundTripperFromConfig(conf.HTTPClientConfig, "eureka_sd", config.WithHTTP2Disabled()) if err != nil { return nil, err } d := &Discovery{ client: &http.Client{Transport: rt}, server: conf.Server, } d.Discovery = refresh.NewDiscovery( logger, "eureka", time.Duration(conf.RefreshInterval), d.refresh, ) return d, nil}
3、Discovery
创建完成,最后会调用Discovery.Run()
启动服务发现:
和上一节分析的服务发现之File机制类似,执行Run方法时会执行tgs, err := d.refresh(ctx)
,然后创建定时周期触发器,不停执行tgs, err := d.refresh(ctx)
,将返回的targets
结果信息通过channel传递出去。
4、上面Run
方法核心是调用d.refresh(ctx)
逻辑获取targets
,基于Eureka
发现协议主要实现逻辑就在这里:
func (d *Discovery) refresh(ctx context.Context) ([]*targetgroup.Group, error) { // 通过Eureka REST API接口从eureka拉取元数据:http://ip:port/eureka/apps apps, err := fetchApps(ctx, d.server, d.client) if err != nil { return nil, err } tg := &targetgroup.Group{ Source: "eureka", } for _, app := range apps.Applications {//遍历app // targetsForApp()方法将app下每个instance部分转成target targets := targetsForApp(&app) //假如到 tg.Targets = append(tg.Targets, targets...) } return []*targetgroup.Group{tg}, nil}
refresh
方法主要有两个流程:
1、fetchApps()
:从eureka-server
的/eureka/apps
接口拉取注册服务信息;
2、targetsForApp()
:遍历app
下instance
,将每个instance
解析出一个target
,并添加一堆元标签数据。
如下就是从eureka-server的/eureka/apps接口拉取的注册服务信息:
1 UP_1_ SERVICE-PROVIDER-01 localhost:service-provider-01:8001 192.168.3.121 SERVICE-PROVIDER-01 192.168.3.121 UP UNKNOWN 8001 443 1 MyOwn 30 90 1629385562130 1629385682050 0 1629385562132 8001 true 8080 http://192.168.3.121:8001/ http://192.168.3.121:8001/actuator/info http://192.168.3.121:8001/actuator/health service-provider-01 service-provider-01 false 1629385562132 1629385562039 ADDED
5、instance
信息解析target
:
func targetsForApp(app *Application) []model.LabelSet { targets := make([]model.LabelSet, 0, len(app.Instances)) // Gather info about the app"s "instances". Each instance is considered a task. for _, t := range app.Instances { var targetAddress string // __address__取值方式:instance.hostname和port,没有port则默认port=80 if t.Port != nil { targetAddress = net.JoinHostPort(t.HostName, strconv.Itoa(t.Port.Port)) } else { targetAddress = net.JoinHostPort(t.HostName, "80") } target := model.LabelSet{ model.AddressLabel: lv(targetAddress), model.InstanceLabel: lv(t.InstanceID), appNameLabel: lv(app.Name), appInstanceHostNameLabel: lv(t.HostName), appInstanceHomePageURLLabel: lv(t.HomePageURL), appInstanceStatusPageURLLabel: lv(t.StatusPageURL), appInstanceHealthCheckURLLabel: lv(t.HealthCheckURL), appInstanceIPAddrLabel: lv(t.IPAddr), appInstanceVipAddressLabel: lv(t.VipAddress), appInstanceSecureVipAddressLabel: lv(t.SecureVipAddress), appInstanceStatusLabel: lv(t.Status), appInstanceCountryIDLabel: lv(strconv.Itoa(t.CountryID)), appInstanceIDLabel: lv(t.InstanceID), } if t.Port != nil { target[appInstancePortLabel] = lv(strconv.Itoa(t.Port.Port)) target[appInstancePortEnabledLabel] = lv(strconv.FormatBool(t.Port.Enabled)) } if t.SecurePort != nil { target[appInstanceSecurePortLabel] = lv(strconv.Itoa(t.SecurePort.Port)) target[appInstanceSecurePortEnabledLabel] = lv(strconv.FormatBool(t.SecurePort.Enabled)) } if t.DataCenterInfo != nil { target[appInstanceDataCenterInfoNameLabel] = lv(t.DataCenterInfo.Name) if t.DataCenterInfo.Metadata != nil { for _, m := range t.DataCenterInfo.Metadata.Items { ln := strutil.SanitizeLabelName(m.XMLName.Local) target[model.LabelName(appInstanceDataCenterInfoMetadataPrefix+ln)] = lv(m.Content) } } } if t.Metadata != nil { for _, m := range t.Metadata.Items { // prometheus label只支持[^a-zA-Z0-9_]字符,其它非法字符都会被替换成下划线_ ln := strutil.SanitizeLabelName(m.XMLName.Local) target[model.LabelName(appInstanceMetadataPrefix+ln)] = lv(m.Content) } } targets = append(targets, target) } return targets}
解析比较简单,就不再分析,解析后的标签数据如下图:
标签中有两个特别说明下:
1、__address__
:这个取值instance.hostname和port(默认80),所以要注意注册到eureka上的hostname准确性,不然可能无法抓取;
2、metadata-map
数据会被转成__meta_eureka_app_instance_metadata_
格式标签,prometheus
进行relabeling
一般操作metadata-map
,可以自定义metric_path
、抓取端口等;
3、prometheus
的label
只支持[a-zA-Z0-9_]
,其它非法字符都会被转换成下划线,具体参加:strutil.SanitizeLabelName(m.XMLName.Local)
;但是eureka的metadata-map标签含有下划线时,注册到eureka-server上变成双下划线,如下配置:
eureka: instance: metadata-map: scrape_enable: true scrape.port: 8080
通过/eureka/apps获取如下:
总结
基于Eureka方式的服务原理如下图:
大概说明:Discoverer
启动后定时周期触发从eureka server
的/eureka/apps
接口拉取注册服务元数据,然后通过targetsForApp
遍历app
下的instance
,将每个instance
解析成target
,并将其它元数据信息转换成target
原标签可以用于target
抓取前relabeling
操作。
标签:
推荐
- 专访郑州航空工业管理工程学院副院长宋志刚:物流枢纽间的竞争将愈加激烈
- 光储充算一体化发展亟待提速!记者实测“一秒一公里”超级储充
- 瑞德智能董秘回复:公司已拥有逆变器等新能源产品的发明专利和实用新型专利
- 单片机代码不变,hex却变了?
- 存储芯片下行周期有望见底 A股上市公司加速布局
- 当赛季包揽助攻王+FMVP:历史仅詹姆斯和魔术师两人
- 「图解牛熊股」本周最牛股大涨逾110% 华为、芯片板块涨幅“遥遥领先”
- 茶村(关于茶村简述)
- 盘活乡村“沉睡”资源 塘垭山礼野奢帐篷营地“花开”武陵源
- 科幻作家陈楸帆:科技发展遵循曲线规律 以想象力战胜周期
- 中国云市场半年观察:运营商中程发力,下沉市场价格鏖战,打好AI牌成为制胜关键?
- 懂车帝发布年轻用户汽车洞察报告 00后比90后更青睐国产品牌和新能源车
- 消息称出口车型去除车尾英文标语 比亚迪回应:部分车型更改
- 用手机做什么可以挣钱(用手机做什么赚钱)
- 段向东与阿联酋环球铝业首席执行官阿卜杜纳赛尔•卡班举行视频会谈
- 涡轮增压器存在隐患 部分进口奥迪汽车被召回
- 陕西能源:9月7日融资买入723.58万元,融资融券余额3.25亿元
- 都市新闻版责任编辑
- 英派斯(002899):9月8日技术指标出现观望信号-“黑三兵”
- 受超强台风“苏拉”影响,香港数百航班取消
- 莘野(关于莘野简述)
- 我国载人航天工程全线拥有4000多件发明专利 广泛应用于各行各业
- 新鲜出炉!2023年海南自贸区上市龙头企业有哪些?(9月1日)
- 助人,让社会更美好议论文
- 鹿城夜跑欢乐童行 三亚夏日亲子季圆满落幕
- 山高新能源(01250)中标山东省菏泽市某标段风电项目
- 这支视障青年组建的本土乐队即将开启秋天的第一场演唱会
- 爱帝宫(00286.HK)中期股东应占亏损收窄61.54%至2365.6万港元
- undertale com undertale au官网
- 奏响就业曲 打通致富路——来自新疆阿克苏地区的一线调研
- 厦门市:实施首套房贷款“认房不用认贷”政策
- 机构观点:加蓬国内局势突变预计不会影响油市
- 观影《孤注一掷》,宝鸡高新公安警民共赴“反诈之约”
- 骁龙765g与尺寸1000plus的性能对比
- 东亚银行(00023.HK)回购19.92万股 涉资约222.83万港元
- TCL流媒体服务TCLtv+北美上线,Google TV电视用户可免费收看
- 王清宪主持召开省政府第十八次常务会议
- 鲁山县花715万元建牛郎织女雕塑 最新通报:县住建局局长免职
- 三国名马和马主人(三国名马)
- 二季度机构持股新动向!“宁王”取代茅台 成最受青睐个股!
- 2023年8月30日乙二醛水溶液价格最新行情预测
- 你可知道这样会让我心碎什么歌(“你可知道这样会让我心碎”是哪首歌里的歌词)
- 美机构研发出能杀死所有实体癌瘤的药物
- 365天免布线插电 乐橙智能Wi-Fi电池球机K9E正式上市 具体是什么情况?
- 旅马大熊猫谊谊、升谊抵川:状态平稳,将隔离检疫30天
- 里昂:上调海底捞评级至“跑赢大市” 目标价升至24.8港元
- 无关三镇!名记李璇:今天能等个通报!球迷:某球队或被取消冠军
- 德钦县开展全国经济普查单位清查业务培训
- 《正是橙黄橘绿时》第四章 一万种夜莺-4
- 「产业互联网周报」ARM向美国证交会提交IPO申请;钉钉首次公布商业化核心进展;阿里云开源通义千问多模态大模型Qwen-VL
- 国际识局:中美建立“新沟通渠道”,释放哪些重要信号?
- 关于传国玉玺的记载 可能是中国最搞笑的伪史
- 联动科技(301369):8月29日北向资金增持31万股
- 北京宏福苑小区二手房价格(北京宏福苑北区二手房)
- 8月29日盟固利(301487)龙虎榜数据:游资上海溧阳路上榜
- 金融助力文旅复苏,2023全省金融服务与文旅企业恳谈对接会在遂宁举行
- 抖音陈奕迅演唱会主持人 抖音陈奕迅
- 国际看点|毒品吸食者成群 美国肯辛顿大道如上演僵尸电影!
- 东方甄选淘宝首秀“翻车”:烟薯红包标错紧急下架,官方认赔
- 安科瑞:已与东南亚和欧洲市场当地系统代理商合作
- 郏县:心系师生出行难 修路便民暖人心
- 全明星街球派对球员强度排行榜
- 金石亚药:2023年上半年扣非归母净利翻倍增长,核心产品需求大幅增加
- 中国烟草,紧急声明
- 西甲-格列兹曼闪袭莫拉塔梅开二度 马竞6人破门7-0血洗
- 火车站旅客醉酒担心财物遗失,找到民警“求保管”
- 三大基地全面投产运行 富煌钢构上半年净利润增长23%
- 中报观察 | 商汤大模型争流
- 德必集团:上半年营收5.23亿元 同比增长28.84%
- 华友钴业跌6.64% 中泰证券在其高位喊买入
- 河南研学游成主流 郑州开封洛阳迎来强势反弹
- 金杯v19 p0340故障码排除方法
- 农发行湖北省分行 绘就荆楚和美乡村崭新画卷
- 短期重磅利好,中长期仍要回归基本面
- 美银证券:维持华润燃气“买入”评级 目标价降至28.5港元
- 【镜头里的青海】云端之上瞰西宁
- 政策“组合拳” 提振投资者信心
- 每年让利基民142亿,超百家公募献上“诚意”,是何信号?
- 呼和浩特加快实施“智慧乳业”行动
- 近似数的概念初中(近似数的概念)
- 酸菜肉片汤的家常做法(酸菜肉片)
- 争光股份(301092.SZ)半年报净利润5134.44万元,同比增长7.49%
- 起亚EV6上市!硬核科技大秀成都车展!
- 仇保兴:京津冀都市圈应建立空间协调落实机制,不能光画图不落实|快讯
- 什么叫股指期货交易
- 总储架规模5.27亿元,首期发行1亿元!全国首单技术产权(技术交易)ABS上市交易
- 全球大米价格飙升!世界最大大米出口国又出手了
- 火影忍者炎之中忍试验!鸣人VS木叶丸!!(火影忍者炎之中忍试验)
- 普特彼他克莫司软膏治疗什么(普特彼)
- 山水比德董秘回复:作为美丽中国与生态文明的探索者与践行者,公司近年来布局全国20+城市
- 小组赛-比塔泽15+10 格鲁吉亚轻取佛得角取开门红
- 本周生猪价格微降,机构称当前市场需求相对有限
- 菲律宾电子签证系统率先在上海试行
- 业界热议大模型落地金融业:创新应用场景 加快数字化转型
- 离婚案一方不同意离婚怎么办呢?
- 康冠科技08月25日获深股通增持2.31万股
- 中国(河北)—韩国生态环境产业对接交流会举行 河北现场签约总投资约218.24亿元
- 08月25日猪评: 全面暂停进口水产品,猪价或将迎来上涨?
- 西子洁能(002534)周评:本周跌6.85%,主力资金合计净流出2131.67万元
- 女性占西藏高级专业技术人员42.9%
X 关闭
行业规章
X 关闭