InterviewSolution
Saved Bookmarks
| 1. |
What Are The Two Required Elements In Logstash Pipeline? |
|
Answer» A Logstash pipeline has TWO required elements, input and OUTPUT, and one OPTIONAL element, filter. The input plugins CONSUME data from a source, the filter plugins modify the data as you specify, and the output plugins write the data to a DESTINATION. A Logstash pipeline has two required elements, input and output, and one optional element, filter. The input plugins consume data from a source, the filter plugins modify the data as you specify, and the output plugins write the data to a destination. |
|