Remove unused fields from MetricsService.

This commit is contained in:
Julius Volz 2015-03-27 18:51:13 +01:00
parent c8a6b73bff
commit 3f2686d0b3
2 changed files with 2 additions and 8 deletions

View File

@ -167,9 +167,7 @@ func NewPrometheus() *prometheus {
}
metricsService := &api.MetricsService{
Config: &conf,
TargetManager: targetManager,
Storage: memStorage,
Storage: memStorage,
}
webService := &web.WebService{

View File

@ -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.