org.graylog2.plugin.dashboards.widgets.ComputationResult Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.plugin.dashboards.widgets;
import com.google.common.collect.Maps;
import org.graylog2.plugin.Tools;
import org.graylog2.plugin.indexer.searches.timeranges.AbsoluteRange;
import org.joda.time.DateTime;
import java.util.Map;
public class ComputationResult {
private final Object result;
private final long tookMs;
private final DateTime calculatedAt;
private final AbsoluteRange computationTimeRange;
public ComputationResult(Object result, long tookMs) {
this(result, tookMs, null);
}
public ComputationResult(Object result, long tookMs, AbsoluteRange computationTimeRange) {
this.result = result;
this.tookMs = tookMs;
this.computationTimeRange = computationTimeRange;
this.calculatedAt = Tools.nowUTC();
}
public Object getResult() {
return result;
}
public DateTime getCalculatedAt() {
return calculatedAt;
}
public long getTookMs() {
return tookMs;
}
public Map asMap() {
Map map = Maps.newHashMap();
map.put("result", result);
map.put("calculated_at", Tools.getISO8601String(calculatedAt));
map.put("took_ms", tookMs);
if (computationTimeRange != null) {
Map timeRangeMap = Maps.newHashMap();
timeRangeMap.put("from", Tools.getISO8601String(computationTimeRange.getFrom()));
timeRangeMap.put("to", Tools.getISO8601String(computationTimeRange.getTo()));
map.put("computation_time_range", timeRangeMap);
}
return map;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy