Search in sources :

Example 6 with PGIDStatsStorage

use of com.exalttech.trex.ui.views.storages.PGIDStatsStorage in project trex-stateless-gui by cisco-system-traffic-generator.

the class LatencyHistogram method render.

public void render() {
    histogram.getData().clear();
    xAxis.setAutoRanging(true);
    final StatsStorage statsStorage = StatsStorage.getInstance();
    final Map<Integer, String> selectedPGIDs = statsStorage.getPGIDsStorage().getSelectedPGIds();
    final PGIDStatsStorage pgIDStatsStorage = statsStorage.getPGIDStatsStorage();
    final Map<Integer, ArrayHistory<LatencyStatPoint>> latencyStatPointHistoryMap = pgIDStatsStorage.getLatencyStatPointHistoryMap();
    final Map<Integer, LatencyStatPoint> latencyStatPointShadowMap = pgIDStatsStorage.getLatencyStatPointShadowMap();
    final String[] histogramKeys = pgIDStatsStorage.getHistogramKeys(HISTOGRAM_SIZE);
    final List<XYChart.Series<String, Long>> seriesList = new LinkedList<>();
    synchronized (pgIDStatsStorage.getLatencyLock()) {
        latencyStatPointHistoryMap.forEach((final Integer pgID, final ArrayHistory<LatencyStatPoint> history) -> {
            if (history == null || history.isEmpty()) {
                return;
            }
            final String color = selectedPGIDs.get(pgID);
            if (color == null) {
                return;
            }
            final LatencyStatPoint latencyShadow = latencyStatPointShadowMap.get(pgID);
            final Map<String, Long> shadowHistogram = latencyShadow != null ? latencyShadow.getLatencyStat().getLat().getHistogram() : new HashMap<>();
            final Map<String, Long> histogram = history.last().getLatencyStat().getLat().getHistogram();
            final XYChart.Series<String, Long> series = new XYChart.Series<>();
            series.setName(String.valueOf(pgID));
            for (final String key : histogramKeys) {
                final long value = histogram.getOrDefault(key, 0L);
                final long shadowValue = shadowHistogram.getOrDefault(key, 0L);
                series.getData().add(new XYChart.Data<>(key, value - shadowValue));
            }
            setSeriesColor(series, color);
            seriesList.add(series);
        });
    }
    if (seriesList.isEmpty()) {
        return;
    }
    histogram.getData().addAll(seriesList);
    xAxis.setAutoRanging(true);
}
Also used : ArrayHistory(com.exalttech.trex.util.ArrayHistory) PGIDStatsStorage(com.exalttech.trex.ui.views.storages.PGIDStatsStorage) StatsStorage(com.exalttech.trex.ui.views.storages.StatsStorage) LinkedList(java.util.LinkedList) PGIDStatsStorage(com.exalttech.trex.ui.views.storages.PGIDStatsStorage) XYChart(javafx.scene.chart.XYChart) LatencyStatPoint(com.exalttech.trex.ui.models.stats.LatencyStatPoint)

Aggregations

PGIDStatsStorage (com.exalttech.trex.ui.views.storages.PGIDStatsStorage)6 ArrayHistory (com.exalttech.trex.util.ArrayHistory)6 FlowStatPoint (com.exalttech.trex.ui.models.stats.FlowStatPoint)4 LatencyStatPoint (com.exalttech.trex.ui.models.stats.LatencyStatPoint)4 HeaderCell (com.exalttech.trex.ui.views.statistics.cells.HeaderCell)3 StatisticLabelCell (com.exalttech.trex.ui.views.statistics.cells.StatisticLabelCell)3 StatsStorage (com.exalttech.trex.ui.views.storages.StatsStorage)3 LinkedList (java.util.LinkedList)3 XYChart (javafx.scene.chart.XYChart)3 LatencyStat (com.cisco.trex.stateless.model.stats.LatencyStat)2 HashMap (java.util.HashMap)2 Map (java.util.Map)2 LatencyStatErr (com.cisco.trex.stateless.model.stats.LatencyStatErr)1 LatencyStatLat (com.cisco.trex.stateless.model.stats.LatencyStatLat)1 Formatter (com.exalttech.trex.util.Formatter)1