1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: Apache-2.0
17 "git.arvados.org/arvados.git/sdk/go/arvados"
18 "git.arvados.org/arvados.git/sdk/go/auth"
21 const defaultTimeout = arvados.Duration(2 * time.Second)
23 // Aggregator implements http.Handler. It handles "GET /_health/all"
24 // by checking the health of all configured services on the cluster
25 // and responding 200 if everything is healthy.
26 type Aggregator struct {
28 httpClient *http.Client
29 timeout arvados.Duration
31 Cluster *arvados.Cluster
33 // If non-nil, Log is called after handling each request.
34 Log func(*http.Request, error)
37 func (agg *Aggregator) setup() {
38 agg.httpClient = http.DefaultClient
40 // this is always the case, except in the test suite
41 agg.timeout = defaultTimeout
45 func (agg *Aggregator) CheckHealth() error {
49 func (agg *Aggregator) ServeHTTP(resp http.ResponseWriter, req *http.Request) {
50 agg.setupOnce.Do(agg.setup)
51 sendErr := func(statusCode int, err error) {
52 resp.WriteHeader(statusCode)
53 json.NewEncoder(resp).Encode(map[string]string{"error": err.Error()})
59 resp.Header().Set("Content-Type", "application/json")
61 if !agg.checkAuth(req) {
62 sendErr(http.StatusUnauthorized, errUnauthorized)
65 if req.URL.Path != "/_health/all" {
66 sendErr(http.StatusNotFound, errNotFound)
69 json.NewEncoder(resp).Encode(agg.ClusterHealth())
75 type ClusterHealthResponse struct {
76 // "OK" if all needed services are OK, otherwise "ERROR".
77 Health string `json:"health"`
79 // An entry for each known health check of each known instance
80 // of each needed component: "instance of service S on node N
81 // reports health-check C is OK."
82 Checks map[string]CheckResult `json:"checks"`
84 // An entry for each service type: "service S is OK." This
85 // exposes problems that can't be expressed in Checks, like
86 // "service S is needed, but isn't configured to run
88 Services map[arvados.ServiceName]ServiceHealth `json:"services"`
91 type CheckResult struct {
92 Health string `json:"health"`
93 Error string `json:"error,omitempty"`
94 HTTPStatusCode int `json:",omitempty"`
95 HTTPStatusText string `json:",omitempty"`
96 Response map[string]interface{} `json:"response"`
97 ResponseTime json.Number `json:"responseTime"`
100 type ServiceHealth struct {
101 Health string `json:"health"`
105 func (agg *Aggregator) ClusterHealth() ClusterHealthResponse {
106 resp := ClusterHealthResponse{
108 Checks: make(map[string]CheckResult),
109 Services: make(map[arvados.ServiceName]ServiceHealth),
113 wg := sync.WaitGroup{}
114 for svcName, svc := range agg.Cluster.Services.Map() {
115 // Ensure svc is listed in resp.Services.
117 if _, ok := resp.Services[svcName]; !ok {
118 resp.Services[svcName] = ServiceHealth{Health: "ERROR"}
122 for addr := range svc.InternalURLs {
124 go func(svcName arvados.ServiceName, addr arvados.URL) {
126 var result CheckResult
127 pingURL, err := agg.pingURL(addr)
129 result = CheckResult{
134 result = agg.ping(pingURL)
139 resp.Checks[fmt.Sprintf("%s+%s", svcName, pingURL)] = result
140 if result.Health == "OK" {
141 h := resp.Services[svcName]
144 resp.Services[svcName] = h
146 resp.Health = "ERROR"
153 // Report ERROR if a needed service didn't fail any checks
154 // merely because it isn't configured to run anywhere.
155 for _, sh := range resp.Services {
156 if sh.Health != "OK" {
157 resp.Health = "ERROR"
164 func (agg *Aggregator) pingURL(svcURL arvados.URL) (*url.URL, error) {
165 base := url.URL(svcURL)
166 return base.Parse("/_health/ping")
169 func (agg *Aggregator) ping(target *url.URL) (result CheckResult) {
174 result.ResponseTime = json.Number(fmt.Sprintf("%.6f", time.Since(t0).Seconds()))
176 result.Health, result.Error = "ERROR", err.Error()
182 req, err := http.NewRequest("GET", target.String(), nil)
186 req.Header.Set("Authorization", "Bearer "+agg.Cluster.ManagementToken)
188 ctx, cancel := context.WithTimeout(req.Context(), time.Duration(agg.timeout))
190 req = req.WithContext(ctx)
191 resp, err := agg.httpClient.Do(req)
195 result.HTTPStatusCode = resp.StatusCode
196 result.HTTPStatusText = resp.Status
197 err = json.NewDecoder(resp.Body).Decode(&result.Response)
199 err = fmt.Errorf("cannot decode response: %s", err)
200 } else if resp.StatusCode != http.StatusOK {
201 err = fmt.Errorf("HTTP %d %s", resp.StatusCode, resp.Status)
202 } else if h, _ := result.Response["health"].(string); h != "OK" {
203 if e, ok := result.Response["error"].(string); ok && e != "" {
206 err = fmt.Errorf("health=%q in ping response", h)
212 func (agg *Aggregator) checkAuth(req *http.Request) bool {
213 creds := auth.CredentialsFromRequest(req)
214 for _, token := range creds.Tokens {
215 if token != "" && token == agg.Cluster.ManagementToken {