|
I am trying to index an XML file which looks like this:
Splunk's default parser will recognizes the timestamps correctly but does not split the events on each |
|
props.conf
transforms.conf
should do it. Where you able to get this work? I tried it but it does not break the events from one another cleanly. I do have a subdata within the top group, so after the row group, I have a subrow that contains data for the row group, so that might be what's skewing me.
(16 Mar '10, 12:31)
BunnyHop
There is a small error in above regex, correct one is
(18 Oct '10, 09:18)
gljiva
|
|
The post-your-answer text pre-processor will NOT ALLOW (even with verbatim/pre/code block markers) the correct line to be input! |
|
The problem with submitting the correct text was the less-than '<' character which got treated as an initial token of an html tag and this could not be directly escaped. The way to do it is to make sure that any less-than characters are HTML-ified as ampersand/letter-L/letter-t/semi-colon. REGEX=<([w-]+)>([^<]*)</1> |
|
Wow, crazy, my last followup fixed one problem but it is also wrong! The corrected version of the original poster's line is this: However I sought to included hyphens in my tag names so I changed it to this: |
