I am getting an error when trying to create a new Kibana index pattern:
Error: Bad Request
I don't have any details about why it's not working. Any thoughts?
...
I did apply the following the other day - intending to add an ingest_timestamp to all Elasticsearch indexes as per this article: Dec 12th, 2018: [EN][Elasticsearch] Automatically adding a timestamp to documents
Could this be causing issues?
PUT _ingest/pipeline/my_timestamp_pipeline
{
"description": "Adds a field to a document with the time of ingestion into Elasticsearch",
"processors": [
{
"set": {
"field": "ingest_timestamp",
"value": "{{_ingest.timestamp}}"
}
}
]
}
PUT /*/_settings
{
"settings": {
"default_pipeline": "my_timestamp_pipeline"
}
}