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

org.graylog.events.notifications.EventNotificationExecutionMetrics Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see .
 */

package org.graylog.events.notifications;

import com.codahale.metrics.Meter;
import com.codahale.metrics.MetricRegistry;
import org.graylog2.shared.metrics.MetricUtils;

import javax.inject.Inject;
import javax.inject.Singleton;
import java.util.Locale;

@Singleton
public class EventNotificationExecutionMetrics {
    private final MetricRegistry metricRegistry;
    private final String PREFIX = "executions";

    private enum Fields {
        TOTAL,
        SUCCESSFUL,
        FAILED_OTHER,
        FAILED_TEMPORARILY,
        FAILED_PERMANENTLY,
        IN_GRACE_PERIOD
    }

    @Inject
    public EventNotificationExecutionMetrics(MetricRegistry metricRegistry) {
        this.metricRegistry = metricRegistry;
    }

    void registerEventNotification(EventNotification eventNotification, NotificationDto notification) {
        for (Fields field : Fields.values()) {
            final String name = getNameforField(eventNotification, notification, field);
            MetricUtils.safelyRegister(metricRegistry, getNameforField(eventNotification, notification, field), new Meter());
        }
    }

    void markExecution(EventNotification eventNotification, NotificationDto notification) {
        getMeterforField(eventNotification, notification, Fields.TOTAL).mark();
    }

    void markSuccess(EventNotification eventNotification, NotificationDto notification) {
        getMeterforField(eventNotification, notification, Fields.SUCCESSFUL).mark();
    }

    void markInGrace(EventNotification eventNotification, NotificationDto notification) {
        getMeterforField(eventNotification, notification, Fields.IN_GRACE_PERIOD).mark();
    }

    void markFailedTemporarily(EventNotification eventNotification, NotificationDto notification) {
        getMeterforField(eventNotification, notification, Fields.FAILED_TEMPORARILY).mark();
    }

    void markFailedPermanently(EventNotification eventNotification, NotificationDto notification) {
        getMeterforField(eventNotification, notification, Fields.FAILED_PERMANENTLY).mark();
    }

    void markFailed(EventNotification eventNotification, NotificationDto notification) {
        getMeterforField(eventNotification, notification, Fields.FAILED_OTHER).mark();
    }

    private String getNameforField(EventNotification eventNotification, NotificationDto notification, Fields field) {
        return MetricRegistry.name(eventNotification.getClass(), notification.id(), PREFIX, field.toString().toLowerCase(Locale.ROOT));
    }

    private Meter getMeterforField(EventNotification eventNotification, NotificationDto notification, Fields field) {
        return MetricUtils.getOrRegister(metricRegistry, getNameforField(eventNotification, notification, field), new Meter());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy