Package com.alibaba.otter.manager.biz.statistics.delay.param.TopDelayStat

Examples of com.alibaba.otter.manager.biz.statistics.delay.param.TopDelayStat.DataStat


            List<ThroughputStat> stats = throughputStatService.listRealtimeThroughputByPipelineIds(pipelineIds, minute);
            for (ThroughputStat stat : stats) {
                for (TopDelayStat top : tops) {
                    if (stat.getPipelineId().equals(top.getPipelineId())) {
                        DataStat s = new DataStat(stat.getNumber(), stat.getSize());
                        if (ThroughputType.FILE == stat.getType()) {
                            top.setFileStat(s);
                        } else if (ThroughputType.ROW == stat.getType()) {
                            top.setDbStat(s);
                        }
View Full Code Here


        if (pipelineIds.size() > 0) {
            List<ThroughputStat> stats = throughputStatService.listRealtimeThroughputByPipelineIds(pipelineIds, minute);
            for (ThroughputStat stat : stats) {
                for (TopDelayStat top : tops) {
                    if (stat.getPipelineId().equals(top.getPipelineId())) {
                        DataStat s = new DataStat(stat.getNumber(), stat.getSize());
                        if (ThroughputType.FILE == stat.getType()) {
                            top.setFileStat(s);
                        } else if (ThroughputType.ROW == stat.getType()) {
                            top.setDbStat(s);
                        }
View Full Code Here

TOP

Related Classes of com.alibaba.otter.manager.biz.statistics.delay.param.TopDelayStat.DataStat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.