Usage of Opensearch Output Connector with Event Objects

The following example demonstrates the delivery of events to the opensearch output connector

[10]:
%%bash
docker compose -f ../../../../../examples/compose/docker-compose.yml down -v
docker compose -f ../../../../../examples/compose/docker-compose.yml up -d opensearch dashboards
 Network compose_opensearch  Creating
 Network compose_opensearch  Created
 Volume "compose_opensearch-data"  Creating
 Volume "compose_opensearch-data"  Created
 Container opensearch  Creating
 Container opensearch  Created
 Container dashboards  Creating
 Container dashboards  Created
 Container opensearch  Starting
 Container opensearch  Started
 Container dashboards  Starting
 Container dashboards  Started
[26]:
from typing import Iterator
from logprep.factory import Factory
from logprep.util.time import TimeParser
from logprep.ng.connector.opensearch.output import OpensearchOutput
from logprep.ng.event.log_event import LogEvent
from logprep.ng.event.event_state import EventStateType

config = {
    "type": "ng_opensearch_output",
    "hosts": [
        "127.0.0.1:9200"
    ],
    "default_index": "processed",
    "default_op_type": "create",
    "message_backlog_size": 1000,
    "timeout": 10000,
    "flush_timeout": 60,
    "user": "admin",
    "secret": "admin",
    "desired_cluster_status": ["green", "yellow"]
}

opensearch_output: OpensearchOutput = Factory.create({"my-opensearch": config})
opensearch_output.setup()


events: Iterator = [
    LogEvent({"message": f"Event {i}", "@timestamp": TimeParser.now()}, original=b"", state=EventStateType.PROCESSED)
    for i in range(2000)
]

# store events in the Opensearch output
for event in events:
    opensearch_output.store(event)

# Flush the output to ensure all events are sent
opensearch_output.flush()

# Verify that all events are delivered
for event in events:
    assert event.state == EventStateType.DELIVERED, f"Event {event.data['message']} not delivered | State: {event.state}"


The following case demonstrates error handling in the opensearch output connector. It depends on the first example. There the @timestamp field was indexed by opensearch and we defined it as a time field. Next we try to send other data to this field to provoke a mapper parsing error.

[28]:
events: Iterator = [
    LogEvent({"message": f"Event {i}", "@timestamp": "this is not a timestamp"}, original=b"", state=EventStateType.PROCESSED)
    for i in range(2000)
]

# store events in the Opensearch output
for event in events:
    opensearch_output.store(event)

# Flush the output to ensure all events are sent
opensearch_output.flush()
# Verify that all events are delivered
for event in events:
    assert event.state == EventStateType.FAILED
    assert len(event.errors) == 1
    print (f"Event {event.data['message']} failed with error: {event.errors[0]}")
