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,8 +167,6 @@ func NewPrometheus() *prometheus {
} }
metricsService := &api.MetricsService{ metricsService := &api.MetricsService{
Config: &conf,
TargetManager: targetManager,
Storage: memStorage, Storage: memStorage,
} }

View file

@ -18,16 +18,12 @@ import (
"github.com/prometheus/client_golang/prometheus" "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/storage/local"
"github.com/prometheus/prometheus/web/httputils" "github.com/prometheus/prometheus/web/httputils"
) )
// MetricsService manages the /api HTTP endpoint. // MetricsService manages the /api HTTP endpoint.
type MetricsService struct { type MetricsService struct {
Config *config.Config
TargetManager retrieval.TargetManager
Storage local.Storage Storage local.Storage
} }