diff --git a/main.go b/main.go index 5c525aa..45a8a85 100644 --- a/main.go +++ b/main.go @@ -48,7 +48,7 @@ func main() { scheduler.Every(interval).Minutes().Do(startMonitoring, errChanel) scheduler.Start() - fmt.Println(fmt.Sprintf("metrics server listening at port %v with monitoring interval of %v minute(s).", httpServer.Addr, interval)) + fmt.Println(fmt.Sprintf("Metrics server listening at port %v with monitoring interval of %v minute(s).", httpServer.Addr, interval)) keepRunningOnError, _ := strconv.ParseBool(keepRunningOnErrorStr) if keepRunningOnError { @@ -90,9 +90,9 @@ func setupMetricsServer() (*http.Server, error) { mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte(` - SQS Exporter + SQS Prometheus Exporter -

SQS Exporter

+

SQS Prometheus Exporter

Metrics

`))