-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Remove the Arcsight module and the modules framework #16794
Changes from 2 commits
c2e15ad
74002f7
094092f
ecd7c1d
a3f35e1
b47188a
e74fd14
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,12 @@ package main | |
import ( | ||
"errors" | ||
"fmt" | ||
"gopkg.in/yaml.v2" | ||
donoghuc marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"io/ioutil" | ||
"log" | ||
"os" | ||
"strings" | ||
|
||
"gopkg.in/yaml.v2" | ||
) | ||
|
||
var validSettings = []string{ | ||
|
@@ -67,7 +68,6 @@ var validSettings = []string{ | |
"log.level", | ||
"log.format", | ||
"log.format.json.fix_duplicate_message_fields", | ||
"modules", | ||
"metric.collect", | ||
"path.logs", | ||
"path.plugins", | ||
|
@@ -126,8 +126,6 @@ var validSettings = []string{ | |
"xpack.management.elasticsearch.ssl.cipher_suites", | ||
"xpack.geoip.download.endpoint", | ||
"xpack.geoip.downloader.enabled", | ||
"cloud.id", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these "cloud" settings related to the module being removed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see these are removed in i18n etc too. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cloud.id is only used for modules |
||
"cloud.auth", | ||
} | ||
|
||
// Given a setting name, return a downcased version with delimiters removed. | ||
|
This file was deleted.
This file was deleted.
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
Cloud Settings
below still refer to module specific settingsvar.elasticsearch.hosts
andvar.kibana.host
, etc.If these settings are not relevant at all, we should remove them. If they are relevant to central management and internal collection, we should move and rework them
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.
deleted