-
Notifications
You must be signed in to change notification settings - Fork 0
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
optimizing logstash #90
Changes from 1 commit
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 |
---|---|---|
|
@@ -19,12 +19,12 @@ | |
|
||
##-- Platform | ||
# (Platform snippet should precede all other platform snippets) | ||
<%= File.read('src/logstash-filters/snippets/platform.conf') %> | ||
# special cases parsing | ||
<%= File.read('src/logstash-filters/snippets/platform-haproxy.conf') %> | ||
<%= File.read('src/logstash-filters/snippets/platform-uaa.conf') %> | ||
<%= File.read('src/logstash-filters/snippets/platform-vcap.conf') %> | ||
<%= File.read('src/logstash-filters/snippets/platform-gorouter.conf') %> | ||
# <%= File.read('src/logstash-filters/snippets/platform.conf') %> | ||
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. same question - can we delete instead of comment? |
||
# # special cases parsing | ||
# <%= File.read('src/logstash-filters/snippets/platform-haproxy.conf') %> | ||
# <%= File.read('src/logstash-filters/snippets/platform-uaa.conf') %> | ||
# <%= File.read('src/logstash-filters/snippets/platform-vcap.conf') %> | ||
# <%= File.read('src/logstash-filters/snippets/platform-gorouter.conf') %> | ||
|
||
# Teardown snippet (should follow all other snippets) | ||
<%= File.read('src/logstash-filters/snippets/teardown.conf') %> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,6 @@ if [@type] in ["syslog", "relp"] { | |
<%= File.read('src/logstash-filters/snippets/syslog_standard.conf').gsub(/^/, ' ') %> | ||
} | ||
|
||
if [syslog_program] == "nats_to_syslog" { | ||
<%= File.read('src/logstash-filters/snippets/bosh_nats.conf').gsub(/^/, ' ') %> | ||
} | ||
# if [syslog_program] == "nats_to_syslog" { | ||
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. delete instead of comment? |
||
# <%= File.read('src/logstash-filters/snippets/bosh_nats.conf').gsub(/^/, ' ') %> | ||
# } |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,12 @@ | |
|
||
##-- Platform | ||
# (Platform snippet should precede all other platform snippets) | ||
<%= File.read('src/logstash-filters/snippets/platform.conf') %> | ||
# special cases parsing | ||
<%= File.read('src/logstash-filters/snippets/platform-haproxy.conf') %> | ||
<%= File.read('src/logstash-filters/snippets/platform-uaa.conf') %> | ||
<%= File.read('src/logstash-filters/snippets/platform-vcap.conf') %> | ||
<%= File.read('src/logstash-filters/snippets/platform-gorouter.conf') %> | ||
# <%= File.read('src/logstash-filters/snippets/platform.conf') %> | ||
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 bet you know what I'm going to ask here ;) |
||
# # special cases parsing | ||
# <%= File.read('src/logstash-filters/snippets/platform-haproxy.conf') %> | ||
# <%= File.read('src/logstash-filters/snippets/platform-uaa.conf') %> | ||
# <%= File.read('src/logstash-filters/snippets/platform-vcap.conf') %> | ||
# <%= File.read('src/logstash-filters/snippets/platform-gorouter.conf') %> | ||
|
||
# Teardown snippet (should follow all other snippets) | ||
<%= File.read('src/logstash-filters/snippets/teardown.conf') %> |
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.
is there a reason to comment rather than just delete?