5.6
Table Of Contents
- VMware vCenter Operations Manager Administration Guide
- Contents
- VMware vCenter Operations Manager Administration Guide
- Configuring and Managing vCenter Operations Manager
- Configuring Adapters
- Configuring Resources
- Configuring Attribute Packages
- Configuring Applications
- Configuring and Managing Users
- Configuring Alert Notifications
- Performing Basic System Administration Tasks
- View Performance Information
- View Status Information
- vCenter Operations Manager Service Names
- Start or StopvCenter Operations Manager Services
- Viewing and Managing System Log Files
- Delete Old Data in the File System Database
- Run the Audit Report
- Modify Global Settings
- Modify Global Settings for Virtual Environments
- Create a Support Bundle
- Resolving Administrative System Alerts
- Analytics FSDB Overloaded
- Analytics Threshold Checking Overloaded
- Collector Is Down
- Controller Is Unable to Connect to MQ
- DataQueue Is Filling Up
- Describe Failed
- Failed to Connect to Replication MQ
- Failed to Repair Corrupted FSDB Files
- File Queue Is Full
- FSDB Files Corrupted for Resources
- FSDB Storage Drive Free Space Is Less Than 10%
- No DT Processors Connected
- One or More Resources Were Not Started
- Outbound Alert Send Failed
- Replication MQ Sender Is Blocked
- Backing Up and Recovering Data
- Using System Tools
- Summary of System Tools
- Check the FSDB and Repair Problems
- Move the FSDB
- View Resources in the FSDB
- Remove System-Generated Metrics from the FSDB
- Monitor vCenter Operations Manager Services in JConsole
- Verify Server to Collector Communication
- Configuring and Running the Repository Adapter
- conf.properties File
- Configure Database Connections for the Repository Adapter
- Set the Repository Adapter Schedule
- Configure the Source and Destination Columns for the Repository Adapter
- Set Operation Options for the Repository Adapter
- Configure Data Export Values for the Repository Adapter
- Start the Repository Adapter
- Configuring and Running runvcopsServerConfiguration
- Managing Dashboards and Dashboard Templates
- Using the FSDB JDBC Driver
- Index
URLs for FSDB JDBC Driver Connections
Whether it uses RMI or HTTP, the FSDB JDBC driver needs to know the location of the
vCenter Operations Manager DBMS. The URL that is used during driver instantiation must include this
connection information.
To connect with either RMI or HTTP, you must also provide a vCenter Operations Manager administrator user
name and password to the FSDB JDBC driver.
Table 12-1. URLs for RMI and HTTP Connections
Connection Type URL
RMI The URL should include the RMI port for the analytics process. The default port is 1199. For
example:
rmi://localhost:1199/DBMS
HTTP The URL should include the Tomcat host and port that the vCenter Operations Manager Web
application uses. For example:
http://localhost:80/FsdbJdbcOverHttpServlet
FSDB Database Scheme
To use the FSDB JDBC driver, you need to know the layout that the vCenter Operations Manager FSDB uses.
The FSDB model has one catalog, named FSDB_CAT, and one scheme, named FSDB_SCHEME. The
FSDB_CAT catalog contains the FSDB table.
All of the fields of type String are represented as floating point numbers.
Table 12-2. FSDB Table Columns
Column Type Description
resource_ID Integer ID of the resource.
attrkey_ID Integer ID of the attribute key.
timestamp String Time when vCenter Operations Manager received the value.
value String Metric value that vCenter Operations Manager received.
min_threshold String Minimum value for the dynamic threshold.
max_threshold String Maximum value for the dynamic threshold.
historical_min_threshold String Historical minimum value for the dynamic threshold.
historical_max_threshold String Historical maximum value for the dynamic threshold.
FSDB JDBC Driver SQL Formal Description
To use the FSDB JDBC driver, you need to know its SQL formal description.
The FSDB JDBC driver uses the following SQL formal description in Backus-Naur format.
SELECT "*" | <variables_list> FROM [FSDB_CAT.]?FSDB [WHERE <logical_expression>]?
variables_list ::= [FSDB.]?<field_name>[, [FSDB.]?<field_name>]*
field_name ::= column names from the FSDB table
logical_expression ::= [(]* [ [FSDB.]?<field_name> | <constant> ] [">"] | ["<"] | [">="]
| ["<="] | ["="] | ["!="] [ [FSDB.]?<field_name> | <constant> ] [<logical_operation>
[(]* [ [FSDB.]?<field_name> | <constant> ] [">"] | ["<"] | [">="] | ["<="] | ["="] |
["!="] [ [FSDB.]?<field_name> | <constant> ]]*
constant ::= [0-9]*[.[0-9]4]?
logical_operation ::= and | or.
VMware vCenter Operations Manager Administration Guide
154 VMware, Inc.