Event Event 0 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 2 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'h2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 3 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 4 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 5 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'imfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 6 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'i2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 7 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 8 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 9 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 10 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'j2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 11 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 12 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 13 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 14 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'k2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 15 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 16 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 17 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 18 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'l2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 19 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 20 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 21 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 22 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'm2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 23 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 24 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 25 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 26 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'n2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 27 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 28 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 29 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'omfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 30 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'o2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 31 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 32 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 33 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 34 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'p2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 35 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 36 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 37 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 38 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'q2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 39 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 40 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 41 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 42 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'r2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 43 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 44 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 45 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'smfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 46 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 's2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 47 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 48 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 49 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 50 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 't2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 51 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 52 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 53 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'umfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 54 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'u2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 55 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 56 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 57 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 58 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'v2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 59 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 60 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 61 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 62 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'w2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 63 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 64 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 65 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 66 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'x2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 67 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 68 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 69 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ymfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 70 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'y2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 71 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zGfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 72 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zWfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 73 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zmfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 74 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'z2fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 75 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0GfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 76 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0WfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 77 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0mfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 78 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '02fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 79 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1GfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 80 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1WfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 81 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1mfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 82 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '12fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 83 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2GfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 84 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2WfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 85 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2mfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 86 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '22fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 87 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3GfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 88 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3WfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 89 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3mfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 90 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '32fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 91 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4GfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 92 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4WfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 93 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4mfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 94 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '42fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 95 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5GfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 96 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5WfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 97 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5mfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 98 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '52fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 99 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6GfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 100 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6WfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 101 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6mfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 102 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '62fcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 103 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7GfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 104 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7WfcT5gBBm02-UH_EwM-'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 105 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7mfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 106 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '72fcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 107 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8GfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 108 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8WfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 109 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8mfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 110 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '82fcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 111 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9GfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 112 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9WfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 113 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9mfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 114 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '92fcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 115 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-GfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 116 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-WfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 117 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-mfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 118 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-2fcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 119 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_GfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 120 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_WfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 121 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_mfcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 122 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_2fcT5gBBm02-UH_EwM_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 123 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 124 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 125 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 126 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'A2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 127 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 128 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 129 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 130 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'B2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 131 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 132 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 133 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 134 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'C2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 135 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 136 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 137 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 138 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'D2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 139 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 140 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 141 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 142 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'E2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 143 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 144 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 145 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 146 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'F2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 147 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 148 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 149 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 150 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'G2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 151 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 152 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 153 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 154 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'H2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 155 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 156 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 157 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ImfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 158 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'I2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 159 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 160 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 161 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 162 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'J2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 163 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 164 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 165 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 166 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'K2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 167 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 168 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 169 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 170 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'L2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 171 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 172 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 173 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 174 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'M2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 175 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 176 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 177 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 178 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'N2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 179 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 180 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 181 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 182 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'O2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 183 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 184 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 185 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 186 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'P2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 187 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 188 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 189 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 190 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 191 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 192 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 193 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'R2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 194 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 195 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 196 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 197 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'S2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 198 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 199 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 200 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 201 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 202 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 203 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 204 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 205 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 206 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'W2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 207 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 208 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'X2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 209 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 210 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Y2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 211 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 212 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Z2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 213 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 214 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'a2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 215 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 216 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 217 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 218 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 219 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 220 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 221 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 222 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'emfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 223 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 224 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 225 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 226 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 227 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 228 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 229 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 230 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'imfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 231 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 232 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 233 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 234 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 235 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 236 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 237 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 238 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 239 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 240 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 241 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 242 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'omfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 243 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 244 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 245 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 246 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 247 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 248 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 249 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 250 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'smfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 251 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 252 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 253 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 254 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'umfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 255 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 256 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 257 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 258 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 259 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 260 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 261 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 262 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ymfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 263 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 264 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 265 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 266 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 267 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 268 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 269 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 270 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 271 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 272 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 273 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 274 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 275 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 276 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 277 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 278 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 279 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 280 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 281 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 282 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 283 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 284 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 285 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 286 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 287 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_GfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 288 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_mfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 289 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 290 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 291 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 292 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 293 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 294 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 295 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 296 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 297 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 298 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 299 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 300 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 301 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 302 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 303 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 304 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 305 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 306 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ImfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 307 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 308 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 309 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 310 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 311 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 312 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 313 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 314 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 315 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 316 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 317 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'N2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 318 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 319 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'O2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 320 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 321 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'P2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 322 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 323 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Q2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 324 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 325 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 326 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'R2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 327 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 328 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'S2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 329 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 330 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'T2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 331 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 332 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'U2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 333 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 334 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'V2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 335 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 336 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'W2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 337 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 338 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'X2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 339 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 340 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Y2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 341 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 342 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Z2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 343 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 344 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'a2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 345 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 346 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'b2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 347 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 348 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'c2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 349 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 350 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'd2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 351 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 352 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'e2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 353 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 354 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'f2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 355 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 356 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'g2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 357 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 358 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'h2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 359 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 360 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'imfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 361 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 362 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 363 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 364 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 365 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 366 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 367 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 368 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 369 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 370 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 371 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 372 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'omfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 373 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 374 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 375 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 376 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 377 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 378 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 379 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 380 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'smfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 381 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 382 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 383 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 384 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'umfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 385 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 386 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 387 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 388 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 389 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 390 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 391 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 392 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ymfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 393 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 394 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 395 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 396 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 397 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 398 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 399 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 400 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '22fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 401 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 402 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '32fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 403 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 404 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '42fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 405 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 406 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '52fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 407 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 408 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '62fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 409 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 410 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '72fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 411 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 412 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '82fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 413 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 414 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '92fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 415 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 416 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 417 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 418 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 419 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 420 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'A2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 421 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 422 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'B2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 423 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 424 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'C2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 425 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 426 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'D2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 427 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 428 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'E2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 429 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 430 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'F2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 431 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 432 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'G2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 433 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 434 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'H2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 435 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 436 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'I2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 437 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 438 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'J2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 439 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 440 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'K2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 441 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 442 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'L2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 443 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 444 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'M2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 445 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 446 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'N2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 447 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 448 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 449 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 450 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 451 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 452 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 453 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 454 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 455 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 456 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 457 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 458 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 459 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 460 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 461 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 462 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 463 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 464 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 465 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 466 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 467 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 468 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 469 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Y2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 470 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 471 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Z2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 472 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 473 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'a2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 474 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 475 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'b2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 476 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 477 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'c2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 478 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 479 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'd2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 480 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 481 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'e2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 482 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 483 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'f2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 484 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 485 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'g2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 486 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 487 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'h2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 488 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 489 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'i2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 490 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 491 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 492 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 493 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'k2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 494 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 495 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 496 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 497 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'm2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 498 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 499 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'n2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 500 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Q2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 501 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 502 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'T2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 503 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 504 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'U2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 505 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 506 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'V2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 507 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 508 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 509 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 510 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 511 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 512 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 513 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZmfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 514 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aGfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 515 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'amfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 516 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 517 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'b2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 518 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 519 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'c2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 520 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 521 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'd2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 522 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 523 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'e2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 524 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 525 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'f2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 526 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 527 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'g2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 528 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 529 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'h2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 530 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 531 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'i2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 532 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 533 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'j2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 534 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 535 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'k2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 536 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 537 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'l2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 538 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 539 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'm2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 540 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 541 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'n2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 542 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 543 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'o2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 544 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 545 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'p2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 546 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 547 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'q2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 548 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 549 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'r2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 550 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 551 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 's2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 552 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 553 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 't2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 554 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 555 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'u2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 556 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 557 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'v2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 558 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 559 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'w2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 560 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 561 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'x2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 562 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 563 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'y2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 564 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zWfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 565 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'z2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 566 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 567 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '02fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 568 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 569 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '12fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 570 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 571 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '22fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 572 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 573 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '32fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 574 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 575 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '42fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 576 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 577 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '52fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 578 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 579 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '62fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 580 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 581 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '72fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 582 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 583 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '82fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 584 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 585 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '92fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 586 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 587 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 588 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_WfcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 589 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_2fcT5gBBm02-UH_EwQ_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 590 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 591 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'A2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 592 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 593 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'B2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 594 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 595 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'C2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 596 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 597 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'D2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 598 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 599 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'E2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 600 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 601 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'F2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 602 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 603 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'G2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 604 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 605 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'H2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 606 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 607 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'I2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 608 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 609 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'J2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 610 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 611 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'K2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 612 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 613 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'L2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 614 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 615 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'M2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 616 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 617 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 618 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 619 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 620 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 621 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 622 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 623 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 624 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 625 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 626 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 627 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 628 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 629 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 630 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 631 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 632 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 633 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 634 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 635 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 636 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 637 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 638 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 639 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 640 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 641 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'amfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 642 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 643 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 644 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 645 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 646 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 647 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 648 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 649 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'emfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 650 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 651 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 652 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 653 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 654 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 655 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hmfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 656 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iGfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 657 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'i2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 658 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 659 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'j2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 660 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 661 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'k2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 662 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 663 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'l2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 664 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 665 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'm2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 666 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 667 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'n2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 668 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 669 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'o2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 670 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 671 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'p2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 672 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 673 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'q2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 674 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 675 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'r2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 676 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 677 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 's2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 678 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 679 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 't2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 680 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 681 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'u2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 682 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 683 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'v2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 684 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 685 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'w2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 686 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 687 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'x2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 688 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 689 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'y2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 690 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zWfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 691 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'z2fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 692 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 693 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '02fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 694 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 695 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '12fcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 696 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2WfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 697 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 698 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 699 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 700 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 701 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 702 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 703 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 704 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 705 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 706 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 707 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 708 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 709 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 710 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 711 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 712 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 713 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 714 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_GfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 715 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_mfcT5gBBm02-UH_EwU_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 716 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 717 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 718 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 719 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 720 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 721 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 722 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 723 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 724 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 725 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 726 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 727 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 728 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 729 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 730 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 731 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 732 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 733 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ImfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 734 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 735 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 736 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 737 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 738 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 739 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 740 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 741 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 742 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 743 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 744 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 745 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'O2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 746 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 747 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'P2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 748 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 749 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Q2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 750 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 751 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'R2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 752 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 753 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'S2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 754 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 755 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'T2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 756 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 757 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'U2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 758 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 759 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'V2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 760 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 761 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'W2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 762 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 763 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'X2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 764 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 765 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 766 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 767 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 768 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'amfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 769 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 770 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 771 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 772 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 773 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 774 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 775 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 776 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'emfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 777 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 778 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 779 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 780 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 781 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 782 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 783 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 784 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'imfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 785 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 786 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'j2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 787 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 788 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 789 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 790 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'l2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 791 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 792 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 793 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 794 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 795 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 796 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 797 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'omfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 798 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'o2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 799 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 800 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 801 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 802 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'p2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 803 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 804 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 805 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 806 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'q2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 807 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 808 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 809 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 810 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'r2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 811 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 812 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 813 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'smfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 814 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 's2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 815 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 816 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 817 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 818 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 't2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 819 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 820 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 821 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'umfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 822 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'u2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 823 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 824 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 825 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 826 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'v2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 827 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 828 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 829 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 830 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'w2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 831 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 832 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 833 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 834 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'x2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 835 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 836 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 837 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ymfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 838 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'y2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 839 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zGfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 840 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zWfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 841 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zmfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 842 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'z2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 843 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 844 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 845 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 846 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '02fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 847 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 848 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 849 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 850 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '12fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 851 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 852 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 853 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 854 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '22fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 855 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 856 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 857 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 858 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '32fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 859 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 860 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 861 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 862 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '42fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 863 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 864 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 865 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 866 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '52fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 867 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 868 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 869 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 870 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '62fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 871 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 872 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 873 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 874 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '72fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 875 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 876 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 877 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 878 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '82fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 879 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 880 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 881 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 882 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '92fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 883 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 884 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 885 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 886 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 887 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_GfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 888 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_WfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 889 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_mfcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 890 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_2fcT5gBBm02-UH_EwY_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 891 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 892 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 893 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 894 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'A2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 895 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 896 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 897 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 898 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'B2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 899 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 900 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 901 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 902 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'C2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 903 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 904 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 905 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 906 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'D2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 907 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 908 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 909 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 910 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'E2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 911 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 912 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 913 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 914 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'F2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 915 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 916 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 917 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 918 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'G2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 919 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 920 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 921 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 922 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'H2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 923 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 924 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 925 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ImfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 926 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'I2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 927 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 928 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 929 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 930 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'J2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 931 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 932 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 933 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 934 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'K2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 935 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 936 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 937 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 938 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'L2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 939 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 940 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 941 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 942 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'M2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 943 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 944 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 945 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 946 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'N2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 947 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 948 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 949 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 950 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'O2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 951 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 952 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 953 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 954 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'P2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 955 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 956 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 957 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 958 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Q2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 959 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 960 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 961 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 962 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'R2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 963 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 964 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 965 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 966 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'S2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 967 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 968 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 969 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 970 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'T2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 971 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 972 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 973 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 974 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'U2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 975 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 976 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 977 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 978 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'V2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 979 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 980 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 981 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 982 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'W2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 983 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 984 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 985 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 986 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'X2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 987 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 988 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 989 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 990 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Y2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 991 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 992 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 993 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZmfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 994 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Z2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 995 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 996 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aWfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 997 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'amfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 998 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'a2fcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 999 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bGfcT5gBBm02-UH_Ewc_'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1000 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1001 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1002 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'omfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1003 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1004 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1005 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1006 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1007 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1008 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1009 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1010 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'smfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1011 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1012 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1013 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1014 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'umfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1015 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1016 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'v2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1017 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1018 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'w2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1019 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1020 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'x2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1021 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1022 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'y2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1023 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1024 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1025 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1026 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1027 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1028 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1029 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '22fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1030 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1031 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '32fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1032 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1033 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '42fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1034 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1035 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '52fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1036 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1037 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '62fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1038 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1039 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '72fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1040 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1041 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '82fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1042 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1043 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '92fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1044 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1045 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1046 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1047 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1048 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1049 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1050 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1051 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1052 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1053 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1054 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1055 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1056 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1057 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1058 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1059 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1060 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1061 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1062 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1063 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1064 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1065 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ImfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1066 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1067 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1068 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1069 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'K2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1070 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1071 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'L2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1072 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1073 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'M2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1074 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1075 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'N2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1076 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1077 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'O2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1078 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1079 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'P2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1080 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1081 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Q2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1082 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1083 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'R2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1084 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1085 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'S2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1086 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1087 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'T2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1088 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1089 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'U2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1090 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1091 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1092 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1093 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1094 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1095 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1096 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1097 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1098 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1099 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1100 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'amfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1101 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1102 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1103 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1104 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1105 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1106 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1107 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1108 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'emfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1109 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1110 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'f2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1111 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1112 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'g2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1113 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1114 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'h2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1115 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1116 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'i2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1117 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1118 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'j2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1119 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1120 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'k2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1121 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1122 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'l2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1123 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1124 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'm2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1125 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1126 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'n2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1127 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1128 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1129 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1130 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1131 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1132 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1133 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1134 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1135 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'smfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1136 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1137 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1138 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1139 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'umfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1140 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1141 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1142 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1143 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'w2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1144 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1145 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'x2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1146 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1147 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'y2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1148 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1149 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'z2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1150 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1151 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1152 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1153 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1154 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1155 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1156 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1157 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1158 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1159 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1160 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1161 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1162 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1163 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1164 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1165 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1166 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1167 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1168 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '92fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1169 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1170 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1171 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1172 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1173 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1174 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'A2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1175 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1176 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'B2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1177 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1178 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'C2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1179 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1180 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'D2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1181 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1182 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'E2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1183 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1184 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'F2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1185 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1186 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'G2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1187 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1188 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'H2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1189 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1190 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'I2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1191 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1192 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'J2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1193 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1194 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'K2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1195 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1196 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1197 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1198 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'M2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1199 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1200 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'N2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1201 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1202 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'O2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1203 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1204 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'P2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1205 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1206 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Q2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1207 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1208 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'R2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1209 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1210 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'S2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1211 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1212 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'T2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1213 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1214 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'U2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1215 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1216 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1217 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1218 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1219 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1220 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1221 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1222 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1223 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1224 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1225 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'amfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1226 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1227 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1228 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1229 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1230 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1231 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1232 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1233 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'e2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1234 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1235 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'f2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1236 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1237 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1238 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1239 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1240 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'imfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1241 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1242 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1243 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1244 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1245 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1246 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1247 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1248 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'm2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1249 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1250 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'n2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1251 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1252 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'o2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1253 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1254 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'p2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1255 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1256 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'q2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1257 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1258 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'r2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1259 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1260 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 's2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1261 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1262 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 't2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1263 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1264 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'u2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1265 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1266 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'v2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1267 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1268 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'w2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1269 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1270 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'x2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1271 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1272 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'y2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1273 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1274 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'z2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1275 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1276 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '02fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1277 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1278 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1279 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1280 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1281 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1282 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1283 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1284 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1285 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1286 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1287 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '62fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1288 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1289 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '72fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1290 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1291 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '82fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1292 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1293 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '92fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1294 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1295 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1296 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1297 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1298 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1299 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1300 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1301 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1302 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1303 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1304 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1305 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1306 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1307 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1308 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1309 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1310 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1311 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1312 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1313 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1314 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ImfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1315 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1316 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1317 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1318 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1319 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1320 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1321 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1322 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1323 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1324 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1325 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1326 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1327 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1328 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1329 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1330 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Q2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1331 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1332 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'R2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1333 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1334 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'S2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1335 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1336 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'T2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1337 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1338 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'U2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1339 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1340 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1341 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1342 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1343 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1344 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1345 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1346 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1347 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1348 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1349 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'amfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1350 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1351 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1352 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1353 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1354 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1355 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1356 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1357 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'emfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1358 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1359 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1360 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1361 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1362 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1363 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'h2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1364 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1365 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'i2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1366 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1367 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'j2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1368 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1369 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1370 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1371 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1372 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1373 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1374 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1375 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1376 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'omfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1377 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1378 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1379 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1380 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1381 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1382 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'r2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1383 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1384 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 's2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1385 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1386 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 't2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1387 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1388 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'u2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1389 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1390 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1391 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1392 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1393 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1394 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1395 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ymfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1396 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1397 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1398 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1399 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '02fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1400 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1401 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1402 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '22fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1403 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1404 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1405 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1406 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1407 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1408 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1409 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1410 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1411 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1412 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1413 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1414 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1415 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1416 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1417 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1418 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1419 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1420 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1421 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1422 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1423 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'B2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1424 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1425 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1426 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'C2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1427 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1428 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1429 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1430 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'D2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1431 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1432 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1433 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1434 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'E2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1435 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1436 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1437 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1438 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'F2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1439 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1440 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1441 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1442 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'G2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1443 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1444 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1445 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1446 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'H2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1447 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1448 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1449 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ImfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1450 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'I2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1451 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1452 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1453 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1454 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'J2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1455 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1456 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1457 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1458 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'K2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1459 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1460 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1461 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1462 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'L2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1463 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1464 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1465 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1466 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'M2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1467 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1468 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1469 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1470 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'N2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1471 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1472 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1473 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1474 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'O2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1475 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1476 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1477 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1478 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'P2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1479 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1480 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1481 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1482 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Q2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1483 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1484 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1485 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1486 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'R2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1487 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1488 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1489 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1490 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'S2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1491 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1492 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1493 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1494 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'T2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1495 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1496 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1497 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1498 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'U2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1499 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1500 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1501 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bmfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1502 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'b2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1503 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1504 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1505 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cmfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1506 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'c2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1507 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1508 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1509 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dmfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1510 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'd2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1511 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1512 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1513 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'emfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1514 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'e2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1515 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1516 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1517 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fmfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1518 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'f2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1519 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1520 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1521 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gmfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1522 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'g2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1523 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1524 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1525 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hmfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1526 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'h2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1527 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1528 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1529 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'imfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1530 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'i2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1531 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1532 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1533 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jmfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1534 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'j2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1535 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1536 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kWfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1537 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kmfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1538 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'k2fcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1539 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lGfcT5gBBm02-UH_Ewdl'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1540 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1541 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1542 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'l2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1543 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1544 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1545 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'm2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1546 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1547 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1548 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1549 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'n2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1550 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1551 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'o2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1552 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1553 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'p2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1554 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1555 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'q2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1556 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1557 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'r2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1558 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1559 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 's2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1560 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1561 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 't2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1562 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1563 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'u2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1564 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1565 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1566 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1567 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1568 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1569 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xmfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1570 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1571 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ymfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1572 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zGfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1573 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zWfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1574 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'z2fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1575 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1576 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '02fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1577 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1WfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1578 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '12fcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1579 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1580 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1581 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1582 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1583 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1584 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1585 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1586 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1587 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1588 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1589 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1590 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1591 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1592 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1593 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1594 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1595 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1596 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-mfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1597 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_GfcT5gBBm02-UH_Ewdm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1598 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1599 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'A2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1600 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1601 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'B2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1602 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1603 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'C2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1604 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1605 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'D2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1606 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1607 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1608 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'E2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1609 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1610 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'F2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1611 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1612 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'G2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1613 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1614 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'H2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1615 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1616 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'I2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1617 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1618 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'J2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1619 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1620 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1621 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1622 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1623 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1624 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1625 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1626 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1627 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1628 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1629 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1630 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1631 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1632 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1633 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1634 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1635 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1636 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1637 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1638 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1639 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1640 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1641 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1642 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1643 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'V2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1644 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1645 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'W2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1646 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1647 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'X2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1648 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1649 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Y2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1650 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1651 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Z2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1652 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1653 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'a2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1654 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1655 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'b2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1656 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1657 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'c2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1658 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1659 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'd2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1660 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1661 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'e2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1662 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1663 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1664 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1665 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1666 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1667 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1668 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1669 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'imfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1670 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1671 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1672 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1673 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1674 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1675 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1676 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1677 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1678 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1679 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1680 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1681 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'omfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1682 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'o2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1683 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1684 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'p2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1685 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1686 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'q2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1687 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1688 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'r2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1689 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1690 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 's2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1691 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1692 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 't2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1693 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uWfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1694 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'u2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1695 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1696 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'v2fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1697 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1698 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1699 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1700 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1701 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1702 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ymfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1703 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zGfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1704 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zmfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1705 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1706 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1707 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '02fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1708 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1709 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '12fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1710 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1711 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '22fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1712 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1713 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '32fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1714 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1715 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '42fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1716 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1717 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '52fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1718 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1719 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '62fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1720 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1721 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '72fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1722 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1723 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '82fcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1724 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9WfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1725 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1726 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1727 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1728 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_GfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1729 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_mfcT5gBBm02-UH_Ewhm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1730 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1731 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1732 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1733 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1734 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1735 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1736 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1737 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1738 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1739 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1740 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1741 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1742 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1743 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1744 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1745 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1746 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1747 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ImfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1748 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1749 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1750 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1751 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1752 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1753 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1754 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'L2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1755 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1756 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1757 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1758 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1759 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1760 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1761 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1762 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1763 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1764 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1765 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1766 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1767 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1768 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1769 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1770 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1771 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1772 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1773 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1774 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'V2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1775 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1776 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'W2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1777 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1778 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'X2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1779 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1780 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Y2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1781 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1782 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Z2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1783 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1784 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'a2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1785 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1786 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'b2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1787 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1788 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'c2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1789 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1790 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'd2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1791 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1792 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'emfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1793 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1794 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1795 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1796 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1797 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'g2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1798 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1799 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'h2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1800 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1801 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'i2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1802 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1803 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'j2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1804 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1805 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'k2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1806 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lWfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1807 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'l2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1808 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1809 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1810 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1811 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1812 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1813 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'omfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1814 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1815 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1816 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1817 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1818 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1819 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1820 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1821 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'smfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1822 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1823 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1824 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1825 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'umfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1826 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1827 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1828 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1829 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1830 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1831 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1832 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1833 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ymfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1834 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zGfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1835 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zmfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1836 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1837 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1838 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1839 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1840 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '12fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1841 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1842 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '22fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1843 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1844 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '32fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1845 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1846 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '42fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1847 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1848 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '52fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1849 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1850 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1851 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1852 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1853 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1854 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1855 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1856 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9mfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1857 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-GfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1858 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1859 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1860 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_WfcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1861 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_2fcT5gBBm02-UH_Ewlm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1862 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1863 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'A2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1864 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1865 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'B2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1866 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1867 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'C2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1868 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'DWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1869 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'D2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1870 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'EWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1871 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'E2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1872 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'FWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1873 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'F2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1874 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'GWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1875 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'G2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1876 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'HWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1877 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'H2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1878 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'IWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1879 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'I2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1880 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'JWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1881 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'J2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1882 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'KWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1883 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'K2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1884 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'LWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1885 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'L2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1886 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'MWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1887 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'M2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1888 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'NWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1889 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'N2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1890 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'OWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1891 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'O2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1892 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'PWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1893 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'P2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1894 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1895 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'QmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1896 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1897 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'RmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1898 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1899 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'SmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1900 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1901 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'TmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1902 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1903 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'UmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1904 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1905 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'VmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1906 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'V2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1907 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'WWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1908 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'W2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1909 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'XWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1910 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'X2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1911 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'YWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1912 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Y2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1913 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'ZWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1914 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'Z2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1915 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'aWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1916 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'a2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1917 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'bWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1918 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'b2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1919 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'cWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1920 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'c2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1921 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'dWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1922 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'd2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1923 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'eWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1924 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'e2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1925 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'fWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1926 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'f2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1927 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'gWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1928 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'g2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1929 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1930 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'hmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1931 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'iGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1932 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'imfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1933 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1934 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'jmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1935 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1936 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'kWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1937 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'k2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1938 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'lWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1939 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'l2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1940 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'mWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1941 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'm2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1942 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'nWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1943 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'n2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1944 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'oWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1945 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'o2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1946 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'pWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1947 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'p2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1948 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'qGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1949 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'q2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1950 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1951 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'rmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1952 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'sGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1953 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'smfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1954 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1955 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'tmfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1956 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'uGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1957 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'umfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1958 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vGfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1959 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'vWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1960 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'v2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1961 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'wWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1962 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'w2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1963 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'xWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1964 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'x2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1965 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'yWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1966 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'y2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1967 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'zWfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1968 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'z2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1969 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1970 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '0mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1971 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1972 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '1WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1973 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '12fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1974 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1975 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '2mfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1976 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3GfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1977 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '3WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1978 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '32fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1979 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '4WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1980 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '42fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1981 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '5WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1982 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '52fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1983 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '6WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1984 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '62fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1985 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '7WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1986 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '72fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1987 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '8WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1988 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '82fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1989 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '9WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1990 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '92fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1991 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1992 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '-2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1993 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_WfcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1994 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id '_2fcT5gBBm02-UH_Ewpm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1995 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'AWfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1996 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'A2fcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1997 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1998 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'BmfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None
Event Event 1999 failed with error: BulkError: {'type': 'mapper_parsing_exception', 'reason': "failed to parse field [@timestamp] of type [date] in document with id 'CGfcT5gBBm02-UH_Ewtm'. Preview of field's value: 'this is not a timestamp'", 'caused_by': {'type': 'illegal_argument_exception', 'reason': 'failed to parse date field [this is not a timestamp] with format [strict_date_optional_time||epoch_millis]', 'caused_by': {'type': 'date_time_parse_exception', 'reason': 'Failed to parse with all enclosed parsers'}}}, status_code: 400, exception: None