org.graylog.events.event.EventProcessorEventFactory 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.event;
import de.huxhorn.sulky.ulid.ULID;
import org.graylog.events.processor.EventDefinition;
import org.graylog.util.HostnameProvider;
import org.graylog2.cluster.NodeNotFoundException;
import org.graylog2.cluster.NodeService;
import org.graylog2.plugin.system.NodeId;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import javax.inject.Inject;
public class EventProcessorEventFactory implements EventFactory {
private final String source;
private final ULID ulid;
@Inject
public EventProcessorEventFactory(ULID ulid, HostnameProvider hostnameProvider) {
this.ulid = ulid;
try {
this.source = hostnameProvider.get().canonicalHostname();
} catch (Exception e) {
throw new RuntimeException("Couldn't get local hostname", e);
}
}
// Used in some tests in another repository.
@Deprecated
public EventProcessorEventFactory(ULID ulid, NodeService nodeService, NodeId nodeId) {
this.ulid = ulid;
try {
// TODO: This can fail depending on when it's called. Check if we can load it in create() and cache it
this.source = nodeService.byNodeId(nodeId).getHostname();
} catch (NodeNotFoundException e) {
throw new RuntimeException("Couldn't get node ID", e);
}
}
@Override
public Event createEvent(EventDefinition eventDefinition, DateTime eventTime, String message) {
return new EventImpl(
ulid.nextULID(),
eventTime.withZone(DateTimeZone.UTC),
eventDefinition.config().type(),
eventDefinition.id(),
message,
source,
eventDefinition.priority(),
eventDefinition.alert()
);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy