From 0a55a84863bc5ba3d93d56dabc49fc5120cf25c9 Mon Sep 17 00:00:00 2001 From: Evgeniy Kulikov Date: Tue, 12 May 2020 11:19:34 +0300 Subject: [PATCH] metrics: fix doc-comments --- metrics.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/metrics.go b/metrics.go index 4a7c857..e888594 100644 --- a/metrics.go +++ b/metrics.go @@ -13,12 +13,12 @@ import ( func attachMetrics(r *router.Router, z promhttp.Logger) { r.GET("/metrics/", metricsHandler(prometheus.DefaultGatherer, promhttp.HandlerOpts{ ErrorLog: z, - //ErrorHandling: 0, - //Registry: nil, - //DisableCompression: false, - //MaxRequestsInFlight: 0, - //Timeout: 0, - //EnableOpenMetrics: false, + // ErrorHandling: 0, + // Registry: nil, + // DisableCompression: false, + // MaxRequestsInFlight: 0, + // Timeout: 0, + // EnableOpenMetrics: false, })) }