Hi experts.
As per my research
- index (Elastic Search) -> database (RDMS)
- type (Elastic Search) -> table (RDMS)
Can i know how i can set the type?
input {
beats {
port => 5044
...
type => "%{[fields][name_of_log]}"
}
}
...
output {
elasticsearch {
hosts => ["localhost:9200"]
index => "%{[fields][name_of_index]}"
}
}