- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Parser Issue - Can I use wildcard for "messageid"?
Hello,
I have a trouble with a definition of "messageid" on a log. I have this kind of log:
%APPX-4: LogSubscripci�n|Dar de baja|2016-08-24 12:23:54|pepe
I defined the header as:
<HEADER
id1="0001"
id2="0001"
content="%APPX-4: <messageid>|<!payload>"/>
and the MESSAGE as:
<MESSAGE
level="6"
parse="1"
parsedefvalue="1"
tableid="92"
id1="LogSubscripción:01"
id2="LogSubscripción"
eventcategory="1605000000"
content="<trans_id>|<eventtime>|<username>"/>
So, my trouble is with the string "LogSubscripción" as message id, because the 'ó' (the original log file came this way) after the log file is transferred turn to '�'. It's possible use wildcards like: id1="LogSubscripci%n:01"?
I really appreciate any help.
- Tags:
- Community Thread
- Discussion
- Forum Thread
- NetWitness
- NW
- NWP
- parser xml
- RSA NetWitness
- RSA NetWitness Platform
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi Omar,
you could try and creating your own message id like this:
<HEADER
id1="0001"
id2="0001"
messageid="*STRCAT('logsubcripcion')"
content="%APPX-4: LogSubscripción|<!payload>"/>
and the MESSAGE as:
<MESSAGE
level="6"
parse="1"
parsedefvalue="1"
tableid="92"
id1="logsubcripcion"
id2="logsubcripcion"
eventcategory="1605000000"
content="<trans_id>|<eventtime>|<username>"/>
