After some hours of struggle, I discovered that the above was the only way to 
decouple the two sources, was to drop_metadata() on the original source, i.e.:

        original_source = input.harbor(...)
        ignore(output.dummy(fallible=true, original_source)
        
    new_source_1 = map_metadata(some_transform, drop_metadata(original_source))
    new_source_2 = map_metadata(some_other_transform, 
drop_metadata(original_source))

        new_source_1 = output.icecast(...)
        new_source_2 = output.file(...)

-ken
--
---------
On Tue, Oct 07, 2014 at 09:46:00AM -0700, David Baelde wrote:
> Hi Ken,
> 
> You're almost there with the first attempt. Your problem there is that you're 
> redefining source1 on the first line and this new definition is used when you 
> define source2 next.
> 
> Hope this helps,
> 
> David
> 

------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to