use of io.codekvast.dashboard.dashboard.model.status.EnvironmentStatusDescriptor in project codekvast by crispab.
the class DashboardServiceImpl method getEnvironments.
private List<EnvironmentStatusDescriptor> getEnvironments(Long customerId) {
val startedAt = clock.instant();
List<EnvironmentStatusDescriptor> result = new ArrayList<>();
jdbcTemplate.query("SELECT name, enabled, updatedBy, notes FROM environments WHERE customerId = ? ", rs -> {
result.add(EnvironmentStatusDescriptor.builder().name(rs.getString("name")).enabled(rs.getBoolean("enabled")).updatedBy(rs.getString("updatedBy")).notes(rs.getString("notes")).build());
}, customerId);
logger.debug("Fetched {} environments for customer {} in {}", result.size(), customerId, Duration.between(startedAt, clock.instant()));
return result;
}
use of io.codekvast.dashboard.dashboard.model.status.EnvironmentStatusDescriptor in project codekvast by crispab.
the class DashboardServiceImpl method getStatus.
@Override
@Transactional(readOnly = true)
public GetStatusResponse getStatus() {
long startedAt = clock.millis();
Long customerId = customerIdProvider.getCustomerId();
CustomerData customerData = customerService.getCustomerDataByCustomerId(customerId);
PricePlan pricePlan = customerData.getPricePlan();
List<EnvironmentStatusDescriptor> environments = getEnvironments(customerId);
List<ApplicationDescriptor2> applications = getApplications(customerId, pricePlan);
List<AgentDescriptor> agents = getAgents(customerId, pricePlan.getPublishIntervalSeconds());
Instant now = clock.instant();
Instant collectionStartedAt = customerData.getCollectionStartedAt();
Instant trialPeriodEndsAt = customerData.getTrialPeriodEndsAt();
Duration trialPeriodDuration = collectionStartedAt == null || trialPeriodEndsAt == null ? null : Duration.between(collectionStartedAt, trialPeriodEndsAt);
Duration trialPeriodProgress = trialPeriodDuration == null ? null : Duration.between(collectionStartedAt, now);
Integer trialPeriodPercent = trialPeriodProgress == null ? null : Math.min(100, Math.toIntExact(trialPeriodProgress.toMillis() * 100L / trialPeriodDuration.toMillis()));
return GetStatusResponse.builder().timestamp(startedAt).queryTimeMillis(clock.millis() - startedAt).pricePlan(pricePlan.getName()).retentionPeriodDays(pricePlan.getRetentionPeriodDays()).collectionResolutionSeconds(pricePlan.getPublishIntervalSeconds()).maxNumberOfAgents(pricePlan.getMaxNumberOfAgents()).maxNumberOfMethods(pricePlan.getMaxMethods()).collectedSinceMillis(pricePlan.adjustInstantToMillis(collectionStartedAt, clock)).trialPeriodEndsAtMillis(trialPeriodEndsAt == null ? null : trialPeriodEndsAt.toEpochMilli()).trialPeriodExpired(customerData.isTrialPeriodExpired(now)).trialPeriodPercent(trialPeriodPercent).numMethods(customerService.countMethods(customerId)).numAgents(agents.size()).numLiveAgents((int) agents.stream().filter(AgentDescriptor::isAgentAlive).count()).numLiveEnabledAgents((int) agents.stream().filter(AgentDescriptor::isAgentLiveAndEnabled).count()).environments(environments).applications(applications).agents(agents).build();
}
Aggregations