Dear Team,
need a advise we are ingesting data from filebeat to ES using the ingest pipeline in ES
I have created an ingest pipeline and also created an index template in that defined the ingest pipeline
"PUT _ingest/pipeline/beat_test
{
"description": "THN Test",
"processors": [{
"json": {
"field": "message",
"add_to_root": false,
"target_field": "fields",
"ignore_failure" : true
}
}
]
}
PUT _component_template/logs-my_app-settings
{
"template": {
"settings": {
"index.default_pipeline": "beat_test"
}
}
}
PUT _index_template/logs-my_app-template
{
"index_patterns": ["logs_json"],
"composed_of": ["logs-my_app-settings"]
}"
and the output of my filebeat is
'
output.Elasticsearch:
hosts: ["https://ESIP:PORT"]
username: "test_data"
password: "*****"
pipeline: "beat_test"
'
Still not getting data in the ES defined index
a help would be highly appreicated
Regards