Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
neezgee committed Oct 23, 2015
1 parent 997991f commit 631a01f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apache_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ const (
var (
listeningAddress = flag.String("telemetry.address", ":9117", "Address on which to expose metrics.")
metricsEndpoint = flag.String("telemetry.endpoint", "/metrics", "Path under which to expose metrics.")
scrapeURI = flag.String("scrape_uri", "http://localhost/server-status/?auto", "URI to apache stub status page")
insecure = flag.Bool("insecure", true, "Ignore server certificate if using https")
scrapeURI = flag.String("scrape_uri", "http://localhost/server-status/?auto", "URI to apache stub status page.")
insecure = flag.Bool("insecure", true, "Ignore server certificate if using https.")
)


type Exporter struct {
URI string
mutex sync.RWMutex
Expand Down

0 comments on commit 631a01f

Please sign in to comment.