Generic - Events SQL Extractor
This topic describes how to import generic events by using the Events SQL Extractor.
Collecting data by using the Generic - Events SQL extractor
To collect data by using the Generic - Events SQL ETL, do the following tasks:
You must configure the ETL to connect to the file parser for data collection. ETL configuration includes specifying the basic and optional advanced properties. While configuring the basic properties is sufficient, you can optionally configure the advanced properties for additional customization.
To configure the basic properties of the ETL
Some of the basic properties display default values. You can modify these values if required.
To configure the basic properties:
- Navigate to Administration > ETL & System Tasks, and select ETL tasks.
On the ETL tasks page, click Add > Add ETL. The Add ETL page displays the configuration properties. You must configure properties in the following tabs: Run configuration, Entity catalog, SQL query, and Connection parameters.
On the Run Configuration tab, select Generic - Events SQL Extractor from the ETL Module list. The name of the ETL is displayed in the ETL task name field. You can edit this field to customize the name.
- Click the Entity catalog tab, and select one of the following options:
Shared Entity Catalog: Select if the other ETLs access the same entities that are used by this ETL.
- From the Sharing with Entity Catalog list, select the entity catalog name that is shared between ETLs.
- Private Entity Catalog: Select if you want to use this ETL independently.
Click the SQL query tab, and configure the following properties:
Property Description SQL query hints Provides hints for including the mandatory and optional parameters in the SQL extraction query. SQL query This tab is only available when a custom database query has to be built in order to get the data from a generic source. Type the SQL extraction query in the text box. Click the Connection properties tab to configure the following properties:
Property
Description
Datasource type Select one of the following options:
- Select existing datasource:
- Datasource: From the Datasource list, select a datasource.
- Custom datasource:
Database type: Select a database type from the list.
- Oracle
- Microsoft SQL Server/Sybase
- Other database
Database user: Type the user name to connect to the database.
Database password: Type the user name to connect to the database.
Database TNS name (Applicable to Oracle): Type in the database TNS name.
- Data source name (Applicable to Microsoft SQL Server/Sybase): Specify the data source name.
- Database name (Applicable to Microsoft SQL Server/Sybase): Type in the database name.
- Connection URL (Applicable to Other database): Enter the connection URL. If you select Other database in the Database type property, then you must type a value.
To connect to another database type, verify that the correct driver is installed on the Continuous Optimization server running this ETL. For an ETL in Perl code, install an appropriate DBD driver. For an ETL in Java code, install an appropriate JDBC driver.
- Select existing datasource:
(Optional) Override the default values of properties in the following tabs:
- Click Save.
The ETL tasks page shows the details of the newly configured Generic - Events SQL extractor.
To configure the advanced properties of the ETL (optional)
You can configure the advanced properties to change the way the ETL works.
To configure the advanced properties:
- On the Add ETL page, click Advanced.
Configure the following properties:
- Click Save.
The ETL tasks page shows the details of the newly configured Generic - Events SQL extractor.
After you configure the ETL, you can run it to collect data. You can run the ETL in the following modes:
A. Simulation mode: Only validates connection to the data source, does not collect data. Use this mode when you want to run the ETL for the first time or after you make any changes to the ETL configuration.
B. Production mode: Collects data from the data source.
A. To run the ETL in the simulation mode
To run the ETL in the simulation mode:
- Navigate to Administration > ETL & System Tasks, and select ETL tasks.
- On the ETL tasks page, click the ETL. The ETL details are displayed.
- In the Run configurations table, click Edit to modify the ETL configuration settings.
- On the Run configuration tab, ensure that the Execute in simulation mode option is set to Yes, and click Save.
- Click Run active configuration. A confirmation message about the ETL run job submission is displayed.
- On the ETL tasks page, check the ETL run status in the Last exit column.
OK Indicates that the ETL ran without any error. You are ready to run the ETL in the production mode. - If the ETL run status is Warning, Error, or Failed:
- On the ETL tasks page, click in the last column of the ETL name row.
- Check the log and reconfigure the ETL if required.
- Run the ETL again.
- Repeat these steps until the ETL run status changes to OK.
B. To run the ETL in the production mode
You can run the ETL manually when required or schedule it to run at a specified time.
To run the ETL manually
- On the ETL tasks page, click the ETL. The ETL details are displayed.
- In the Run configurations table, click Edit to modify the ETL configuration settings. The Edit run configuration page is displayed.
- On the Run configuration tab, select No for the Execute in simulation mode option, and click Save.
- To run the ETL immediately, click Run active configuration. A confirmation message about the ETL run job submission is displayed.
When the ETL runs, it collects data from the source and transfers it to the BMC Helix Continuous Optimization database.
To schedule the ETL run in the production mode
By default, the ETL is scheduled to run daily. You can customize this schedule by changing the frequency and period of running the ETL.
To configure the ETL run schedule:
- On the ETL tasks page, click the ETL, and click Edit task. The ETL details are displayed.
On the Edit task page, do the following, and click Save:
- Specify a unique name and description for the ETL task.
- In the Maximum execution time before warning field, specify the duration for which the ETL must run before generating warnings or alerts, if any.
- Select a predefined or custom frequency for starting the ETL run. The default selection is Predefined.
- Select the task group and the scheduler to which you want to assign the ETL task.
Click Schedule. A message confirming the scheduling job submission is displayed.
When the ETL runs as scheduled, it collects data from the source and transfers it to the BMC Helix Continuous Optimization database.
Verify that the ETL ran successfully and check whether the data is refreshed in the Workspace.
To verify whether the ETL ran successfully:
- Click Administration > ETL and System Tasks > ETL tasks.
- In the Last exec time column corresponding to the ETL name, verify that the current date and time are displayed.
To view the events:
- Access the required domain by navigating to Workspace > Domains, Services & Applications.
- In the details page of the domain, that appears on the right, click Navigate to > Events.
Configuring the ETL
Below is an example query that can be used to extract generic events; it can be used as template to create custom extraction queries:
SELECT
CONVERT(VARCHAR,EventTimeStamp,120) AS EVENTTS,
Description AS DESCRIPTION,
EventID AS DS_EVENTID,
SystemName AS DS_SYSNM,
1 AS EVENTTYPEID,
EventName NAME
FROM
CAPIF_Event
where EventTimeStamp > CONVERT(datetime,?, 120)
ORDER BY EventTimeStamp asc
Notes
EVENTTS column has to be set as first column. Lastcounter parameter is mandatory in the query.
Columns in the query have the same names as of the EVDAT columns. All the columns defined in the EVDAT dataset are supported. For information about the EVDAT dataset, see Dataset reference for ETL tasks.
Below is a list of supported event types:
ID | Description |
---|---|
1 | Incident |
2 | Generic |
3 | Maintenance |
4 | Change |
5 | Problem |
6 | Error |
7 | Unknown type |
Comments
Log in or register to comment.