Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: adds rpc pings to health #91

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/exporter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func main() {
logger.Info("bus started")

// Create the API object
server := api.New()
server := api.New(api.WithExportPluginSystem(pluginsystem))

// Scheduler manager
scrape := scraper.NewManager(ctx, b)
Expand Down
19 changes: 17 additions & 2 deletions pkg/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/prometheus/common/version"
"github.com/re-cinq/aether/pkg/config"
"github.com/re-cinq/aether/pkg/log"
"github.com/re-cinq/aether/pkg/plugin"
)

const readHeaderTimeout = 2 * time.Second
Expand All @@ -23,10 +24,20 @@ type API struct {

addr string
metricsPath string

plugins *plugin.ExportPluginSystem
}

type option func(*API)

func WithExportPluginSystem(e *plugin.ExportPluginSystem) option {
return func(a *API) {
a.plugins = e
}
}

// New returns an instance of a configured API
func New() *API {
func New(opts ...option) *API {
api := &API{
metricsPath: config.AppConfig().APIConfig.MetricsPath,
addr: fmt.Sprintf("%s:%s",
Expand All @@ -35,6 +46,10 @@ func New() *API {
),
}

for _, o := range opts {
o(api)
}

api.setup()

return api
Expand All @@ -46,7 +61,7 @@ func (a *API) router() *mux.Router {
r.StrictSlash(true)

// HealthCheck
r.HandleFunc("/healthz", healthProbe).Methods("GET")
r.HandleFunc("/healthz", a.healthProbe).Methods("GET")

// Prometheus exporter
prometheus.MustRegister(version.NewCollector("cloud_carbon_exporter"))
Expand Down
25 changes: 23 additions & 2 deletions pkg/api/health.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,34 @@
package api

import (
"encoding/json"
"fmt"
"net/http"
)

// Return a 200 http status
func healthProbe(w http.ResponseWriter, req *http.Request) {
func (a *API) healthProbe(w http.ResponseWriter, req *http.Request) {
w.Header().Set("Content-Type", "application/json")

plugins := "up"
var failedPlugins []string

// we need to ping every registered plugin
for _, p := range a.plugins.Plugins {
err := p.Client.Ping()
if err != nil {
plugins = "down"
failedPlugins = append(failedPlugins, p.Name)
}
}

failedPluginsJSON, err := json.Marshal(failedPlugins)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
fmt.Fprintf(w, `{"error": %q}`, err)
return
}

w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, `{"status": "up"}`)
fmt.Fprintf(w, `{"status": "up", "plugins": %q, failedPlugins: %s}`, plugins, failedPluginsJSON)
}
17 changes: 0 additions & 17 deletions pkg/pathfinder/handler.go

This file was deleted.

21 changes: 19 additions & 2 deletions pkg/plugin/exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,14 @@ func (p *ExporterPlugin) GRPCClient(
type ExportPluginSystem struct {
Dir string

Plugins []Exporter
Plugins []*RegisteredPlugin
}

// RegisteredPlugin is all the information needed to manage a registered plugin
type RegisteredPlugin struct {
Name string
Exporter Exporter
Client plugin.ClientProtocol
}

// Load goes to a directory and runs every binary in that directory as a plugin
Expand Down Expand Up @@ -136,7 +143,17 @@ func (e *ExportPluginSystem) Load(ctx context.Context) error {

p := raw.(Exporter)

e.Plugins = append(e.Plugins, p)
// make sure plugin is reachable
err = rpcClient.Ping()
if err != nil {
logger.Info("failed loading plugin", "plugin", file.Name(), "error", err)
}

e.Plugins = append(e.Plugins, &RegisteredPlugin{
Name: file.Name(),
Exporter: p,
Client: rpcClient,
})
logger.Info("loaded plugin", "plugin", file.Name())
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/plugin/subscriber.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func (p *PluginHandler) SendToExporters(ctx context.Context, e *bus.Event) {
}

for i := range p.exporters.Plugins {
err := p.exporters.Plugins[i].Send(&instance)
err := p.exporters.Plugins[i].Exporter.Send(&instance)
if err != nil {
logger.Error("exporting instance to plugin failed", "error", err)
}
Expand Down
Loading