mirror of
https://github.com/elastic/logstash.git
synced 2025-04-23 22:27:21 -04:00
Quotes around pipeline names with dashes
Added quotes surrounding pipeline references that have dashes as logstash will throw an error otherwise Fixes #9903
This commit is contained in:
parent
5a49102b89
commit
0ecdc95e42
1 changed files with 3 additions and 3 deletions
|
@ -157,17 +157,17 @@ Here is an example of the forked path configuration.
|
|||
queue.type: persisted
|
||||
config.string: |
|
||||
input { beats { port => 5044 } }
|
||||
output { pipeline { send_to => [internal-es, partner-s3] } }
|
||||
output { pipeline { send_to => ["internal-es", "partner-s3"] } }
|
||||
- pipeline.id: buffered-es
|
||||
queue.type: persisted
|
||||
config.string: |
|
||||
input { pipeline { address => internal-es } }
|
||||
input { pipeline { address => "internal-es" } }
|
||||
# Index the full event
|
||||
output { elasticsearch { } }
|
||||
- pipeline.id: partner
|
||||
queue.type: persisted
|
||||
config.string: |
|
||||
input { pipeline { address => partner-s3 } }
|
||||
input { pipeline { address => "partner-s3" } }
|
||||
filter {
|
||||
# Remove the sensitive data
|
||||
mutate { remove_field => 'sensitive-data' }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue