-
Notifications
You must be signed in to change notification settings - Fork 473
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added new Log Enconder Config #2927
Changes from all commits
551d563
94d3e75
df38ce3
602d300
c2ec6b6
469aefc
cef788e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' | ||
change_type: 'enhancement' | ||
|
||
# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action) | ||
component: operator | ||
|
||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
note: Enabling new Logs Enconder Configuration parameters. | ||
|
||
# One or more tracking issues related to the change | ||
issues: [268] | ||
|
||
# (Optional) One or more lines of additional information to render under the primary note. | ||
# These lines will be padded with 2 spaces and then inserted directly into the document. | ||
# Use pipe (|) for multiline entries. | ||
subtext: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Debug tips to the OpenTelemetry Operator | ||
|
||
A tip during a troubleshooting process is always welcome. Therefore, we prepared this documentation to help you identify possible issues and improve the application's reliability. | ||
|
||
## Customizing Logs Output | ||
By the default the Operator's log format is console like you can see below: | ||
```bash | ||
2024-05-06T11:55:11+02:00 INFO setup Prometheus CRDs are installed, adding to scheme. | ||
2024-05-06T11:55:11+02:00 INFO setup Openshift CRDs are not installed, skipping adding to scheme. | ||
2024-05-06T11:55:11+02:00 INFO setup the env var WATCH_NAMESPACE isn't set, watching all namespaces | ||
2024-05-06T11:55:11+02:00 INFO Webhooks are disabled, operator is running an unsupported mode {"ENABLE_WEBHOOKS": "false"} | ||
2024-05-06T11:55:11+02:00 INFO setup starting manager | ||
``` | ||
|
||
If it is necessary to customize the log format, so you can use one of the following parameters: | ||
- `--zap-devel`: Development Mode defaults(encoder=consoleEncoder,logLevel=Debug,stackTraceLevel=Warn). Production Mode defaults(encoder=jsonEncoder,logLevel=Info,stackTraceLevel=Error) (default false) | ||
- `--zap-encoder`: Zap log encoding (one of 'json' or 'console') | ||
- `--zap-log-level` Zap Level to configure the verbosity of logging. Can be one of 'debug', 'info', 'error', or any integer value > 0 which corresponds to custom debug levels of increasing verbosity | ||
- `--zap-stacktrace-level` Zap Level at and above which stacktraces are captured (one of 'info', 'error', 'panic'). | ||
- `--zap-time-encoding` Zap time encoding (one of 'epoch', 'millis', 'nano', 'iso8601', 'rfc3339' or 'rfc3339nano'). Defaults to 'epoch'. | ||
- The following parameters are effective only if the `--zap-encoder=json`: | ||
- `zap-message-key`: The message key to be used in the customized Log Encoder | ||
- `zap-level-key`: The level key to be used in the customized Log Encoder | ||
- `zap-time-key`: The time key to be used in the customized Log Encoder | ||
- `zap-level-format`: The level format to be used in the customized Log Encoder | ||
|
||
Running the Operator with the parameters `--zap-encoder=json`, `--zap-message-key="msg"`, `zap-level-key="severity"`,`zap-time-key="timestamp"`,`zap-level-format="uppercase"` you should see the following output: | ||
```bash | ||
{"severity":"INFO","timestamp":"2024-05-07T16:23:35+02:00","logger":"setup","msg":"Prometheus CRDs are installed, adding to scheme."} | ||
{"severity":"INFO","timestamp":"2024-05-07T16:23:35+02:00","logger":"setup","msg":"Openshift CRDs are not installed, skipping adding to scheme."} | ||
{"severity":"INFO","timestamp":"2024-05-07T16:23:35+02:00","logger":"setup","msg":"the env var WATCH_NAMESPACE isn't set, watching all namespaces"} | ||
{"severity":"INFO","timestamp":"2024-05-07T16:23:35+02:00","msg":"Webhooks are disabled, operator is running an unsupported mode","ENABLE_WEBHOOKS":"false"} | ||
{"severity":"INFO","timestamp":"2024-05-07T16:23:35+02:00","logger":"setup","msg":"starting manager"} | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ import ( | |
monitoringv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1" | ||
"github.com/spf13/pflag" | ||
colfeaturegate "go.opentelemetry.io/collector/featuregate" | ||
"go.uber.org/zap/zapcore" | ||
networkingv1 "k8s.io/api/networking/v1" | ||
k8sruntime "k8s.io/apimachinery/pkg/runtime" | ||
utilruntime "k8s.io/apimachinery/pkg/util/runtime" | ||
|
@@ -131,6 +132,10 @@ func main() { | |
annotationsFilter []string | ||
webhookPort int | ||
tlsOpt tlsConfig | ||
encodeMessageKey string | ||
encodeLevelKey string | ||
encodeTimeKey string | ||
encodeLevelFormat string | ||
) | ||
|
||
pflag.StringVar(&metricsAddr, "metrics-addr", ":8080", "The address the metric endpoint binds to.") | ||
|
@@ -163,8 +168,19 @@ func main() { | |
pflag.IntVar(&webhookPort, "webhook-port", 9443, "The port the webhook endpoint binds to.") | ||
pflag.StringVar(&tlsOpt.minVersion, "tls-min-version", "VersionTLS12", "Minimum TLS version supported. Value must match version names from https://golang.org/pkg/crypto/tls/#pkg-constants.") | ||
pflag.StringSliceVar(&tlsOpt.cipherSuites, "tls-cipher-suites", nil, "Comma-separated list of cipher suites for the server. Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants). If omitted, the default Go cipher suites will be used") | ||
pflag.StringVar(&encodeMessageKey, "zap-message-key", "message", "The message key to be used in the customized Log Encoder") | ||
pflag.StringVar(&encodeLevelKey, "zap-level-key", "level", "The level key to be used in the customized Log Encoder") | ||
pflag.StringVar(&encodeTimeKey, "zap-time-key", "timestamp", "The time key to be used in the customized Log Encoder") | ||
pflag.StringVar(&encodeLevelFormat, "zap-level-format", "uppercase", "The level format to be used in the customized Log Encoder") | ||
Comment on lines
+171
to
+174
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are the defaults here the same as we currently have? That is, if we don't set any of these, there's no change in behaviour? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, but we can't compare it with the current log because we use the |
||
pflag.Parse() | ||
|
||
opts.EncoderConfigOptions = append(opts.EncoderConfigOptions, func(ec *zapcore.EncoderConfig) { | ||
ec.MessageKey = encodeMessageKey | ||
ec.LevelKey = encodeLevelKey | ||
ec.TimeKey = encodeTimeKey | ||
ec.EncodeLevel = config.WithEncodeLevelFormat(encodeLevelFormat) | ||
}) | ||
|
||
logger := zap.New(zap.UseFlagOptions(&opts)) | ||
ctrl.SetLogger(logger) | ||
|
||
|
@@ -195,6 +211,10 @@ func main() { | |
"enable-nginx-instrumentation", enableNginxInstrumentation, | ||
"enable-nodejs-instrumentation", enableNodeJSInstrumentation, | ||
"enable-java-instrumentation", enableJavaInstrumentation, | ||
"zap-message-key", encodeMessageKey, | ||
"zap-level-key", encodeLevelKey, | ||
"zap-time-key", encodeTimeKey, | ||
"zap-level-format", encodeLevelFormat, | ||
) | ||
|
||
restConfig := ctrl.GetConfigOrDie() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀 🎉