Bad Request error when creating a new Kibana index pattern

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"
  }
}

I see this response in the network panel... seems there is some more work needed to set this up

{"message":"mapping set to strict, dynamic introduction of [ingest_timestamp] within [_doc] is not allowed: [strict_dynamic_mapping_exception] mapping set to strict, dynamic introduction of [ingest_timestamp] within [_doc] is not allowed","statusCode":400,"error":"Bad Request"}

seems I shouldn't have updated the .kibana_* indexes

this solved it:

PUT /.kibana_*/_settings
{
"settings": {
"default_pipeline": null
}
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.