Description: Temporarily remove newrelic support to cut down on dependencies for initial release
Author: Tianon Gravi <tianon@debian.org>
Forwarded: not-needed

--- a/registry/registry.go
+++ b/registry/registry.go
@@ -19,7 +19,6 @@ import (
 	gorhandlers "github.com/gorilla/handlers"
 	log "github.com/sirupsen/logrus"
 	"github.com/spf13/cobra"
-	"github.com/yvasiyarov/gorelic"
 	"golang.org/x/crypto/acme"
 	"golang.org/x/crypto/acme/autocert"
 
@@ -232,16 +231,7 @@ func configureReporting(app *handlers.Ap
 	}
 
 	if app.Config.Reporting.NewRelic.LicenseKey != "" {
-		agent := gorelic.NewAgent()
-		agent.NewrelicLicense = app.Config.Reporting.NewRelic.LicenseKey
-		if app.Config.Reporting.NewRelic.Name != "" {
-			agent.NewrelicName = app.Config.Reporting.NewRelic.Name
-		}
-		agent.CollectHTTPStat = true
-		agent.Verbose = app.Config.Reporting.NewRelic.Verbose
-		agent.Run()
-
-		handler = agent.WrapHTTPHandler(handler)
+		log.Warnf("NewRelic LicenseKey provided, but this install does not include NewRelic support")
 	}
 
 	return handler
