Receiving data over a TCP/UDP connection
To receive data over a TCP/UDP connection, you need to create the Receive over TCP/UDP data collector.
The following information describes the use case and the process of creating this data collector:
To receive data over a TCP or UDP connection
- Navigate to Administration > Data Collectors > Add Data Collector
.
- In the Name box, provide a unique name to identify this data collector.
- From the Type list, select Receive over TCP/UDP.
Provide the following information, as appropriate:
Field
Description
Target/Collection Host
Collection Host (Agent)
Type or select the collection host depending on whether you want to use the Collection Station or the Collection Agent to perform data collection.
The collection host is the computer on which the Collection Station or the Collection Agent is located.
By default, the Collection Station is already selected. You can either retain the default selection or select the Collection Agent.
Note: For this type of data collector, the target host and collection host are expected to have different values.
Collector Inputs (Note that data becomes available for searching only after a client sends data to the specified host (on the corresponding port)).
Protocol
Select UDP or TCP as appropriate.
By default, UDP is selected.
Bind address
Provide the IP address to which you want to bind for creating a connection.
Port
Provide the port to connect to the UDP/TCP protocol.
By default, this value is set to 514.
Note: This data collector does not work with the default port on a Linux computer. This is because only root users can access ports with values less than 1024. Users other than root users must ensure that the port value is greater than 1024.
Data Pattern
Pattern
Assign a matching data pattern (and optionally date format) for indexing the data.
By default the data pattern is set to Free Text without Timestamp. Unlike other data collectors, this type of data collector does not support automatic detection of relevant data patterns. And because this data collector receives events asynchronously, you cannot see a preview of the results right after selecting the data pattern.
After creating the data collector, if you are not satisfied with the search results, then you can assign a new data pattern by manually creating it or by customizing an existing data pattern that closely matches the data that you are collecting (by using the clone feature). You can obtain the sample data for creating (or cloning) the data pattern from the search results on the Search page (data that just got indexed).The data pattern and date format together decide the way in which your data will be indexed. When you select a data pattern, the matching date format is automatically selected. However, you can override the date format by manually selecting another date format or by selecting the option to create a new date format. By doing this, the date format is used to index the date and time string, while rest of the data is indexed as per the data pattern selected. If you select only a date format, then the date format is used for indexing the timestamp, while the rest of the data is displayed in a raw format in your search results.For more information, see Assigning-the-data-pattern-and-date-format-to-a-data-collector.
Note: Before specifying the data pattern, under the Advanced Options section, ensure that the correct file encoding is set.
Date Format
Date Locale
(Optional) You can use this setting to enable reading the date and time string based on the language selected. Note that this setting only applies to those portions of the date and time string that consist letters (digits are not considered).
By default, this value is set to English.
You can manually select a language to override the default locale. For a list of languages supported, see Language-information.
File Encoding
If your data file uses a character set encoding other than UTF-8 (default), then do one of the following:
- Filter the relevant character set encodings that match the file.
To do this, click Filter relevant charset encodingnext to this field.
- Manually scan through the list available and select an appropriate option.
- Allow TrueSight IT Data Analytics to use a relevant character set encoding for your file by manually select the AUTO option.
Note: This data collector receives events asynchronously; therefore, filtering the relevant file encodings and using the AUTO option are not supported for this data collector. Also, because most files are expected to use the UTF-8 file encoding, UTF-8 is set as the default option. If the data that you want to collect and index uses a format other than UTF-8, you can manually select the correct file encoding option.
Event Delimiter
(Optional) All the records processed using the Free Text without Timestamp data pattern are assumed to be a single line of data with a line terminator at the end of the event.
Records are distinguished on the basis of the new line separator.
If you want to distinguish records in a custom way, then you can specify a custom string or regular expression in the Event Delimiter box that decides where the new line starts in the data. This string or regular expression must correspond to some text in your data which appears at the beginning of a line.
Start/Stop Collection
(Optional) Select this check box if you want to start the data collection immediately.
The [expand] macro is a standalone macro and it cannot be used inline. Click on this message for details.
- Filter the relevant character set encodings that match the file.
- Click Create to save your changes.
Use case for sending log4j output directly into IT Data Analytics
If you are monitoring an application that uses log4j for logging data, you can directly collect and search this data by using IT Data Analytics. You can collect this data in a number of ways. However, one of the easiest ways of collecting this data is to configure log4j to send data directly into IT Data Analytics.
You can do this by adding the SyslogAppender in the log4j .properties file. After doing this, you can create the Receive over TCP/UDP data collector to receive this data on the TCP or UDP port. Doing this can help you easily search, analyze, and visualize your log4j data and get meaningful insights.
Best practice
Ensure that the collection host (where the Collection Station or Collection agent resides) is operating in the same timezone as the Log4j files you are trying to collect.
If there is no timestamp in the files, then ensure that the collection host is operating in the same timezone as the server hosting the files.
To send log4j data into IT Data Analytics
- Identify the .properties file that you want to send to IT Data Analytics.
Edit the file, add details regarding the SyslogAppender, and configure appenders for the logger as follows (if it is not already present).
The following code block provides a few example lines from one of the log4j .properties file.
# Configured appenders for the logger
log4j.rootLogger=SYSLOGFILE
# The syslog appender to be configured for the syslog
configuration to affect
log4j.appender.SYSLOGFILE=org.apache.log4j.net.SyslogAppender
# The hostname to log the syslogger information
log4j.appender.SYSLOGFILE.SyslogHost = CollectionHost.bmc.com
# The facility name in the logger where the log file shall be logged
log4j.appender.SYSLOGFILE.facility=local7
# If true, the SyslogAppender will generate the header (timestamp
and host information) in the message
log4j.appender.SYSLOGFILE.Header=false
# The log filename layout of the syslogger appender
log4j.appender.SYSLOGFILE.layout=org.apache.log4j.PatternLayout
# The syslogger configuration pattern
log4j.appender.SYSLOGFILE.layout.ConversionPattern=
%-5p %d{MMM/dd HH:mm:ss} %-20c{20} [%t] %m%nReplace the values of the following properties to be able to connect with IT Data Analytics and save the file.
Property
Description
If you are using log4j versions prior to 1.x
log4j.appender.SYSLOGFILE.SyslogHost
Value must be set to the collection host name that you want to use for receiving the log4j data.
This value can be set to the host name where the Collection Station or Collection Agent is installed.
Note: Log4j versions prior to 1.x can only send data over the UDP protocol.If you are using log4j versions after 1.x
host
Value must be set to the collection host name that you want to use for receiving the log4j data.
This value can be set to the host name where the Collection Station or Collection Agent is installed.port
Value must be set to the port that you want to use for receiving the log4j data.
Default port: 514
protocol
Depending on the protocol that you want to use for receiving the log4j data, value must be set to TCP or UDP.
- (Optional) If you want to extract the timestamp and fields from your log4j data, then it is recommended that you create a data pattern. This data pattern needs to be used while creating the data collector. For more information, see Creating-data-patterns.
You can optionally extract only the timestamp and extract rest of the data as free text. To capture the timestamp, you need to create a new date format at the time of creating the data collector. - Create the Receive over TCP/UDP data collector and use the same details that you used while configuring the SyslogAppender in step 3.
After completing the data collector creation, you can start seeing log4j data into IT Data Analytics.