org.graylog.events.legacy.LegacyAlertCondition Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program 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
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog.events.legacy;
import com.google.common.collect.ImmutableMap;
import org.graylog.events.event.EventDto;
import org.graylog.events.processor.EventDefinition;
import org.graylog2.alerts.AbstractAlertCondition;
import org.graylog2.plugin.alarms.AlertCondition;
import org.graylog2.plugin.streams.Stream;
/**
* This is used to support legacy {@link org.graylog2.plugin.alarms.callbacks.AlarmCallback}s. An alarm callback
* expects an instance of an {@link AlertCondition}. This is basically just a small wrapper around
* {@link AbstractAlertCondition} to act as a dummy.
*/
public class LegacyAlertCondition extends AbstractAlertCondition {
private final String description;
LegacyAlertCondition(Stream stream,
EventDefinition eventDefinition,
EventDto eventDto) {
super(
stream,
eventDefinition.id(),
eventDefinition.config().type(),
eventDto.processingTimestamp(),
"admin",
ImmutableMap.of("backlog", eventDefinition.notificationSettings().backlogSize()),
eventDefinition.title()
);
this.description = eventDefinition.title();
}
@Override
public String getDescription() {
return description;
}
@Override
public AlertCondition.CheckResult runCheck() {
throw new UnsupportedOperationException("Running LegacyAlertCondition is not supported!");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy