ok, a couple things I'm seeing here. Not sure if any of them will actually fix your problem.
In your inputs.conf, your monitor statement looks weird. Is this a Windows system? If so, I'd expect to see something like:
[monitor://C:\blah]
Also, in your props.conf, I'd again expect to see a drive letter, but also, I think you meant to put:
[source::C:\blah]
Finally, and this definitely doesn't have anything to do with the issue, in your EXTRACT statement, you have:
...(?P [^,]+),,?...
but I think you should probably have:
...(?P<serviceName>[^,]+),?...
You had an extra comma in there. That may have just been a typo in your writeup though.
Otherwise, I don't really see why what you have wouldn't work.
I suppose you could also try specifying a line breaker. Something like:
LINE_BREAKER = ([\r\n]+)(?\w+,)
... View more