You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/k3s-io/k3s/pkg/agent/https"
|
|
|
|
"github.com/k3s-io/k3s/pkg/daemons/config"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
|
|
lassometrics "github.com/rancher/lasso/pkg/metrics"
|
|
|
|
"k8s.io/component-base/metrics/legacyregistry"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DefaultRegisterer is the implementation of the
|
|
|
|
// prometheus Registerer interface that all metrics operations
|
|
|
|
// will use.
|
|
|
|
var DefaultRegisterer = legacyregistry.Registerer()
|
|
|
|
|
|
|
|
// DefaultGatherer is the implementation of the
|
|
|
|
// prometheus Gatherere interface that all metrics operations
|
|
|
|
// will use.
|
|
|
|
var DefaultGatherer = legacyregistry.DefaultGatherer
|
|
|
|
|
|
|
|
// DefaultMetrics is the default instance of a Metrics server
|
|
|
|
var DefaultMetrics = &Config{
|
|
|
|
Router: func(context.Context, *config.Node) (*mux.Router, error) {
|
|
|
|
return nil, errors.New("not implemented")
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// ensure that lasso exposes metrics through the same registry used by Kubernetes components
|
|
|
|
lassometrics.MustRegister(DefaultRegisterer)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Config holds fields for the metrics listener
|
|
|
|
type Config struct {
|
|
|
|
// Router will be called to add the metrics API handler to an existing router.
|
|
|
|
Router https.RouterFunc
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start starts binds the metrics API to an existing HTTP router.
|
|
|
|
func (c *Config) Start(ctx context.Context, nodeConfig *config.Node) error {
|
|
|
|
mRouter, err := c.Router(ctx, nodeConfig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mRouter.Handle("/metrics", promhttp.HandlerFor(DefaultGatherer, promhttp.HandlerOpts{}))
|
|
|
|
return nil
|
|
|
|
}
|