Skip to content
Snippets Groups Projects
Unverified Commit b522e4a1 authored by Levente Pap's avatar Levente Pap
Browse files

Enable prometheus process metrics by default

parent 5b749210
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ const ( ...@@ -20,7 +20,7 @@ const (
func init() { func init() {
flag.String(CfgPrometheusBindAddress, "0.0.0.0:9311", "the bind address on which the Prometheus exporter listens on") flag.String(CfgPrometheusBindAddress, "0.0.0.0:9311", "the bind address on which the Prometheus exporter listens on")
flag.Bool(CfgPrometheusGoMetrics, false, "include go metrics") flag.Bool(CfgPrometheusGoMetrics, false, "include go metrics")
flag.Bool(CfgPrometheusProcessMetrics, false, "include process metrics") flag.Bool(CfgPrometheusProcessMetrics, true, "include process metrics")
flag.Bool(CfgPrometheusPromhttpMetrics, false, "include promhttp metrics") flag.Bool(CfgPrometheusPromhttpMetrics, false, "include promhttp metrics")
flag.Bool(CfgPrometheusWorkerpoolMetrics, false, "include workerpool metrics") flag.Bool(CfgPrometheusWorkerpoolMetrics, false, "include workerpool metrics")
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment