# Error in logstash date filter in kibana

**URL:** https://discuss.elastic.co/t/error-in-logstash-date-filter-in-kibana/238872
**Category:** Kibana
**Created:** [June 26, 2020, 2:26pm UTC](https://discuss.elastic.co/t/error-in-logstash-date-filter-in-kibana/238872 "2020-06-26T14:26:13Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![falconpurple](https://avatars.discourse-cdn.com/v4/letter/f/aeb1de/32.png) [@falconpurple](https://discuss.elastic.co/u/falconpurple)
#### Post date: [June 26, 2020, 2:26pm UTC](https://discuss.elastic.co/t/error-in-logstash-date-filter-in-kibana/238872/1 "2020-06-26T14:26:13Z")

</div>

Hi,  
I am parsing log file and one of my field is :

```auto
2020-06-26 12:56:15.258

```

A part of conf file in logstash is :

```auto

grok {
        match => {
		"message" => "%{TIMESTAMP_ISO8601:logdates}"
					}
			}
			date {
				match => ["logdates","yyyy-MM-dd HH:mm:ss.SSS"]
				target => "logdates"
				timezone => "CET"
		}

```

But when I go to Kibana, I can only see **@timestamp** for a Time Filter when creating my Index Pattern. Any ideas on what I am doing wrong?

Really appreciate any help.

---

<div class="post-metadata">

### Author: ![flash1293](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/flash1293/32/41227_2.png) [@flash1293](https://discuss.elastic.co/u/flash1293)
#### Post date: [July 1, 2020, 3:49pm UTC](https://discuss.elastic.co/t/error-in-logstash-date-filter-in-kibana/238872/2 "2020-07-01T15:49:08Z")

</div>

Can you check the mapping of the index? If there is no `logdates` field, this is a Logstash problem, not a Kibana problem.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 29, 2020, 3:49pm UTC](https://discuss.elastic.co/t/error-in-logstash-date-filter-in-kibana/238872/3 "2020-07-29T15:49:17Z")

</div>

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