Skip to content

Commit 47da4d3

Browse files
authored
Fix broken Logstash samples (elastic#8801)
Logstash samples were broken since 9.0.0 as the log input type is no longer supported.
1 parent daed7c5 commit 47da4d3

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

config/recipes/logstash/logstash-eck.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ spec:
3131
version: 9.0.0
3232
config:
3333
filebeat.inputs:
34-
- type: log
34+
- type: filestream
35+
id: logstash-tutorial
3536
paths:
3637
- /data/logstash-tutorial.log
3738
output.logstash:

config/recipes/logstash/logstash-monitored.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ spec:
3131
version: 9.0.0
3232
config:
3333
filebeat.inputs:
34-
- type: log
34+
- type: filestream
35+
id: logstash
3536
paths:
3637
- /data/logstash-tutorial.log
3738
output.logstash:

config/recipes/logstash/logstash-multi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ spec:
4242
version: 9.0.0
4343
config:
4444
filebeat.inputs:
45-
- type: log
45+
- type: filestream
46+
id: logstash-tutorial
4647
paths:
4748
- /data/logstash-tutorial.log
4849
output.logstash:

config/recipes/logstash/logstash-pipeline-as-secret.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ spec:
3131
version: 9.0.0
3232
config:
3333
filebeat.inputs:
34-
- type: log
34+
- type: filestream
35+
id: logstash-tutorial
3536
paths:
3637
- /data/logstash-tutorial.log
3738
output.logstash:

config/recipes/logstash/logstash-pipeline-as-volume.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ spec:
3131
version: 9.0.0
3232
config:
3333
filebeat.inputs:
34-
- type: log
34+
- type: filestream
35+
id: logstash-tutorial
3536
paths:
3637
- /data/logstash-tutorial.log
3738
output.logstash:

config/recipes/logstash/logstash-volumes.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ spec:
2121
version: 9.0.0
2222
config:
2323
filebeat.inputs:
24-
- type: log
24+
- type: filestream
25+
id: logstash-tutorial
2526
paths:
2627
- /data/logstash-tutorial.log
2728
output.logstash:

deploy/eck-stack/examples/logstash/basic-eck.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ eck-beats:
5656
type: filebeat
5757
config:
5858
filebeat.inputs:
59-
- type: log
59+
- type: filestream
60+
id: logstash-tutorial
6061
paths:
6162
- /data/logstash-tutorial.log
6263
processors:

0 commit comments

Comments
 (0)