-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from raypinto/emit-healthz-metrics
emit healthz metrics
- Loading branch information
Showing
7 changed files
with
107 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Copyright 2023 The NATS Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Package collector has various collector utilities and implementations. | ||
package collector | ||
|
||
import ( | ||
"net/http" | ||
"sync" | ||
|
||
"github.com/prometheus/client_golang/prometheus" | ||
) | ||
|
||
func isHealthzEndpoint(system, endpoint string) bool { | ||
return system == CoreSystem && endpoint == "healthz" | ||
} | ||
|
||
type healthzCollector struct { | ||
sync.Mutex | ||
|
||
httpClient *http.Client | ||
servers []*CollectedServer | ||
|
||
status *prometheus.Desc | ||
} | ||
|
||
func newHealthzCollector(system, endpoint string, servers []*CollectedServer) prometheus.Collector { | ||
nc := &healthzCollector{ | ||
httpClient: http.DefaultClient, | ||
status: prometheus.NewDesc( | ||
prometheus.BuildFQName(system, endpoint, "status"), | ||
"status", | ||
[]string{"server_id"}, | ||
nil, | ||
), | ||
} | ||
|
||
nc.servers = make([]*CollectedServer, len(servers)) | ||
for i, s := range servers { | ||
nc.servers[i] = &CollectedServer{ | ||
ID: s.ID, | ||
URL: s.URL + endpoint, | ||
} | ||
} | ||
|
||
return nc | ||
} | ||
|
||
func (nc *healthzCollector) Describe(ch chan<- *prometheus.Desc) { | ||
ch <- nc.status | ||
} | ||
|
||
// Collect gathers the server healthz metrics. | ||
func (nc *healthzCollector) Collect(ch chan<- prometheus.Metric) { | ||
for _, server := range nc.servers { | ||
var health Healthz | ||
if err := getMetricURL(nc.httpClient, server.URL, &health); err != nil { | ||
Debugf("ignoring server %s: %v", server.ID, err) | ||
continue | ||
} | ||
|
||
var status float64 = 1 | ||
if health.Status == "ok" { | ||
status = 0 | ||
} | ||
|
||
ch <- prometheus.MustNewConstMetric(nc.status, prometheus.GaugeValue, status, server.ID) | ||
} | ||
} | ||
|
||
// Healthz output | ||
type Healthz struct { | ||
Status string `json:"status"` | ||
Error string `json:"error,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters