Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 6d54eb9

Browse files
committed
enable optional JSON log output
1 parent bfd3b07 commit 6d54eb9

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ GLOBAL OPTIONS:
9898
--ldapPass value OpenLDAP bind password (optional) [$LDAP_PASS]
9999
--interval value Scrape interval (default: 30s) [$INTERVAL]
100100
--webCfgFile FILE Prometheus metrics web config FILE (optional) [$WEB_CFG_FILE]
101+
--jsonLog Output logs in JSON format (default: false) [$JSON_LOG]
101102
--config YAML_FILE Optional configuration from a YAML_FILE
102103
--help, -h show help (default: false)
103104
--version, -v print the version (default: false)

cmd/openldap_exporter/main.go

+14-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ const (
2323
ldapPass = "ldapPass"
2424
interval = "interval"
2525
metrics = "metrPath"
26+
jsonLog = "jsonLog"
2627
webCfgFile = "webCfgFile"
2728
config = "config"
2829
)
@@ -74,6 +75,12 @@ func main() {
7475
Usage: "Prometheus metrics web config `FILE` (optional)",
7576
EnvVars: []string{"WEB_CFG_FILE"},
7677
}),
78+
altsrc.NewBoolFlag(&cli.BoolFlag{
79+
Name: jsonLog,
80+
Value: false,
81+
Usage: "Output logs in JSON format",
82+
EnvVars: []string{"JSON_LOG"},
83+
}),
7784
&cli.StringFlag{
7885
Name: config,
7986
Usage: "Optional configuration from a `YAML_FILE`",
@@ -88,7 +95,6 @@ func main() {
8895
Flags: flags,
8996
Action: runMain,
9097
}
91-
log.Info("service starting")
9298
if err := app.Run(os.Args); err != nil {
9399
log.WithError(err).Fatal("service failed")
94100
}
@@ -106,6 +112,13 @@ func optionalYamlSourceFunc(flagFileName string) func(context *cli.Context) (alt
106112
}
107113

108114
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+
109122
server := exporter.NewMetricsServer(
110123
c.String(promAddr),
111124
c.String(metrics),

0 commit comments

Comments
 (0)