Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article describes how to adjust the thresholds that are used to determine coloring within the Uptime Infrastructure Monitor Global Scan performance fields for all elements or for individual elements.

...

Before you change Global Scan thresholds, refer to the table below for a description of each field that you can control and the associated setting name that will be is used later in this article.

Performance FieldDescriptionDataStore Setting Nameuptime.conf Setting Name
TOTThe overall CPU % busy.

gs_cpu_warn

gs_cpu_crit

globalscan.cpu.warn

globalscan.cpu.crit

% UsedThe capacity of the file system that is most full on the element.

gs_diskfull_warn

gs_diskfull_crit

globalscan.diskfull.warn

globalscan.diskfull.crit

% BusyThe work time of the busiest spindle on the element.

gs_diskbusy_warn

gs_diskbusy_crit

globalscan.diskbusy.warn

globalscan.diskbusy.crit

Swap UsedTotal swap space used.

gs_swap_warn

gs_swap_crit

globalscan.swap.warn

globalscan.swap.crit

Each field has two setting names: one to control the warning (yellow) threshold and another to set the critical (red) threshold. Either You can modify one or both settings can be modified. The setting to update for warning thresholds includes the word "warn" in the setting and the critical threshold setting includes the word "crit" in the setting name.

Changing thresholds for all elements

To change the current thresholds for all elements within your Uptime Infrastructure Monitor UIM installation, complete the following steps:

  1. Connect to your up.time DataStore using an ODBC or database tool. Assuming that you have installed Uptime Infrastructure Monitor in the default location, you can access the DataStore at the command line using the following commands:
    Code Block
    languagesql
    «change to the Uptime installation directory» 
    cd mysql

...

  1. 
    cd bin

...

  1. 
    ./mysql -u uptime --password=uptime -P 3308 --protocol=TCP uptime
  2. After you login to the

...

  1. UIM DataStore, run a command to update the threshold that you want to use with all elements. The command format and an example are detailed below. Replace the «field» text in the example below with a value from the DataStore setting name column in the table above. Replace the «new value» text in the example below with your new threshold setting (decimal values are not permitted for thresholds).
    Info

    All mysql commands assume that you are using a MySQL DataStore. The format of the commands may differ slightly for Oracle or SQL Server databases.

    Code Block
    languagesql
    mysql» update entity set «field»=«new value»;

...

  1. 
    
    Example

...

  1. 
    mysql» update entity set gs_swap_warn=50 
    mysql» update entity set gs_swap_crit=75
  2. Run the command above for each threshold value that you want to change. When you are finished, use the exit; command to

...

  1. return to the command line.
  2. Refresh your

...

  1. Global Scan view to see the new settings.

...

Changing thresholds for a single element

To change the current thresholds for a single element within your Uptime Infrastructure Monitor installation, complete the following steps:UIM installation

  1. Connect to your

...

  1. UIM DataStore using an ODBC or database tool. See the example above for details on accessing the default

...

  1. DataStore installation.
  2. Run the following two commands to update the threshold for a specific element

...

  1. :
    The first command looks up the ID of the element that you want to update, and the second command applies the change. The command formats and an example are detailed below.
    Replace the «display» text in the example below with the display name of the element for which you want to change the thresholds. Replace the «field» text in the example below with a value from the DataStore setting name column in the table above. Replace the «new value» text in the example below with your new threshold setting. The first command

...

  1. returns a value

...

  1. used to replace the «id» text within the second command (you cannot use decimal values

...

  1. for the new threshold).
    Code Block
    languagesql
    mysql» select entity_id from entity where display_name='«display»'; 
    mysql» update entity set «field»=«new value» where entity_id=«id»;

...

  1. 
    
    Example:

...

  1. 
    mysql» select entity_id from entity where display_name='my server'; 
    ------
    | 23 |
    ------
    mysql» update entity set gs_swap_warn=50 where entity_id=23; 
    mysql» update entity set gs_swap_crit=75 where entity_id=23;
  2. Run the command above for each threshold value that you want to change. When finished, use

...

  1. the exit;

...

  1.  command to be returned to the command line.
  2. Refresh your Global Scan view to see the new settings.

Changing the default values for new elements

...