AriStockAI/consul/config/data-service.json
fanfpy 302fbbc11b refactor(consul): 将服务配置中的meta字段迁移为tags格式
统一将Consul服务配置中的traefik相关元数据从meta字段迁移到tags数组格式
新增entrypoints配置以明确指定web入口点
2025-07-01 17:00:31 +08:00

18 lines
471 B
JSON

{
"service": {
"address": "data-service",
"check": {
"http": "http://ari-data-service:8000/api/public/stock_bid_ask_em?symbol=000001",
"interval": "10s",
"timeout": "5s"
},
"id": "data-service-1",
"tags": [
"traefik.enable=true",
"traefik.http.routers.data-service.rule=PathPrefix('/api/data')",
"traefik.http.routers.data-service.entrypoints=web"
],
"name": "data-service",
"port": 8000
}
}