# Filter out the exact errors in kibana

**URL:** https://discuss.elastic.co/t/filter-out-the-exact-errors-in-kibana/358336
**Category:** Kibana
**Created:** [April 27, 2024, 8:52am UTC](https://discuss.elastic.co/t/filter-out-the-exact-errors-in-kibana/358336 "2024-04-27T08:52:54Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Vansh1](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/vansh1/32/133914_2.png) [@Vansh1](https://discuss.elastic.co/u/Vansh1)
#### Post date: [April 27, 2024, 8:52am UTC](https://discuss.elastic.co/t/filter-out-the-exact-errors-in-kibana/358336/1 "2024-04-27T08:52:54Z")

</div>

Hello guys i am creating a dashboard where i can see the exact errors occuring but i am only able to add the log.file.path in the dashboard which shows error message not the exact error.  
like i want to visualize which error is occured in the dashboard like is it related to themes or plugins or the common errors other than this i don't want to see the whole message that shows the errors in which a error is showned many times

 ![Screenshot (50)](https://us1.discourse-cdn.com/elastic/original/3X/f/8/f8d6ae4d552555e02ca44df8e18c5317a2152fd1.png)  
Here i want to show the exact errors but i don't know how to do that i have tried so many times .  
Anyone knows the answer to it

---

<div class="post-metadata">

### Author: ![PodarcisMuralis](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/podarcismuralis/32/122606_2.png) [@PodarcisMuralis](https://discuss.elastic.co/u/PodarcisMuralis)
#### Post date: [April 27, 2024, 10:32pm UTC](https://discuss.elastic.co/t/filter-out-the-exact-errors-in-kibana/358336/2 "2024-04-27T22:32:41Z")

</div>

I had the similar issue and I filtered the message in the visualization itself with wildcard.  
You may filter yours like

```auto
message.keyword: "*themes*"  

```

or

```auto
message.keyword: "*plugin*"  

```

This may not be optimal but at least worked for me.
