Collecting files from a host locally
Standalone Agent and Standalone Collection Agent
All references to the Standalone Agent or Standalone Collection Agent in this document is applicable only if you are using IT Data Analytics version 11.3.01. The latest version released for a Standalone Agent is 11.3.01. Starting from version 11.3.02, no more versions will be released for the Standalone Agent. However, you can make a note of the following information:
- You can continue to use Standalone Agent version 11.3.01 with IT Data Analytics version 11.3.02.
- If you have created Data Collectors using a Standalone Agent in version 11.3.01, the data collection will continue to work with IT Data Analytics version 11.3.02.
- You can also edit the Data Collectors to use PATROL Agent instead of a Standalone Agent in IT Data Analytics version 11.3.02.
The following video (4:09) illustrates the process of creating a data collector for collecting the itda.log file.
To collect files from a host locally
- 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 Monitor File on Collection Agent.
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 the same values.
Collector Inputs
Directory Path
Specify a directory path that is an absolute path of the log file.
In the path, you can specify wildcards or system environment variables. Wildcards can be used to match a partial path or include subdirectories of a file.
You can use the following wildcard characters:
- Question mark (?)—Can be used to substitute exactly one character in the directory path.
- Asterisk (*)—Can be used to substitute zero or more characters in the directory path.
- Sequence of two asterisks (**)—Can be used to substitute a partial path or include subdirectories depending on where you place the wildcard in the path.
For more information, see Using wildcards in the directory path.
Tip: (about specifying an environment variable) Keep in mind that after creating the environment variable on the Collection Host, you need to restart the Collection Agent (or Collection Station) to be used for creating the data collector. Without doing this, you cannot apply the environment variable and this might affect the auto-detect feature available for assigning a data pattern.
Filename/Rollover Pattern
Specify the file name only, or specify the file name with a rollover pattern to identify subsequent logs.
You can use the following wildcard characters:
- Asterisk (*)—Can be used to substitute zero or more characters in the file name.
- Question mark (?)—Can be used to substitute exactly one character in the file name.
Specifying a rollover pattern can be useful to monitor rolling log files where the log files are saved with the same name but differentiated with some variable like the time stamp or a number. Specifying a wildcard can also be useful when you remember the file name only partially.
Note: Ensure that you specify a rollover pattern for identifying log files that follow the same data format (which means they will be indexed with the same data pattern).
Time Zone
Data Pattern
Pattern
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 for IT Data Analytics
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.
Poll Interval (mins)
Enter a number to specify the poll interval (in minutes) for the log collection.
By default, this value is set to 1.
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.
- Click Create to save your changes.
Using wildcards in the directory path
A wildcard is a character that can be used to substitute one or more characters while selecting files for monitoring.
Using wildcards in the directory path can be useful in the following scenarios:
- When you want to collect specific logs from different locations on the same server.
- When you want to collect logs from the subdirectories of the specified directory.
The following table lists the wildcards that you can use while specifying directory paths:
Wildcard | Can be used to... | Examples |
---|---|---|
* | Substitute zero or more characters in the directory path. | /app/subapp*/log/access_log/ matches the following paths:
|
? | Substitute exactly one character in the directory path. | /app/subapp?/log/access_log/ matches the following paths:
|
/app/subapp??/log/ matches the following paths:
| ||
** | Match a partial path or include subdirectories of the directory path depending on where you place the wildcard in the path. To collect data from subdirectories, you need to specify the ** wildcard sequence at the end of the directory path. Note: This wildcard searches through directories and subdirectories at a maximum of five levels to find matches. Best practice: If you use this wildcard in place of extremely deep level of directories then it can negatively impact performance. Therefore, it is recommended that you use this wildcard in appropriate places. For example, suppose you want to collect the itda.log. To do this, you can specify the following inputs:
When you specify the wildcard towards the beginning of the directory path, the search for directories happens at a deeper level and doing this can negatively impact performance. Conversely, when you specify the wildcard towards the end of the directory path, the search for directories happens on a limited set and doing this can improve performance. Thus, in this scenario, specifying C:/Program files/bmcsoftware/**/ is better than specifying C:/**/. Note: If you are using a Collection Agent earlier than version 2.5, then you can only specify this wildcard at the end of the directory path to include subdirectories. For example, you can specify /usr/local/**/ to collect the following logs:
| /usr/**/*_log matches the following paths:
|