Hitachi

JP1 Version 12 JP1/Integrated Management 2 - Manager Command, Definition File and API Reference


System color definition file (systemColor.conf)

Organization of this page

Format

DESC_VERSION=file-version
 
#comment-line
[DEFAULT.BackgroundColor=color]
[DEFAULT.TextColor=color]
 
[SEVERITY.event-level.BackgroundColor=color]
[SEVERITY.event-level.TextColor=color]
:

File

systemColor.conf (system color definition file)

systemColor.conf.model (model file for the system color definition file)

Storage directory

In Windows
For a physical host:

Console-path\conf\console\profile

For a logical host:

shared-folder\jp1cons\conf\console\profile

In UNIX
For a physical host:

/etc/opt/jp1cons/conf/console/profile

For a logical host:

shared-directory/jp1cons/conf/console/profile

Description

This file defines the color settings used on the Monitor Events page, Severe Events page, and Search Events page of the Event Console window.

Execution permission

In Windows

The Administrators group and SYSTEM users must be able to reference the file.

In UNIX

Users with the root permissions must be able to reference the file.

When the definitions are applied

When you select the Display check box in the Coloring section of the Preferences window, the events in an event list are colored according to the settings specified in the system color definition file.

JP1/IM - View colors the events according to the settings in the system color definition file specified when the user logs in.

If a user changes the settings in the system color definition file during the login process, the new settings take effect when the user restarts JP1/IM - View.

Information that is specified

DESC_VERSION=file-version

Indicates the system color definition file format version. The value to be specified is 1. If this value is omitted or another numeric value is specified, 1 is assumed.

#comment-line

A line beginning with a hash mark (#) is treated as a comment.

[DEFAULT.BackgroundColor=color]

Specifies the default background color. If the background color for the event level is not specified, or is specified for a JP1 event that does not match the specification of the background color, the background color specified for this parameter is applied. This parameter can be omitted. The background color is specified by the name of the color or by RGB values. The following table shows the correspondence between color name and RGB values.

Color name

RGB value

black

0,0,0

blue

0,0,255

cyan

0,255,255

darkGray

64,64,64

gray

128,128,128

green

0,255,0

lightGray

192,192,192

magenta

255,0,255

orange

255,200,0

pink

255,175,175

red

255,0,0

white

255,255,255

yellow

255,255,0

The color names are not case sensitive.

The range of RGB values that can be specified is from 0 to 255. The default value is white (255,255,255). RGB values are separated by a comma (,).

[DEFAULT.TextColor=color]

Specifies the text color of an event level if a color is not specified. This parameter can be omitted. The color name, the RGB values, and the range of RGB values are the same as DEFAULT.BackgroundColor=color. The color names are not case sensitive.

The default value is black (0,0,0).

[SEVERITY.event-level.BackgroundColor=color]

Specifies the background color of an event level. This parameter can be omitted. The color name, the RGB values, and the range of RGB values are the same as DEFAULT.BackgroundColor=color. The color names are not case sensitive.

The event levels that can be specified are Emergency, Alert, Critical, Error, Warning, Notice, Information, and Debug. The event levels are case sensitive.

[SEVERITY.event-level.TextColor=color]

Specifies the text color of the event level. This parameter can be omitted. The color name, the RGB values, and the range of RGB values are the same as DEFAULT.BackgroundColor=color. The color names are not case sensitive.

The event levels that can be specified are Emergency, Alert, Critical, Error, Warning, Notice, Information, and Debug. The event levels are case sensitive.

Example definition

DESC_VERSION=1
 
DEFAULT.TextColor=black
DEFAULT.BackgroundColor=white
 
SEVERITY.Emergency.TextColor=white
SEVERITY.Emergency.BackgroundColor=red
 
SEVERITY.Alert.TextColor=white
SEVERITY.Alert.BackgroundColor=red
 
SEVERITY.Critical.TextColor=white
SEVERITY.Critical.BackgroundColor=red
 
SEVERITY.Error.TextColor=white
SEVERITY.Error.BackgroundColor=255,128,0
 
SEVERITY.Warning.TextColor=black
SEVERITY.Warning.BackgroundColor=yellow