我在我的服務中有一個HTTP健康檢查,公開在localhost:35000/health上。目前它總是返回200 OK。對健康檢查的配置是通過HTTP API編程方式,而不是一種服務的配置,但在本質上,它是: set id: service-id
set name: health check
set notes: consul does a GET to '/health' every 30
As described我可以這樣做: checks.AddUrlCheck(Configuration["OrderingUrl"])
,使我的健康檢查依賴於其他微服務的健康。但是,我不只是想做一個網址檢查。我想對其他Microservice進行全面的健康檢查(所以它也會檢查其他Microservice的數據庫依賴關係等)。這可能類似於, checks.AddFullMicroservice