This repository was archived by the owner on Sep 1, 2024. It is now read-only.
File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ GLOBAL OPTIONS:
98
98
--ldapPass value OpenLDAP bind password (optional) [$LDAP_PASS]
99
99
--interval value Scrape interval (default: 30s) [$INTERVAL]
100
100
--webCfgFile FILE Prometheus metrics web config FILE (optional) [$WEB_CFG_FILE]
101
+ --jsonLog Output logs in JSON format (default: false) [$JSON_LOG]
101
102
--config YAML_FILE Optional configuration from a YAML_FILE
102
103
--help, -h show help (default: false)
103
104
--version, -v print the version (default: false)
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ const (
23
23
ldapPass = "ldapPass"
24
24
interval = "interval"
25
25
metrics = "metrPath"
26
+ jsonLog = "jsonLog"
26
27
webCfgFile = "webCfgFile"
27
28
config = "config"
28
29
)
@@ -74,6 +75,12 @@ func main() {
74
75
Usage : "Prometheus metrics web config `FILE` (optional)" ,
75
76
EnvVars : []string {"WEB_CFG_FILE" },
76
77
}),
78
+ altsrc .NewBoolFlag (& cli.BoolFlag {
79
+ Name : jsonLog ,
80
+ Value : false ,
81
+ Usage : "Output logs in JSON format" ,
82
+ EnvVars : []string {"JSON_LOG" },
83
+ }),
77
84
& cli.StringFlag {
78
85
Name : config ,
79
86
Usage : "Optional configuration from a `YAML_FILE`" ,
@@ -88,7 +95,6 @@ func main() {
88
95
Flags : flags ,
89
96
Action : runMain ,
90
97
}
91
- log .Info ("service starting" )
92
98
if err := app .Run (os .Args ); err != nil {
93
99
log .WithError (err ).Fatal ("service failed" )
94
100
}
@@ -106,6 +112,13 @@ func optionalYamlSourceFunc(flagFileName string) func(context *cli.Context) (alt
106
112
}
107
113
108
114
func runMain (c * cli.Context ) error {
115
+ if c .Bool (jsonLog ) {
116
+ log .SetFormatter (& log.JSONFormatter {})
117
+ } else {
118
+ log .SetFormatter (& log.TextFormatter {})
119
+ }
120
+ log .Info ("service starting" )
121
+
109
122
server := exporter .NewMetricsServer (
110
123
c .String (promAddr ),
111
124
c .String (metrics ),
You can’t perform that action at this time.
0 commit comments