# Kibana not recognizing a date

**URL:** https://discuss.elastic.co/t/kibana-not-recognizing-a-date/84715
**Category:** Logstash
**Created:** [May 5, 2017, 1:07pm UTC](https://discuss.elastic.co/t/kibana-not-recognizing-a-date/84715 "2017-05-05T13:07:51Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Djelouah\_Laala](https://avatars.discourse-cdn.com/v4/letter/d/f9ae1b/32.png) [@Djelouah\_Laala](https://discuss.elastic.co/u/Djelouah_Laala)
#### Post date: [May 5, 2017, 1:07pm UTC](https://discuss.elastic.co/t/kibana-not-recognizing-a-date/84715/1 "2017-05-05T13:07:51Z")

</div>

Hey guys, I have two examples :  
`"datetxecheclasthour":"2017-04-28T12:50:00.077Z"`  
`"txannczhier_date":"2017-04-25 00:00:00 +0200"`

In the first case kibana recognize datetxecheclasthour as a date but in the second case it's not working, I tried to filter this in logstash but either the mutate filter and the grok filter didn't help me to solve this. What would you do in this case?

Thank you

---

<div class="post-metadata">

### Author: ![Djelouah\_Laala](https://avatars.discourse-cdn.com/v4/letter/d/f9ae1b/32.png) [@Djelouah\_Laala](https://discuss.elastic.co/u/Djelouah_Laala)
#### Post date: [May 5, 2017, 2:02pm UTC](https://discuss.elastic.co/t/kibana-not-recognizing-a-date/84715/2 "2017-05-05T14:02:20Z")

</div>

Problem resolved : (As Magnus suggest me to do in a previous post)  
[Magnus solution](https://discuss.elastic.co/t/date-parse-error/84269/12?u=djelouah_laala)

There is the issue to my problem. I wish that it can help some of you.

```
filter 
{	mutate 
	{
		convert => ["txechecczhier_date", "string"]
	}   
	date 
	{
		match => ["txechecczhier_date", "ISO8601"]	
		target => "txechecczhier_date"
	}	
}
```

---

<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: [June 2, 2017, 2:03pm UTC](https://discuss.elastic.co/t/kibana-not-recognizing-a-date/84715/3 "2017-06-02T14:03:18Z")

</div>

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