Skip to content
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

Merged
merged 13 commits into from
Jan 22, 2025

Conversation

neelayu
Copy link
Contributor

@neelayu neelayu commented Dec 6, 2024

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: false

If required, we can eliminate this flag.

Sample output on telegraf init

2024-12-06T19:05:36Z I! Loaded inputs: cpu disk (2x) internal interrupts mem (2x) net (3x)
+--------------+------------------------------------------------------+
| Name         | Source(s)                                            |
+--------------+------------------------------------------------------+
| net (3x)     | /Users/user-of-unix/telegraf/configs1/config3.conf   |
|              | /Users/user-of-unix/telegraf/configs1/config1.conf   |
|              | /Users/user-of-unix/telegraf/configs1/config2.conf   |
+--------------+------------------------------------------------------+
| disk (2x)    | /Users/user-of-unix/telegraf/configs1/config2.conf   |
|              | /Users/user-of-unix/telegraf/configs1/config2.conf   |
+--------------+------------------------------------------------------+
| mem (2x)     | /Users/user-of-unix/telegraf/configs1/config4.conf   |
|              | /Users/user-of-unix/telegraf/configs1/config2.conf   |
+--------------+------------------------------------------------------+
| internal     | /Users/user-of-unix/telegraf/configs1/config2.conf   |
+--------------+------------------------------------------------------+
| interrupts   | /Users/user-of-unix/telegraf/configs1/config2.conf   |
+--------------+------------------------------------------------------+
| cpu          | /Users/user-of-unix/telegraf/configs1/config5.conf   |
+--------------+------------------------------------------------------+

Checklist

  • No AI generated code was used in this PR

Related issues

resolves #16269

@telegraf-tiger telegraf-tiger bot added the feat Improvement on an existing feature such as adding a new setting/mode to an existing plugin label Dec 6, 2024
@srebhan
Copy link
Member

srebhan commented Dec 9, 2024

@neelayu I really like this! Can we please make the flag being something like --print-plugin-config-source or --print-plugin-origin? This would be a bit more speaking I think and avoids the next flag being called --even-newer-plugin-print-behavior. ;-)

Furthermore, please fix the linter issues.

@srebhan srebhan self-assigned this Dec 9, 2024
@neelayu
Copy link
Contributor Author

neelayu commented Dec 10, 2024

@srebhan Thanks. I have made the changes. The test failure seems unrelated to my change though.

Copy link
Member

@srebhan srebhan left a 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 {
Copy link
Member

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.

Copy link
Contributor Author

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.

Copy link
Member

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... ;-)

Copy link
Contributor Author

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.

Copy link
Member

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.

Copy link
Contributor Author

@neelayu neelayu left a 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 {
Copy link
Contributor Author

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.

@srebhan
Copy link
Member

srebhan commented Dec 20, 2024

@neelayu you need to update the /docs/LICENSE_OF_DEPENDENCIES.md file with the new dependencies' license information. Please check make check-deps for what needs to be done!

@neelayu
Copy link
Contributor Author

neelayu commented Dec 20, 2024

@srebhan
I believe I have already added them here https://github.com/influxdata/telegraf/pull/16270/files#diff-2afa363df9dd5dc9cbf8b97542633fda73bf1747a7959b0da02e518a976db745R460

Not sure why it is asking me to remove them again?

--- /tmp/tmp.3FJLxju4ZG/LICENSE_OF_DEPENDENCIES.md      2024-12-16 06:45:42.992042502 +0000
+++ /tmp/tmp.3FJLxju4ZG/HEAD    2024-12-16 06:45:42.992042502 +0000
@@ -233,0 +234 @@
+github.com/jedib0t/go-pretty
@@ -259,0 +261 @@
+github.com/mattn/go-runewidth
@@ -333,0 +336 @@
+github.com/rivo/uniseg
@@ -455,3 +457,0 @@
-github.com/jedib0t/go-pretty
-github.com/mattn/go-runewidth
-github.com/rivo/uniseg


The docs/LICENSE_OF_DEPENDENCIES.md file does not contain the expected entries.

Lines prefixed with '+' should be added to LICENSE_OF_DEPENDENCIES.md and '-'
lines should be removed.

Include a link to the appropriate licenses for any additions.

@srebhan
Copy link
Member

srebhan commented Dec 20, 2024

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. ;-)

