![JAR search and dependency download from the Maven repository](/logo.png)
org.glowroot.central.repo.SyntheticMonitorIdDao Maven / Gradle / Ivy
/*
* Copyright 2018-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.glowroot.central.repo;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Future;
import com.datastax.driver.core.BoundStatement;
import com.datastax.driver.core.PreparedStatement;
import com.datastax.driver.core.ResultSet;
import com.datastax.driver.core.Row;
import com.google.common.collect.ImmutableList;
import org.immutables.value.Value;
import org.glowroot.central.util.RateLimiter;
import org.glowroot.central.util.Session;
import org.glowroot.common.util.CaptureTimes;
import org.glowroot.common.util.Clock;
import static com.google.common.base.Preconditions.checkNotNull;
import static java.util.concurrent.TimeUnit.DAYS;
class SyntheticMonitorIdDao {
private final Session session;
private final ConfigRepositoryImpl configRepository;
private final Clock clock;
private final PreparedStatement insertPS;
private final PreparedStatement readPS;
private final RateLimiter rateLimiter = new RateLimiter<>();
SyntheticMonitorIdDao(Session session, ConfigRepositoryImpl configRepository, Clock clock)
throws Exception {
this.session = session;
this.configRepository = configRepository;
this.clock = clock;
int maxRollupHours = configRepository.getCentralStorageConfig().getMaxRollupHours();
session.createTableWithTWCS("create table if not exists synthetic_monitor_id"
+ " (agent_rollup_id varchar, capture_time timestamp, synthetic_monitor_id varchar,"
+ " synthetic_monitor_display varchar, primary key (agent_rollup_id, capture_time,"
+ " synthetic_monitor_id))", maxRollupHours);
insertPS = session.prepare("insert into synthetic_monitor_id (agent_rollup_id,"
+ " capture_time, synthetic_monitor_id, synthetic_monitor_display) values (?, ?, ?,"
+ " ?) using ttl ?");
readPS = session.prepare("select synthetic_monitor_id, synthetic_monitor_display from"
+ " synthetic_monitor_id where agent_rollup_id = ? and capture_time >= ? and"
+ " capture_time <= ?");
}
Map getSyntheticMonitorIds(String agentRollupId, long from, long to)
throws Exception {
long rolledUpFrom = CaptureTimes.getRollup(from, DAYS.toMillis(1));
long rolledUpTo = CaptureTimes.getRollup(to, DAYS.toMillis(1));
BoundStatement boundStatement = readPS.bind();
boundStatement.setString(0, agentRollupId);
boundStatement.setTimestamp(1, new Date(rolledUpFrom));
boundStatement.setTimestamp(2, new Date(rolledUpTo));
ResultSet results = session.read(boundStatement);
Map syntheticMonitorIds = new HashMap<>();
for (Row row : results) {
syntheticMonitorIds.put(checkNotNull(row.getString(0)), checkNotNull(row.getString(1)));
}
return syntheticMonitorIds;
}
List> insert(String agentRollupId, long captureTime, String syntheticMonitorId,
String syntheticMonitorDisplay) throws Exception {
long rollupCaptureTime = CaptureTimes.getRollup(captureTime, DAYS.toMillis(1));
SyntheticMonitorKey rateLimiterKey = ImmutableSyntheticMonitorKey.builder()
.agentRollupId(agentRollupId)
.captureTime(rollupCaptureTime)
.syntheticMonitorId(syntheticMonitorId)
.syntheticMonitorDisplay(syntheticMonitorDisplay)
.build();
if (!rateLimiter.tryAcquire(rateLimiterKey)) {
return ImmutableList.of();
}
BoundStatement boundStatement = insertPS.bind();
int i = 0;
boundStatement.setString(i++, agentRollupId);
boundStatement.setTimestamp(i++, new Date(rollupCaptureTime));
boundStatement.setString(i++, syntheticMonitorId);
boundStatement.setString(i++, syntheticMonitorDisplay);
int maxRollupTTL = configRepository.getCentralStorageConfig().getMaxRollupTTL();
boundStatement.setInt(i++, Common.getAdjustedTTL(maxRollupTTL, rollupCaptureTime, clock));
return ImmutableList.of(session.writeAsync(boundStatement));
}
@Value.Immutable
interface SyntheticMonitorKey {
String agentRollupId();
long captureTime();
String syntheticMonitorId();
String syntheticMonitorDisplay();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy