Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.
Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |
Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
Create a Side-Bar Menu
The Cloud Service Management Console is made up of predefined menus that launch predefined pages. You can customize the dashboard by creating side-bar menus in the dashboard that launch custom pages.
Menus are defined in a configuration file and the menu definitions determine what is displayed in the Cloud Service Management Console. The default dashboard configuration file defines a primary dashboard that consists of enabled menu items and disabled menu items, a sub-menu (launched from the Design menu), and a disabled sample launcher sub-menu. Information about menu attributes and values defined in the configuration file is included in the steps below. See Add a Launcher Sub-Menu for more information about how to add a secondary dashboard.
To create a Cloud Service Management Console menu item, do the following:
- Make a backup of the
CSA_HOME/jboss‑as/standalone/deployments/csa.war/dashboard/config.json
dashboard configuration file (where
).CSA_HOME
is the directory in which CSA is installed. -
Edit the
config.json
dashboard configuration file.In the configuration file, the menu defined for a dashboard are configured sequentially. That is, the first menu definition configured in a dashboard definition is the first menu item displayed in the dashboard. The second menu definition is the second menu item displayed. For example, in the default dashboard configuration file, the first menu item definition configured in the primary dashboard is the Organizations menu. The Organizations menu is the first menu displayed in the Cloud Service Management Console dashboard. The second menu definition is the Resources menu and it is the second menu displayed in the Cloud Service Management Console dashboard.
Determine where you want the menu item to appear in the dashboard and find the location in the configuration file. For example, if you want a menu to appear between the Organizations and Resources menu items in the dashboard, find the location between the Organizations and Resources menu definitions. If you want the menu to appear as the last menu item, find the end of the last enabled menu definition.
-
Copy the sample menu definition, whose
id
attribute is set to blanktile, and place it in the selected location. The following is an example menu definition (multiple menu definitions are separated by a comma):{
"id": "<tile_id>",
"name": "<tile_name>",
"description": "<tile_description>",
"enabled": <true_or_false>,
"style": "<tile_style>",
"target": "<tile_target>",
"data": "<tile_data>",
"helptopic": "<tile_helptopic>",
"roles": ["<role_1>", "<role_2>", ... , "<role_n>"],
"permissions": ["<permission_1>", "<permission_2>" …, "<permission_n>"]
} -
Update the attribute values in the menu definition as described in the table.
Attribute Description id A unique identifier of the menu in this dashboard among all menus defined for this dashboard. name The name of the attribute in the
messages.properties
ormessages_<locale>.properties
file that defines the name of the menu that is displayed on the dashboard (where <locale> identifies the language to which the title has been translated, for example,en
for English orja
for Japanese).The file may appear in the
CSA_HOME/jboss‑as/
or
standalone/deployments/csa.war/customCSA_HOME/jboss‑as/standalone/deployments/
directory. If the file exists in both directories, the value defined in
csa.war/dashboard/messages/dashboardCSA_HOME/jboss‑as/
takes precedence.
standalone/deployments/csa.war/customdescription The name of the attribute in the
messages.properties
ormessages_<locale>.properties
file that defines the description of the menu that is displayed on the dashboard (where <locale> identifies the language to which the title has been translated, for example,en
for English orja
for Japanese).The file may appear in the
CSA_HOME/jboss‑as/
or
standalone/deployments/csa.war/customCSA_HOME/jboss‑as/standalone/deployments/
directory. If the file exists in both directories, the value defined in
csa.war/dashboard/messages/dashboardCSA_HOME/jboss‑as/
takes precedence.
standalone/deployments/csa.war/customenabled Enable or disable the menu in the dashboard. If set to true, the menu is displayed in the dashboard. If set to false, the menu is not displayed in the dashboard. style The name of the attribute in the
CSA_HOME/jboss‑as/
file that defines the color of the menu's header that is displayed on the dashboard.
standalone/deployments/csa.war/dashboard/css/base.cssIf you are creating an assistance menu (that is, you set
target
to assistance), you must set this attribute to a pre-defined style named assistance.target The type of page launched when the menu is selected. Values include:
- iframe - An iframe or page is launched within the same dashboard or page.
- page - A new page is launched outside of the dashboard or page.
- dashboard - A sub-dashboard is launched within the same dashboard or page.
- assistance - If the
data
attribute is defined, a new page is launched outside of the dashboard or page. If thedata
attribute is not defined, no page is launched and the menu simply contains content defined by thedescription
attribute. Thestyle
attribute must be set to assistance.
data What is launched, based on the type of
target
.If iframe or page is the type of
target
selected, enter a URL or relative path (relative to the location of this file,CSA_HOME/jboss‑as/standalone/deployments/
) and filename of a Java server page to display. For example, enter http://www.mydomain.com or /csa/administration/index.jsp.If dashboard is the type of
target
selected, enter the unique dashboardid
attribute of the dashboard to display. For example, the Designs menu of the main dashboard launches a sub- or secondary dashboard. Theid
of the secondary dashboard is designs therefore you would set the value of this attribute to designs.If assistance is the type of
target
selected and if you enter a value for this attribute, aLearn More
link is displayed in the assistance menu. Clicking theLearn More
link launches a page with the content defined by this attribute. Enter a URL or relative path (relative to the location of this file,CSA_HOME/jboss‑as/standalone/deployments/
) and filename of a Java server page to display. For example, enter http://www.mydomain.com or /csa/administration/index.jsp.helptopic If the type of target
selected is iframe, this is the name of the help topic that is displayed when theAssistance
icon on the page is selected. If the type oftarget
selected is page, or dashboard, or assistance, this attribute is ignored.roles The role required by the user in order for the menu to display in the dashboard. One or more roles may be entered. However, only one role must match the user role in order for the user to see the menu. Roles must be enclosed in quotation marks and, if more than one role is entered, separated by a comma (for example, "CSA_ADMIN", "RESOURCE_SUPPLY_MANAGER"). If no roles are specified, the menu can be seen by all users.
Values include:
- CONSUMER_SERVICE_ADMINISTRATOR - The Consumer Service Administrator configures and manages consumer organizations.
- CSA_ADMIN - The Administrator has access to all functionality in the Cloud Service Management Console.
- RESOURCE_SUPPLY_MANAGER - The Resource Supply Manager creates and manages cloud resources, such as resource providers and resource pools.
- SERVICE_BUSINESS_MANAGER - The Service Business Manager creates and manages service offerings and service catalogs.
- SERVICE_DESIGNER - The Service Designer designs, implements, and maintains service designs (also referred to as blueprints), component palettes, component types, component templates, and resource offerings.
- SERVICE_OPERATIONS_MANAGER - The Service Operations Manager views and manages subscriptions and service instances.
See the "Role Descriptions" help topic in the Cloud Service Management Console for more information about these roles (navigate to Organizations > Access Control > Role Descriptions in the online help).
permission The user permissions required by the user in order for the menu items to display in the dashboard. If both permissions as well as roles are defined, the user must have one of the matching entries to be considered valid. - Save and exit the file.
-
-
Log in to the Cloud Service Management Console to view the menu. If you are already logged in, clear the browser cache (see Clear the web browser cache for information about how to clear the web browser cache) and refresh the browser. Clearing the browser cache is optional (a troubleshooting step).
We welcome your comments!
To open the configured email client on this computer, open an email window.
Otherwise, copy the information below to a web mail client, and send this email to clouddocs@hpe.com.
Help Topic ID:
Product:
Topic Title:
Feedback: