Hi all,
I have the following output from a Perl script that runs every 5 mins:
09-13-2010 16:21:20 - Inventory Report
DATACENTER, CLUSTER, VMHOST, VM
PPD, DNSAS-Cluster1, dnsas-esx1, dnsa-secweb1
PPD, DNSAS-Cluster1, dnsas-esx1, dnsasval1-dev9
PPD, DNSAS-Cluster1, dnsas-esx1, ddist3-dev9
PPD, DNSAS-Cluster1, dnsas-esx1, dmplupe1-dev9
PPD, DNSAS-Cluster1, dnsas-esx1, dnsasext1-dev9
...
...
...
(520 lines)
And this is how my props.conf looks like:
[source::vm_inventory]
SHOULD_LINEMERGE=True
BREAK_ONLY_BEFORE_DATE=True
TIME_FORMAT=%m-%d-%Y %H:%M:%S
However the events got truncated into 256 line chunks. Am I missing anything here? Or should I do it this way?
[source::vm_inventory]
TRUNCATE = 0
LINE_BREAKER = (?!)
... View more