-
-
Notifications
You must be signed in to change notification settings - Fork 28
Description
i am trying to configuring my index like this
output {
elasticsearch {
host => 0.0.0.0
port => 9200
bulk_limit => 1000
bulk_timeout => 100
pipeline => imei-pipeline
index_prefix => "netflow-%{+YYYY-MM-dd.HH}"
data_type => netflow
}
}
but it now working i tried to run the DEBUG and its shows like evriting is ok but still don't receive any doc to my index.
it work for me only like this:
output {
elasticsearch {
host => 0.0.0.0
port => 9200
bulk_limit => 1000
bulk_timeout => 100
pipeline => imei-pipeline
index_prefix => netflow
data_type => netflow
}
}
also tried this conf:
output {
elasticsearch {
host => 0.0.0.0
port => 9200
bulk_limit => 1000
bulk_timeout => 100
pipeline => imei-pipeline
index => netflow-%{+YYYY-MM-dd.HH}
data_type => netflow
}
}
also don't work