Я новый пользователь в logstash и kibana. Я пытаюсь просмотреть свои журналы в кибане, в зависимости от того, какая там папка. Я запускаю службу logstash, которая содержит мой канал, как показано ниже
input {
file {
{ type => "STAGE-LOG-ADMIN"
path => "C:\Users\elkstask-master\stage-logs\admin/*.log"},
tags => ["ADMIN"] }
file {
{ type => "STAGE-LOG-MS02"
path => "C:\Users\elkstask-master\stage-logs\ms02/*.log"},
tags => ["MS02"] }
file {
{ type => "custom"
path => "C:\Users\elkstask-master/*.log"},
tags => ["custom"]
}
}
output {
if "ADMIN" in [tags] {
elasticsearch {
hosts => "localhost:9200"
index => "ADMIN"
document_type => "ADMIN-%{+YYYY.MM.dd}"
}
}
if "MS02" in [tags] {
elasticsearch {
hosts => "localhost:9200"
index => "MS02"
document_type => "MS02-%{+YYYY.MM.dd}"
}
}
if "custom" in [tags] {
elasticsearch {
hosts => "localhost:9200"
index => "custom"
document_type => "custom-%{+YYYY.MM.dd}"
}
}
}
, но вывод в kibana показывает всемои журналы, как показать его, разделенные папкой