3 月,跳不动了?>>> Netflix Eureka API 介绍

    NetFlix Eureka Server 是一个采用 http 协议的服务注册,发现中心。服务端通过 http 协议暴漏接口给客户端进行调用,因为是 http 协议的所以客户端没有语言限制。

 

Eureka Server API 介绍

Netflix Eureka API 介绍

    

接口 接口地址 请求方法 接口参数 响应数据
服务注册接口 (register) /apps/{服务名称} POST    
服务取消注册( cancel ) /apps/{服务名称}/{实例ID} DELETE    
客户端发送心跳 (sendHeartBeat) /apps/{服务名称}/{实例ID} PUT  status , lastDirtyTimestamp , overriddenstatus  
更新实例状态 (statusUpdate) /apps/{服务名称}/{实例ID} PUT status , lastDirtyTimestamp  
deleteStatusOverride /apps/{服务名称}/{实例ID}/status DELETE lastDirtyTimestamp  
获取服务列表 (getApplications) /apps/ GET regions  
getDelta /apps/delta GET regions  
getVip /vips/ GET vipAddress , regions   
getSecureVip /svips/ GET secureVipAddress , regions  
getApplication /apps/{服务名称} GET    
getInstance /apps/{服务名称}/{实例ID} GET    
getInstance /instances/{实例ID} GET    
shutdown        

        

相关文章:

  • 2021-04-25
  • 2021-05-25
  • 2022-01-09
  • 2022-02-24
  • 2021-05-28
  • 2021-12-23
  • 2022-12-23
  • 2021-04-07
猜你喜欢
  • 2021-11-07
  • 2021-09-01
  • 2021-09-27
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案