Search found 3 matches

by Alonzzo2
Sun Sep 06, 2020 10:07 am
Forum: Writing a Parser
Topic: Regex parser, timestamp with milliseconds and timezone, time is parsed wrong
Replies: 5
Views: 9569

Re: Regex parser, timestamp with milliseconds and timezone, time is parsed wrong

My bad, you're right, it works.
Must have confused with all the parsers and datetime formats I played with.
It works perfectly, thanks!
by Alonzzo2
Thu Sep 03, 2020 8:26 am
Forum: Writing a Parser
Topic: Regex parser, timestamp with milliseconds and timezone, time is parsed wrong
Replies: 5
Views: 9569

Re: Regex parser, timestamp with milliseconds and timezone, time is parsed wrong

Wow. 1. Thanks for the intention of letting me know once you'll have any news regarding support for nano seconds 2. Thanks for noticing these are probably nano seconds :) 3. MANY THANKS for compiling a parser for me!! I really appreciate it!! I had no problems using it, but, at the 'display entries ...
by Alonzzo2
Wed Sep 02, 2020 2:58 pm
Forum: Writing a Parser
Topic: Regex parser, timestamp with milliseconds and timezone, time is parsed wrong
Replies: 5
Views: 9569

Regex parser, timestamp with milliseconds and timezone, time is parsed wrong

Hi, This is my log example: {"Subject":"Unclassified","Time":"2020-09-02T04:25:31.1924648+03:00","Level":"INFO","ClassName":"blabla","Thread":"21","Message":"yadayday"} This is my parser: \{"Subject":"(.*?)","Time":"(.*?)","Level":"(.*?)","ClassName":"(.*?)","Thread":"(.*?)","Message":"(.*?)"\} This...