Re: How do I get the outPoolUsage value inside my own stream operator?

2020-03-18 Thread Zhijiang
skMetricGroup. Hope it solve your problem. Best, Zhijiang -- From:Felipe Gutierrez Send Time:2020 Mar. 17 (Tue.) 17:50 To:user Subject:Re: How do I get the outPoolUsage value inside my own stream operator? Hi, just for the recor

Re: How do I get the outPoolUsage value inside my own stream operator?

2020-03-17 Thread Felipe Gutierrez
Hi, just for the record. I am collecting the values of outPoolUsage using the piece of code below inside my stream operator OperatorMetricGroup operatorMetricGroup = (OperatorMetricGroup) this.getMetricGroup(); TaskMetricGroup taskMetricGroup = operatorMetricGroup.parent(); MetricGroup

How do I get the outPoolUsage value inside my own stream operator?

2020-03-16 Thread Felipe Gutierrez
Hi community, I have built my own operator (not a UDF) and I want to collect the metrics of "outPoolUsage" inside it. How do I do it assuming that I have to do some modifications in the source code? I know that the Gouge comes from