-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
feat(agent): Print plugins source information #16270
Conversation
@neelayu I really like this! Can we please make the flag being something like Furthermore, please fix the linter issues. |
39f3020
to
c885748
Compare
@srebhan Thanks. I have made the changes. The test failure seems unrelated to my change though. |
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.
Thanks @neelayu for the update. Some more comments from my side.
config/config.go
Outdated
// LoadConfigData loads TOML-formatted config data | ||
func (c *Config) LoadConfigData(data []byte) error { | ||
func (c *Config) LoadConfigData(data []byte, opts ...cfgDataOption) error { |
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.
I think you should just pass the source
here. If we ever want to add other flags we can still refactor this later.
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.
The reason for introducing functional ops pattern was to prevent breaking other files calling this func. And there are about 50+ across 20+ files.
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.
I see your point but my fear is that people might forget about adding the source in future changes and we will not notice. You might keep this as is but I really would feel better if we enforce providing a source... ;-)
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.
I am inclined to keep this as-is for this PR. I can open up a second one to enforce the func signature change. Let me know your thoughts.
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.
Please change the function to take a mandatory path
or source
parameter and unconditionally add the source to the plugin models. The only place that should be conditional should be the printing.
Remember this is a public, exported function and we shouldn't change the signature too often. Having the plugin source in the model is a good thing so please add it.
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.
Thanks @srebhan
config/config.go
Outdated
// LoadConfigData loads TOML-formatted config data | ||
func (c *Config) LoadConfigData(data []byte) error { | ||
func (c *Config) LoadConfigData(data []byte, opts ...cfgDataOption) error { |
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.
The reason for introducing functional ops pattern was to prevent breaking other files calling this func. And there are about 50+ across 20+ files.
6c83f2d
to
f066526
Compare
@neelayu you need to update the |
@srebhan Not sure why it is asking me to remove them again?
|
Seems like you got the positions wrong. The entries are in lexicographic order so you also need to insert the lines in the right places. ;-) |
e0ec63d
to
13fe6a0
Compare
Thanks @srebhan. |
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.
@neelayu thanks for your update and sorry for this taking so long (due to holidays). I do have two minor comments in the code and a request to no go for the option pattern for the LoadConfigData
function. Let's change the function signature once and remove any room for errors.
13fe6a0
to
487823e
Compare
@srebhan I have enforced the func signature. Let me know. Thanks! |
Download PR build artifacts for linux_amd64.tar.gz, darwin_arm64.tar.gz, and windows_amd64.zip. 📦 Click here to get additional PR build artifactsArtifact URLs |
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.
Thanks a lot @neelayu!
487823e
to
460515a
Compare
This is a cool feature, but it's rather hard to read with a very large config file. For example, it prints 819 lines for my config file. Would there be some way to condense the output when you have hundreds of inputs that all come from the same file? ![]() Additionally, when running under systemd with structured log format writing logs to stdout, this hits the journald.conf default limit of 48K per line, so journald breaks the JSON into two lines which breaks any downstream log consumers, making it look like this: |
@llamafilm |
@neelayu it's actually the same issue, so if you condense the output to avoid redundancy, the output will be short enough to easily fit within a single line. |
Wow, totally missed this feature. Nice done! However, wouldn't it have been nicer to use Unicode box drawing for this?
Using |
@Hipska This can be achieved. Not sure if we can have a distinct separator for the header. |
@neelayu I checked the used module for printing the tables and there is the option to use these unicode symbols ( |
Summary
Print the source information for the plugins.
Put this feature behind a flag to preserve backward compatibility in systems relying on Loaded inputs, Outputs strings for validations.
Flag introduced:
--print-plugin-config-source
Default: falseIf required, we can eliminate this flag.
Sample output on telegraf init
Checklist
Related issues
resolves #16269