Previous Topic: Configure the Dashboard on SQL Server CMSsNext Topic: Dashboard Configuration Parameters


Configure the Dashboard on Oracle CMSs

To configure the dashboard on Oracle CMSs, run commands using a utility such as Oracle SQL Plus to change parameters to new values.

Syntax

Run this command:

begin dlp_agg.
  rut_dlp_set_aggregation_values (<parameter>[,<parameter>]); 
  commit; end;

Where <parameter> defines the new value for an dashboard parameter.

Each query can include multiple parameter definitions, separated by commas. If a parameter is not explicitly specified, it retains its current value. Available parameters are described in the following sections.

Example

The following example specifies a 3 month dashboard snapshot period. Snapshots refer to total incident counts for the whole snapshot period. Snapshots are calculated for the following metrics: Reviewed Events, New Events, and Escalated Events:

begin dlp_agg.
  rut_dlp_set_aggregation_values 
  (history=3); 
  commit; end;

More information:

Dashboard Configuration Parameters