-
Notifications
You must be signed in to change notification settings - Fork 251
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: adds fluentd monitor_agent input plugin #967
feat: adds fluentd monitor_agent input plugin #967
Conversation
6a17c3d
to
47e80aa
Compare
// If you set this parameter, this plugin emits metrics as records. | ||
Tag *string `json:"tag,omitempty"` | ||
// The interval time between event emits. This will be used when "tag" is configured. | ||
EmitInterval *int64 `json:"emit_interval,omitempty"` |
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 for this PR @joshuabaird !
All the field of CRDs in fluent operator use camelCase, should be emitInterval
instead of emit_interval
, while the config files items should be consistent with fluentbit or fluentd conversion which is emit_interval
.
https://github.com/fluent/fluent-operator/blob/master/apis/fluentd/v1alpha1/plugins/output/opensearch.go#L20 opensearch output plugin is an example
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.
Fixed in a6fcd16
You may need to run |
@benjaminhuo @wenchajun It looks like the lint CI job is failing (in all PRs) due to an unrelated reason:
|
@joshuabaird would you please rebase the master branch? I just upgrade helm/chart-testing-action to v2.6.0 to fix error "ERROR: Unable to validate cosign version: 'v2.0.0'" |
Dont forget to sign your commit by: git commit -s --amend
git push -f |
6c17a26
to
a2ac3fb
Compare
It looks like things are still broken:
|
e84743b
to
fc9067f
Compare
Maybe you should rebase it. |
fixed #979 |
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
Signed-off-by: Josh Baird <[email protected]>
fc9067f
to
9fd2ce1
Compare
@joshuabaird Thank you! |
What this PR does / why we need it:
The in_monitor_agent Input plugin exports Fluentd's internal metrics via REST API. It is included in Fluentd's core.
Which issue(s) this PR fixes:
N/A
Does this PR introduced a user-facing change?
N/A