-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Add missing outputs to apm server spec file #26885
Conversation
Pinging @elastic/agent (Team:Agent) |
💚 Build Succeeded
Expand to view the summary
Build stats
Test stats 🧪
Trends 🧪💚 Flaky test reportTests succeeded. Expand to view the summary
Test stats 🧪
|
@@ -32,4 +32,5 @@ rules: | |||
- output | |||
- fleet | |||
- inject_headers: {} | |||
when: length(${inputs}) > 0 and hasKey(${output}, 'elasticsearch') | |||
when: length(${inputs}) > 0 and hasKey(${output}, 'elasticsearch', 'redis', | |||
'kafka', 'logstash') |
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.
My information was that redis
will not be supported for now?
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.
just copy and paste from the other Beats. I would like to keep all libbeat based process types in sync. Removing redis should be done separately.
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 add changelog, lgtm
silvia has some copy rules with elasticsearch hardcoded (not in just yet), we need to verify later on if this wont' fail if ES is missing
This might be a problem in general. The condition is only executed at the end. If users have configured LS, that might still fail even before we hit the condition. |
yeah we just need to make sure it wont panics. if it's missing it should be noop. |
This pull request is now in conflicts. Could you fix it? 🙏
|
(cherry picked from commit cf0cd20)
(cherry picked from commit cf0cd20) # Conflicts: # x-pack/elastic-agent/pkg/agent/program/supported.go
…27234) (cherry picked from commit cf0cd20) Co-authored-by: Steffen Siering <[email protected]>
…27235) Co-authored-by: Steffen Siering <[email protected]>
What does this PR do?
Why is it important?
Parity with other spec files for services based on libbeat.