-
-
Notifications
You must be signed in to change notification settings - Fork 366
Description
Would you like to work on this feature?
no
What problem are you trying to solve?
Every single reconcile, and every single tracing::info! or higher log call, this is added to my logs:
22:31:17.769 INFO reconciling object{object.ref=fully.qualified.domain.name.full-name.namespace object.reason=object updated}:reconcile: then finally my log
Of course it respects the tracing format I've specified, but this hard-coded span makes the logs very long and hard to read.
I am visually impaired. I want to control my own log format. I tried to create a new Span, but can't, because it's not Send.
There ought to be an option in the Controller::new(...).with_config(Config { ... }) struct with which I can configure my own Span format or something like that.
I found the culprit buried deep in the bowels of kube-rs where it cannot be overridden at https://github.com/kube-rs/kube/blob/main/kube-runtime/src/controller/mod.rs#L394
Please, is there any way to suppress / remove this and still extract the reconcile reason? I guess I can use a filter, but then I can't get the reconcile reason, right?
Thank you.
Describe the solution you'd like
I'd like to be able to:
- ideally: configure my own
Some(Span)(orNone) in theController::new(...).with_config(config)option (how? I'm not atracingexpert), or - allow suppression of the default
Spanaltoegether from thereconcile(via theConfigor with a call to.without_span()or similar), or - be able to specify the format, or
- allow a
reasonargument to reconcile and be able to suppressSpanaltogether, or - something else -- please, my logs are just too verbose because it shows up in every single log I print in my controller!
Describe alternatives you've considered
Tracing Filter. I guess I'll have to do that for now. Looks like there are only a couple reasons for reconcile anyway, but would be nice to have this info.
Documentation, Adoption, Migration Strategy
Hopefully it should only add a new Config option, which should just default to what it is now and let the user override.
EDIT: At least, in the interim before a solution, can we have an example tracing Filter in the docs or README or something on how to suppress this span?
Target crate for feature
kube-runtime