View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements. See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache license, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License. You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the license for the specific language governing permissions and
15   * limitations under the license.
16   */
17  package org.apache.logging.log4j.core.appender;
18  
19  import java.io.Serializable;
20  import java.nio.charset.Charset;
21  
22  import org.apache.logging.log4j.core.Filter;
23  import org.apache.logging.log4j.core.Layout;
24  import org.apache.logging.log4j.core.config.Configuration;
25  import org.apache.logging.log4j.core.config.plugins.Plugin;
26  import org.apache.logging.log4j.core.config.plugins.PluginAliases;
27  import org.apache.logging.log4j.core.config.plugins.PluginAttribute;
28  import org.apache.logging.log4j.core.config.plugins.PluginConfiguration;
29  import org.apache.logging.log4j.core.config.plugins.PluginElement;
30  import org.apache.logging.log4j.core.config.plugins.PluginFactory;
31  import org.apache.logging.log4j.core.layout.LoggerFields;
32  import org.apache.logging.log4j.core.layout.Rfc5424Layout;
33  import org.apache.logging.log4j.core.layout.SyslogLayout;
34  import org.apache.logging.log4j.core.net.AbstractSocketManager;
35  import org.apache.logging.log4j.core.net.Advertiser;
36  import org.apache.logging.log4j.core.net.Facility;
37  import org.apache.logging.log4j.core.net.Protocol;
38  import org.apache.logging.log4j.core.net.ssl.SslConfiguration;
39  import org.apache.logging.log4j.util.EnglishEnums;
40  
41  /**
42   * The Syslog Appender.
43   */
44  @Plugin(name = "Syslog", category = "Core", elementType = "appender", printObject = true)
45  public class SyslogAppender extends SocketAppender {
46  
47      private static final long serialVersionUID = 1L;
48      protected static final String RFC5424 = "RFC5424";
49  
50      protected SyslogAppender(final String name, final Layout<? extends Serializable> layout, final Filter filter,
51                               final boolean ignoreExceptions, final boolean immediateFlush,
52                               final AbstractSocketManager manager, final Advertiser advertiser) {
53          super(name, layout, filter, manager, ignoreExceptions, immediateFlush, advertiser);
54  
55      }
56  
57      /**
58       * Create a SyslogAppender.
59       * @param host The name of the host to connect to.
60       * @param port The port to connect to on the target host.
61       * @param protocolStr The Protocol to use.
62       * @param sslConfig TODO
63       * @param connectTimeoutMillis the connect timeout in milliseconds.
64       * @param reconnectionDelayMillis The interval in which failed writes should be retried.
65       * @param immediateFail True if the write should fail if no socket is immediately available.
66       * @param name The name of the Appender.
67       * @param immediateFlush "true" if data should be flushed on each write.
68       * @param ignoreExceptions If {@code "true"} (default) exceptions encountered when appending events are logged;
69       *                         otherwise they are propagated to the caller.
70       * @param facility The Facility is used to try to classify the message.
71       * @param id The default structured data id to use when formatting according to RFC 5424.
72       * @param enterpriseNumber The IANA enterprise number.
73       * @param includeMdc Indicates whether data from the ThreadContextMap will be included in the RFC 5424 Syslog
74       * record. Defaults to "true:.
75       * @param mdcId The id to use for the MDC Structured Data Element.
76       * @param mdcPrefix The prefix to add to MDC key names.
77       * @param eventPrefix The prefix to add to event key names.
78       * @param newLine If true, a newline will be appended to the end of the syslog record. The default is false.
79       * @param escapeNL String that should be used to replace newlines within the message text.
80       * @param appName The value to use as the APP-NAME in the RFC 5424 syslog record.
81       * @param msgId The default value to be used in the MSGID field of RFC 5424 syslog records.
82       * @param excludes A comma separated list of mdc keys that should be excluded from the LogEvent.
83       * @param includes A comma separated list of mdc keys that should be included in the FlumeEvent.
84       * @param required A comma separated list of mdc keys that must be present in the MDC.
85       * @param format If set to "RFC5424" the data will be formatted in accordance with RFC 5424. Otherwise,
86       * it will be formatted as a BSD Syslog record.
87       * @param filter A Filter to determine if the event should be handled by this Appender.
88       * @param config The Configuration.
89       * @param charsetName The character set to use when converting the syslog String to a byte array.
90       * @param exceptionPattern The converter pattern to use for formatting exceptions.
91       * @param loggerFields The logger fields
92       * @param advertise Whether to advertise
93       * @param connectTimeoutMillis the connect timeout in milliseconds.
94       * @return A SyslogAppender.
95       */
96      @PluginFactory
97      public static SyslogAppender createAppender(
98              // @formatter:off
99              @PluginAttribute("host") final String host,
100             @PluginAttribute(value = "port", defaultInt = 0) final int port,
101             @PluginAttribute("protocol") final String protocolStr,
102             @PluginElement("SSL") final SslConfiguration sslConfig,
103             @PluginAttribute(value = "connectTimeoutMillis", defaultInt = 0) final int connectTimeoutMillis,
104             @PluginAliases("reconnectionDelay") // deprecated
105             @PluginAttribute(value = "reconnectionDelayMillis", defaultInt = 0) final int reconnectionDelayMillis,
106             @PluginAttribute(value = "immediateFail", defaultBoolean = true) final boolean immediateFail,
107             @PluginAttribute("name") final String name,
108             @PluginAttribute(value = "immediateFlush", defaultBoolean = true) final boolean immediateFlush,
109             @PluginAttribute(value = "ignoreExceptions", defaultBoolean = true) final boolean ignoreExceptions,
110             @PluginAttribute(value = "facility", defaultString = "LOCAL0") final Facility facility,
111             @PluginAttribute("id") final String id,
112             @PluginAttribute(value = "enterpriseNumber", defaultInt = Rfc5424Layout.DEFAULT_ENTERPRISE_NUMBER) final int enterpriseNumber,
113             @PluginAttribute(value = "includeMdc", defaultBoolean = true) final boolean includeMdc,
114             @PluginAttribute("mdcId") final String mdcId,
115             @PluginAttribute("mdcPrefix") final String mdcPrefix,
116             @PluginAttribute("eventPrefix") final String eventPrefix,
117             @PluginAttribute(value = "newLine", defaultBoolean = false) final boolean newLine,
118             @PluginAttribute("newLineEscape") final String escapeNL,
119             @PluginAttribute("appName") final String appName,
120             @PluginAttribute("messageId") final String msgId,
121             @PluginAttribute("mdcExcludes") final String excludes,
122             @PluginAttribute("mdcIncludes") final String includes,
123             @PluginAttribute("mdcRequired") final String required,
124             @PluginAttribute("format") final String format,
125             @PluginElement("Filter") final Filter filter,
126             @PluginConfiguration final Configuration config,
127             @PluginAttribute(value = "charset", defaultString = "UTF-8") final Charset charsetName,
128             @PluginAttribute("exceptionPattern") final String exceptionPattern,
129             @PluginElement("LoggerFields") final LoggerFields[] loggerFields, @PluginAttribute(value = "advertise", defaultBoolean = false) final boolean advertise) {
130         // @formatter:on
131 
132         // TODO: add Protocol to TypeConverters
133         final Protocol protocol = EnglishEnums.valueOf(Protocol.class, protocolStr);
134         final boolean useTlsMessageFormat = sslConfig != null || protocol == Protocol.SSL;
135         final Layout<? extends Serializable> layout = RFC5424.equalsIgnoreCase(format) ?
136             Rfc5424Layout.createLayout(facility, id, enterpriseNumber, includeMdc, mdcId, mdcPrefix, eventPrefix, newLine,
137                 escapeNL, appName, msgId, excludes, includes, required, exceptionPattern, useTlsMessageFormat, loggerFields,
138                 config) :
139             SyslogLayout.createLayout(facility, newLine, escapeNL, charsetName);
140 
141         if (name == null) {
142             LOGGER.error("No name provided for SyslogAppender");
143             return null;
144         }
145         final AbstractSocketManager manager = createSocketManager(name, protocol, host, port, connectTimeoutMillis,
146                 sslConfig, reconnectionDelayMillis, immediateFail, layout);
147 
148         return new SyslogAppender(name, layout, filter, ignoreExceptions, immediateFlush, manager,
149                 advertise ? config.getAdvertiser() : null);
150     }
151 }