You can set the time zone and date of the incoming event using the date filter. These are two different things.
"Set date" means that the filter is able to change the timestamp of the event to some value obtained from @message, overwriting the default value when it arrives. Useful for playing magazines.
"Set time zone" shifts the time in accordance with the deltas between the tz system and the value set in this data filter.
You are claiming to be in UTC + 2 and the event is from UTC. Suppose the tag is "mytag":
filters { date { tags => ["mytag"] timezone => "utc" add_tag => ["tz_utc"] } }
I added a tag to make it easier to filter in kiban, etc.
source share