In Kibana dashboard is it possible to exclude these holidays(specific dates) by applying some filters? If yes please let me know the method, it would be helpful. Thanks.
you can start composing a huge filter in the filter bar, something like this:
(@timestamp < "2021-01-01T00:00:00" OR @timestamp > "2021-01-01T23:59:59") AND (@timestamp < "2021-01-14T00:00:00" OR @timestamp > "2021-01-14T23:59:59") .... and so on.
Or, the prettier version: create a scripted field (something called holiday maybe) that checks if the timestamp is in any of those days and returns true if it is. And then just filter on the dashboard/visualization for holiday = False and that should be it.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.