All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gravitee.node.monitoring.NodeMonitoringService Maven / Gradle / Ivy

/**
 * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
 *
 * 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 io.gravitee.node.monitoring;

import io.gravitee.common.utils.UUID;
import io.gravitee.node.api.Monitoring;
import io.gravitee.node.api.NodeMonitoringRepository;
import io.reactivex.Flowable;
import io.reactivex.Maybe;
import io.reactivex.Single;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;

import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
 * @author Jeoffrey HAEYAERT (jeoffrey.haeyaert at graviteesource.com)
 * @author GraviteeSource Team
 */
@Component
public class NodeMonitoringService {

    private static final Logger LOGGER = LoggerFactory.getLogger(NodeMonitoringService.class);
    private static final int CLEANUP_DELAY = 600000;

    private final NodeMonitoringRepository repository;
    private final Map monitoringHolder;

    public NodeMonitoringService(@Lazy NodeMonitoringRepository repository) {
        this.repository = repository;
        this.monitoringHolder = new ConcurrentHashMap<>();
    }

    public Single createOrUpdate(Monitoring monitoring) {

        if (repository == null) {
            LOGGER.debug("There is nowhere to persist the monitoring data {}", monitoring);
            return Single.just(monitoring);
        }

        final String monitoringKey = monitoring.getNodeId() + monitoring.getType();

        Maybe monitoringObs;

        // This part is mainly done for clustering purpose, to ensure all nodes know about each other in the context
        // of a cluster once they are flagged as master to process node infos.
        if (monitoringHolder.containsKey(monitoringKey)) {
            monitoringObs = Maybe.just(monitoringHolder.get(monitoringKey));
        } else {
            monitoringObs = repository.findByNodeIdAndType(monitoring.getNodeId(), monitoring.getType());
        }

        final Date now = new Date();
        return monitoringObs
                .flatMap(existing -> {
                    monitoring.setId(existing.getId());
                    monitoring.setCreatedAt(existing.getCreatedAt());
                    monitoring.setUpdatedAt(now);
                    return repository.update(monitoring).toMaybe();
                })
                .switchIfEmpty(Single.defer(() -> {
                    monitoring.setId(UUID.random().toString());
                    monitoring.setCreatedAt(now);
                    monitoring.setUpdatedAt(now);
                    return repository.create(monitoring);
                }))
                .doOnSuccess(toCache -> monitoringHolder.put(monitoringKey, toCache))
                .doFinally(this::cleanupMonitorHolder);
    }

    /**
     * Remove all Monitor that have not been updated since {@link #CLEANUP_DELAY} milliseconds.
     */
    private void cleanupMonitorHolder() {
        final Date cleanupDate = new Date(System.currentTimeMillis() - CLEANUP_DELAY);
        monitoringHolder.entrySet().removeIf(entry -> entry.getValue().getUpdatedAt().before(cleanupDate));
    }

    public Flowable findByTypeAndTimeframe(String type, long from, long to) {

        if (repository == null) {
            return Flowable.empty();
        }

        return repository.findByTypeAndTimeFrame(type, from, to);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy