org.graylog2.inputs.syslog.tcp.SyslogTCPPipelineFactory Maven / Gradle / Ivy
/**
* This file is part of Graylog2.
*
* Graylog2 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.
*
* Graylog2 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 Graylog2. If not, see .
*/
package org.graylog2.inputs.syslog.tcp;
import com.codahale.metrics.MetricRegistry;
import org.graylog2.inputs.network.PacketInformationDumper;
import org.graylog2.inputs.syslog.SyslogDispatcher;
import org.graylog2.plugin.buffers.Buffer;
import org.graylog2.plugin.configuration.Configuration;
import org.graylog2.plugin.inputs.MessageInput;
import org.graylog2.plugin.inputs.util.ConnectionCounter;
import org.graylog2.plugin.inputs.util.ThroughputCounter;
import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelPipelineFactory;
import org.jboss.netty.channel.Channels;
import org.jboss.netty.handler.codec.frame.DelimiterBasedFrameDecoder;
import org.jboss.netty.handler.codec.frame.Delimiters;
/**
* @author Lennart Koopmann
*/
public class SyslogTCPPipelineFactory implements ChannelPipelineFactory {
private final MetricRegistry metricRegistry;
private final Buffer processBuffer;
private final Configuration config;
private final MessageInput sourceInput;
private final ThroughputCounter throughputCounter;
private final ConnectionCounter connectionCounter;
public SyslogTCPPipelineFactory(MetricRegistry metricRegistry,
Buffer processBuffer,
Configuration config,
MessageInput sourceInput,
ThroughputCounter throughputCounter,
ConnectionCounter connectionCounter) {
this.metricRegistry = metricRegistry;
this.processBuffer = processBuffer;
this.config = config;
this.sourceInput = sourceInput;
this.throughputCounter = throughputCounter;
this.connectionCounter = connectionCounter;
}
@Override
public ChannelPipeline getPipeline() throws Exception {
ChannelBuffer[] delimiter;
if (config.getBoolean(SyslogTCPInput.CK_USE_NULL_DELIMITER)) {
delimiter = Delimiters.nulDelimiter();
} else {
delimiter = Delimiters.lineDelimiter();
}
ChannelPipeline p = Channels.pipeline();
p.addLast("packet-meta-dumper", new PacketInformationDumper(sourceInput));
p.addLast("connection-counter", connectionCounter);
p.addLast("framer", new DelimiterBasedFrameDecoder(2 * 1024 * 1024, delimiter));
p.addLast("traffic-counter", throughputCounter);
p.addLast("handler", new SyslogDispatcher(metricRegistry, processBuffer, config, sourceInput));
return p;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy