Backup Netcool/OMNIbus ObjectServer configmap
Learn about the structure of the configmap for the backup IBM®
Tivoli®
Netcool®/OMNIbus ObjectServer
pod, ncobackup-agg-b
. Edit this
configmap to customize, and add custom automations and triggers to, the backup Netcool/OMNIbus ObjectServer, and to customize the operation of the bidirectional gateway that connects
the primary and backup Netcool/OMNIbus ObjectServers.
Contents
Data elements | Description | More information |
---|---|---|
|
Use this element to append a new property to the end of the Netcool/OMNIbus ObjectServer properties file on pod restart. |
Netcool/OMNIbus 8.1 documentation: Using the ObjectServer properties and command-line options |
|
Use this element to add a new SQL extension, such as a trigger or an automation, to the Netcool/OMNIbus ObjectServer on pod restart. |
|
|
The gateway map definition in this element replaces the definition in the pod (AGG_GATE.map) on pod restart. |
|
|
Properties that are listed in this element are appended to the gateway properties file prior on pod restart. |
Netcool/OMNIbus 8.1 documentation: Common gateway properties and command-line options |
|
The gateway startup command definition in this element replaces the definition in the pod (AGG_GATE.startup.cmd) on pod restart. |
|
|
The gateway table replication definition in this element replaces the definition in the pod (AGG_GATE.tblrep.def) on pod restart. |
Netcool/OMNIbus 8.1 documentation: Table replication definition file |
Examples of each of the data elements in this configmap are provided.
Data element: agg-b-props-append
MessageLevel: 'debug'
property to the
.props
file of the backup Netcool/OMNIbus ObjectServer.agg-b-props-append: |
MessageLevel: 'debug'
Data element: agg-b-sql-extensions
agg-b-sql-extensions: |
-- create a custom db
create database mydb;
go
-- create a custom table
create table mydb.mytable persistent
(
col1 incr primary key,
col2 varchar(255)
);
go
Data element: agg-gate-map-replace
agg-gate-map-replace: |
# My test map
CREATE MAPPING StatusMap
(
'Identifier' = '@Identifier' ON INSERT ONLY,
'Node' = '@Node' ON INSERT ONLY
);
Data element: agg-gate-props-append
agg-gate-props-append: |
MessageLevel: 'debug'
agg-gate-startup-cmd-replace: |
SHOW PROPS;
Data element: agg-gate-startup-cmd-replace
agg-gate-startup-cmd-replace: |
SHOW PROPS;
Data element: agg-gate-tblrep-def-replace
agg-gate-tblrep-def-replace: |
# My test table replication
REPLICATE ALL FROM TABLE 'alerts.status'
USING MAP 'StatusMap';