![]() ![]() ![]() ![]() |
![]() |
DGE Management
6.1 Configuring Data Gathering Engines (DGEs)
NetVigil uses a distributed, tiered architecture where the data collection and storage is handled by the DGE component. Each DGE polls data from the network devices, servers and applications and performs real-time aggregation and storage of this performance data in a local relational database. The DGE also triggers actions and notifications when it detects that the threshold conditions are exceeded or crossed.
6.1.1 Configuring a New DGE
If you would like to expand your NetVigil system to monitor additional devices in remote geographical or logical locations, you can install the software on another physical machine and integrate it seamlessly into your existing setup. The main steps are:
You can add multiple DGEs in the same location for load balancing or increasing monitoring capacity, and also distribute DGEs in multiple locations as needed.
- Configure the DGE name:
- Install the DGE software on a new DGE host.
- On the DGE host, edit
NETVIGIL_HOME/etc/dge.xml
to set the unique name of this DGE. The install process will automatically set this for you, so you will only need to edit this file if you are making name changes after installation.- On the DGE host, edit
NETVIGIL_HOME/etc/netvigil.xml
to set the Fully Qualified Domain Name (FQDN) or IP address of the host that runs the provisioning database. This step is automatically done during the install process.- Before starting up the DGE process, you must create an entry for this DGE in the BVE provisioning database as described below in "Step 2: Create a New DGE Host" on page 106.
- Changing the IP address of an existing DGE in BVE
- Log in as Superuser
- Go to
SuperUser >DGE management > Update
- Enter the new IP address
6.1.2 Changing DGE Database Type
By default, the DGE database is set to MySQL (licensed and shipped with NetVigil). However, you can use Oracle version 8.1 or higher instead.
NetVigil includes the appropriate Oracle JDBC drivers.
If the auto increment script doesn't run successfully, then execute each of the statement in the script individually at the SQL prompt.
with:
<dge vendor="jdbc:oracle:thin" port="1521" user="insert_username_here" password="insert_password_here" name="insert_database_name_here" driver="oracle.jdbc.driver.OracleDriver minConnections="4" maxConnections="10" debugging="false" url="jdbc:oracle:thin:$USER/$PASSWORD@$DEVICE:$PORT:$DATABASE"/>Note: Remember to place correct parameter values within the quotation marks.6.1.3 Changing DGE Aggregation Scheme
You can change the DGE data aggregation scheme by updating
NETVIGIL_HOME/etc/aggregation.xml
. However, you MUST change this prior to the installation process and not after installation. If you change the aggregation scheme in a production system, all existing performance data will be deleted and fresh databases for the data aggregation will be used.When a fresh NetVigil system is installed, the aggregation schema is loaded from aggregation.xml and stored in the provisioning database. In order to update the schema, you have to delete the
- Shutdown NetVigil on ALL hosts running NetVigil
su
cd $NETVIGIL_HOME
etc/netvigil.init stop- Remove the existing DGE database on all DGEs. If you have sufficient disk space, you should make a backup
mv database/aggregateddatadb database/aggregateddatadb.OLD
cp etc/aggregation.xml database/aggregateddatadb.OLD/
rm -rf database/aggregateddatadb- Edit etc/aggregation.xml with the desired scheme.
- Edit
database/schema/alter/rmaggscheme.sh
and uncomment the 3 lines towards the end of the script# $JAVA_HOME/bin/java $CVPARAM \
# com.idelia.emerald.utils.RemoveAggregationSchemes \
# $INSTALL_DIR/etc/$DBCONF- Start the provisioning database (
etc/provdb.init start
) which will also start some other dependencies.- Reset the aggregation scheme in the provisioning database using the modified script
sh database/schema/alter/rmaggscheme.sh
If you recieve any error messages, please contact Fidelia Support for further assistance before proceeding any further.- If there is no error, stop the provisioning database and then restart all the components
etc/provdb.init stop
sleep 30
netvigil.init startIncreasing the time interval that the data is stored directly impacts the size of the DGE database.
6.1.4 Disk Space Requirements for DGE Aggregation
Note A DGE Disk Space Requirements calculator is available at http://support.fidelia.com/resources/dbsize/
The DGE database stores three main data types:
- Aggregated performance data
- Event data (threshold violations)
- Syslog and Trap text messages
Each aggregated data value is 30 bytes in size (including the size of its index). For the default aggregation scheme:
5 minute samples for 1 day = 60/5*24 = 288 samples 15 minute samples for 7 days = 60/15*24*7 = 672 samples 60 minute samples for 90 days = 60/60*24*90 = 2160 samples 1 day samples for 3 years = 1*365*3 = 1095 samples TOTAL size per test = (288+672+2160+1095) * 30 bytes = 126 KB per testFor 10,000 tests DGE database = 1.26GB
The database size for 10,000 tests using some alternate aggregation schemes are described in the table below:
Oracle also requires space for transaction logs. The transaction log size must be set to a minimum of 32MB.
6.2 Adding DGE into BVE database
Once you have configured a new physical DGE, you must configure the BVE engine to recognize and use the DGE. This is done by adding the DGE to a "Location".
6.2.1 Adding Locations and DGEs via web
The superuser creates DGE locations and adds new DGEs into these locations using the web application. During provisioning devices, you have to assign them to a Location, and the DGE is automatically selected by the BVE engine. The Location can be any logical or functional name, e.g., New York or datacenter3 or finance.
- Step 1: Create a DGE Location
- Login to NetVigil as
superuser
.- Click on the SUPERUSER tab on the main navigation bar to go to the DGE Locations page (see Figure 6.1 below.)
- Select the Create New Location link in the information window to go to the Create Location page.
- Fill in the Name field with a unique name to identify the DGE host location (required). This can be any text, typically the name of a geographic location, department, building, etc.
- Fill in the optional fields if desired to clarify the geographical location of the DGE host and any comments.
- Click the Create Location button to save your changes.
DGE Locations Page
- Step 2: Create a New DGE Host
- Click on the SUPERUSER tab on the main navigation bar.
- Click on the DGE Mgmt link on the secondary navigation bar to go to the DGE Management page (see Figure 6.2 below.)
- Select the Create a New DGE link in the information window to go to the Create New Data Gathering Engine page (see Figure 6.3 below.)
- Fill in the Name field with a unique name to identify the DGE host. This name can be arbitrary, but should be unique as it is used by the DGE to identify itself to the BVE layer.
- Fill in the Host field with the fully qualified domain name or IP address of the DGE host. At startup, the DGE checks the hostname/IP in the provisioning database against its own IP address as a sanity check.
- Select the DGE location from the dropdown list (there may often be multiple DGEs assigned to a single geographic location.)
- Set the Soft Limit and Hard Limit values. See Section 6.2.2, "Understanding DGE Load Balancing" on page 6-109 for additional information.
- Click the Create DGE button to save your changes.
- The DGE process must be started after the provisioning database has been started, since the DGE connects to the provisioning database. Typically this is done using the Windows Control Panel on Windows systems, or
NETVIGIL_HOME/etc/dge.init
on Unix systems.DGE Management page
Create a New Data Gathering Engine page6.2.2 Understanding DGE Load Balancing
DGEs are grouped within DGE locations. A DGE location is simply a way of grouping DGEs for load balancing; DGEs in the same DGE location need not be in the same physical location.
For multiple DGEs in a single "location", NetVigil uses a load balancing mechanism based on configurable test limits to ensure that DGE hosts are not overloaded. There are two limits, soft and hard, which are used to determine whether the DGE has the capacity to take on a newly-provisioned device. If the number of tests reach the hard limit, no more tests can be provisioned on that DGE. Once a soft limit is reached, tests for existing devices only can be added to that DGE. Else the device is provisioned on the least loaded DGE (note that tests for a device are not split across multiple DGEs to optimize performance).
6.3 Using the DGE Controller
6.3.1 Monitoring DGE operation/capacity
The DGE component keeps track of different types of monitors that are running, number of objects processed and number of items in various queues waiting to be processed. You can telnet into port
7655
(default, or use the port that you have configured) on the server the DGE component is running:% telnet my_dge 7655 Trying n.n.n.n... Connected to my_dge Escape character is '^]'. NetVigil device monitor password: ***** <<welcome>>Once logged in, you can use the status command to view the health of each monitor, as well as the number of times they have performed a health check of configured elements:
controller> status <<begin>> Monitor[sql] - com.fidelia.emerald.monitor.SqlQueryMonitor Number of passes: 0 Work Units processed: 0 Thread Status: alive Monitor[radius] - com.fidelia.emerald.monitor.RadiusMonitor Number of passes: 993 Work Units processed: 993 Thread Status: alive Monitor[ldap] - com.fidelia.emerald.monitor.LdapMonitor Number of passes: 0 Work Units processed: 0 Thread Status: alive [additional status lines removed] <<end>>On a healthy DGE, Thread Status for all the monitors should indicate
alive
and the number of passes and number of work units processed should be increasing, provided there are one or more tests of that particular type configured (and not suspended) in the system.The DGE status server also provides important information regarding capacity planning. The Schedule Queue section of the
status
command output indicates how many tests are waiting to be performed:MonitorServer Schedule Queue [Monitor[sql]] Size: 0 Schedule Queue [Monitor[ldap]] Size: 0 Schedule Queue [Monitor[radius]] Size: 0 Schedule Queue [Monitor[port]] Size: 0 Schedule Queue [Monitor[ntp]] Size: 0 Schedule Queue [Monitor[poet]] Size: 0 Schedule Queue [Monitor[ping]] Size: 0 Schedule Queue [Monitor[snmp]] Size: 2 Schedule Queue [Monitor[dns]] Size: 0 Schedule Queue [Monitor[external]] Size: 0 Result Queue Size: 0 Aggregation Writer Queue Size: 0 Result Writer Queue Size: 0 Event Writer Queue Size: 0In the event of a network outage, the size of different queues may grow to a large number depending on the network topology and reachability of each device. Once the outage has been resolved, the queues should start to decrease. However, if under normal operating conditions the queue continues to grow, it would indicate that new tests are being added to the queue before existing tests can be performed, and your DGE capacity has been exceeded. At this point you need to either add another DGE at the same location, move some tests/devices to a different DGE (either at same location or a different location), reduce the frequency of the tests or suspend some tests until capacity on the DGE can be increased.
Once completed, you can use quit command to log out of the DGE status server:
6.4 Upgrading DGE Hardware
As the load on a DGE increases, it may be necessary to perform upgrades to the capacity of the hardware to increase the physical limits of the machine. If the upgrade involves addition of resources (memory, disk space, etc.) to the same machine, no special steps need to be performed. However, if the physical server is being upgraded for any reason, then the following steps need to be performed. Refer to the section on database backup/restoration for additional details.
- Install NetVigil on the new host, making sure to use the same DGE name as the old one, when asked during the install. Else you will need to edit
$NETVIGIL_HOME/dge.xml
and set the DGE name there.- Copy over the following directories in their entirety from the old host to the new using tar on Unix machines or copying the directories in Windows:
database/
etc/licenseKey.xml
etc/dge.xml
etc/netvigil.xml
Fidelia Technology, Inc. Contact Us |
![]() ![]() ![]() ![]() |