You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `level` | `INFO` | Sets the minimum enabled logging level. Other possible values are `DEBUG`, `WARN`, and `ERROR`. |
107
+
| `development` | `false` | Puts the logger in development mode. |
108
+
| `encoding` | `console` | Sets the logger's encoding. The other possible value is `json`. |
109
+
| `disable_caller` | `false` | Stops annotating logs with the calling function's file name and line number. By default, all logs are annotated. |
110
+
| `disable_stacktrace` | `false` | Disables automatic stacktrace capturing. Stacktraces are captured for logs at `WARN` level and above in development and at `ERROR` level and above in production. |
111
+
| `sampling::enabled` | `true` | Sets a sampling policy. |
112
+
| `sampling::tick` | `10s` | The interval in seconds that the logger applies to each sampling. |
113
+
| `sampling::initial` | `10` | The number of messages logged at the start of each `sampling::tick`. |
114
+
| `sampling::thereafter` | `100` | Sets the sampling policy for subsequent messages after `sampling::initial` messages are logged. When `sampling::thereafter` is set to `N`, every `Nth` message is logged and all others are dropped. If `N` is zero, the logger drops all messages after `sampling::initial` messages are logged. |
115
+
| `output_paths` | `["stderr"]` | A list of URLs or file paths to write logging output to. |
116
+
| `error_output_paths` | `["stderr"]` | A list of URLs or file paths to write logger errors to. |
117
+
| `initial_fields` | | A collection of static key-value pairs added to all log entries to enrich logging context. By default, there is no initial field. |
107
118
108
119
You can also see logs for the Collector on a Linux systemd system using
0 commit comments