@neelayu
Copy link
Contributor Author

neelayu commented Dec 20, 2024

Thanks @srebhan.
Made the changes now

Copy link
Member

@srebhan srebhan left a 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.

@neelayu
Copy link
Contributor Author

neelayu commented Jan 16, 2025

@srebhan I have enforced the func signature. Let me know. Thanks!

@telegraf-tiger
Copy link
Contributor

Copy link
Member

@srebhan srebhan left a 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!

@srebhan srebhan added the ready for final review This pull request has been reviewed and/or tested by multiple users and is ready for a final review. label Jan 17, 2025
@srebhan srebhan assigned mstrandboge and unassigned srebhan Jan 17, 2025
@mstrandboge mstrandboge merged commit 0ec17e4 into influxdata:master Jan 22, 2025
20 of 24 checks passed
@github-actions github-actions bot added this to the v1.34.0 milestone Jan 22, 2025
@llamafilm
Copy link
Contributor

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?

image

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:
image
Increasing the journald LineMax might have other implications.

@neelayu
Copy link
Contributor Author

neelayu commented Mar 12, 2025

@llamafilm
For the first case, I think we can avoid redundancy. Thanks for pointing it out.
For the second case, I am not sure on how to display a table under a structured log format.

@llamafilm
Copy link
Contributor

@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.

@Hipska
Copy link
Contributor

Hipska commented Mar 25, 2025

Wow, totally missed this feature. Nice done!

However, wouldn't it have been nicer to use Unicode box drawing for this?

2024-12-06T19:05:36Z I! Loaded inputs: cpu disk (2x) internal interrupts mem (2x) net (3x)
┌──────────────┬──────────────────────────────────────────────────────────┐
│ Name         │ Source(s)                                                │
╞══════════════╪══════════════════════════════════════════════════════════╡
│ net (3x)     │ /Users/user-of-unix/telegraf/configs1/config3.conf       │
│              │ /Users/user-of-unix/telegraf/configs1/config1.conf       │
│              │ /Users/user-of-unix/telegraf/configs1/config2.conf       │
├──────────────┼──────────────────────────────────────────────────────────┤
│ disk (2x)    │ /Users/user-of-unix/telegraf/configs1/config2.conf (2x)  │
├──────────────┼──────────────────────────────────────────────────────────┤
│ mem (2x)     │ /Users/user-of-unix/telegraf/configs1/config4.conf       │
│              │ /Users/user-of-unix/telegraf/configs1/config2.conf       │
├──────────────┼──────────────────────────────────────────────────────────┤
│ internal     │ /Users/user-of-unix/telegraf/configs1/config2.conf       │
├──────────────┼──────────────────────────────────────────────────────────┤
│ interrupts   │ /Users/user-of-unix/telegraf/configs1/config2.conf       │
├──────────────┼──────────────────────────────────────────────────────────┤
│ cpu          │ /Users/user-of-unix/telegraf/configs1/config5.conf       │
└──────────────┴──────────────────────────────────────────────────────────┘

Using +, | and - looks so out-dated 😉

@neelayu
Copy link
Contributor Author

neelayu commented Mar 26, 2025

@Hipska
thanks for the feedback.

This can be achieved. Not sure if we can have a distinct separator for the header.

@Hipska
Copy link
Contributor

Hipska commented Mar 27, 2025

@neelayu I checked the used module for printing the tables and there is the option to use these unicode symbols (table.StyleLight), but indeed not to have specific heading separator. jedib0t/go-pretty#365

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/agent feat Improvement on an existing feature such as adding a new setting/mode to an existing plugin ready for final review This pull request has been reviewed and/or tested by multiple users and is ready for a final review.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Show loaded plugins source information(http or file)
5 participants