mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-12 06:17:27 -08:00
Remove unused fields from MetricsService.
This commit is contained in:
parent
c8a6b73bff
commit
3f2686d0b3
4
main.go
4
main.go
|
@ -167,9 +167,7 @@ func NewPrometheus() *prometheus {
|
|||
}
|
||||
|
||||
metricsService := &api.MetricsService{
|
||||
Config: &conf,
|
||||
TargetManager: targetManager,
|
||||
Storage: memStorage,
|
||||
Storage: memStorage,
|
||||
}
|
||||
|
||||
webService := &web.WebService{
|
||||
|
|
|
@ -18,17 +18,13 @@ import (
|
|||
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
|
||||
"github.com/prometheus/prometheus/config"
|
||||
"github.com/prometheus/prometheus/retrieval"
|
||||
"github.com/prometheus/prometheus/storage/local"
|
||||
"github.com/prometheus/prometheus/web/httputils"
|
||||
)
|
||||
|
||||
// MetricsService manages the /api HTTP endpoint.
|
||||
type MetricsService struct {
|
||||
Config *config.Config
|
||||
TargetManager retrieval.TargetManager
|
||||
Storage local.Storage
|
||||
Storage local.Storage
|
||||
}
|
||||
|
||||
// RegisterHandler registers the handler for the various endpoints below /api.
|
||||
|
|
Loading…
Reference in a new issue