Hi,
I need some help setting up a TIME_PREFIX for the following:
INFO | jvm 1 | 2015/04/05 01:56:20 | Sametime Check: Sametime Session unloaded
INFO | jvm 1 | 2015/04/05 01:56:22 | Sametime Check: Slave thread complete; Stats:
INFO | jvm 1 | 2015/04/05 01:56:22 |
Can someone help me?
TIA.
Hello
You can use this regex:
^[^\|]*\|[^\|]*\|\s*
regards
Thanks. Doesn't seem to work. Still getting "could not use strptime to parse timestamp..." messages.
Here's my entire props.conf:
ANNOTATE_PUNCT = false
KV_MODE = auto
LINE_BREAKER = ([\r\n]+)
MAX_TIMESTAMP_LOOKAHEAD = 90
NO_BINARY_CHECK = 1
SHOULD_LINEMERGE = false
TIME_PREFIX = ^[^|]|[^|]|\s*
TIME_FORMAT = %Y/%M/%d %H:%M:%S
Your time format is wrong, you should use:
%Y/%m/%d %H:%M:%S
Grrr. Stupid me.
Thanks!