python 给eureka发送心跳
时间: 2023-10-17 22:19:13 浏览: 171
可以使用Python的requests库向Eureka发送心跳消息。代码示例如下:
```python
import requests
import time
# Eureka服务地址
EUREKA_URL = 'http://localhost:8761/eureka/apps/YOUR_APP_NAME'
while True:
# 发送心跳消息
requests.put(EUREKA_URL, headers={'Content-Type': 'application/json'})
# 间隔30秒发送一次心跳消息
time.sleep(30)
```
其中,YOUR_APP_NAME需要替换为你的应用名称。另外,如果Eureka服务设置了认证,还需要在headers中添加认证信息。
阅读全文