Configuring Output Statistics
JSON configuration example
{
"outputStats" : {
"name":"stats",
"format":"csv",
"props": {
"location": "/tmp/zinggStats_$ZINGG_DYNAMIC_STAT_NAME",
"delimiter": ",",
"header":true
}
}
}Python configuration example
from zingg import ECsvPipe
statsOutputPipe = ECsvPipe("stats", "/tmp/febrlStats_$ZINGG_DYNAMIC_STAT_NAME")
statsOutputPipe.setHeader("true")
eArgs.setOutputStats(statsOutputPipe)Last updated
Was this helpful?