use of com.alibaba.jstorm.common.metric.snapshot.AsmCounterSnapshot in project jstorm by alibaba.
the class AsmCounter method updateSnapshot.
@Override
protected void updateSnapshot(int window) {
Counter counter = counterMap.get(window);
if (counter != null) {
AsmSnapshot snapshot = new AsmCounterSnapshot().setValue(counter.getCount()).setTs(System.currentTimeMillis()).setMetricId(metricId);
snapshots.put(window, snapshot);
}
}
Aggregations