Presentation is loading. Please wait.

Presentation is loading. Please wait.

OMEGAMON Enhanced 3270UI Webcast Building Workspaces 101

Similar presentations


Presentation on theme: "OMEGAMON Enhanced 3270UI Webcast Building Workspaces 101"— Presentation transcript:

1 OMEGAMON Enhanced 3270UI Webcast Building Workspaces 101
Speaker: Carolyn Reschke October 26, 2017 Joe Winterton –

2 Overview: Please ask questions at any time during the conference
The goal is to help you get started with use of the Enhanced 3270UI. Remember the OMEGAMON II/OMEGAVIEW CUAs zOS go away in V540/V550/V750 OMEGAMONs We want these sessions to be interactive! Feel free to use the chat window for feedback, questions and comments We are not recording this web conference today: People feel free to ask questions (interactive please!) You can share with colleagues who have an interest a recorded version of the basic content we will do later and post for everyone We may need to get back to you if the question will take offline research Please keep your phone on mute when not speaking *6 toggles mute on phone conference facility if your phone does not have Mute button All functions discussed are GA except as noted– OMEGAMON XE V540 Levels or higher 2

3 IBM Cloud Application Performance Management
Announced Oct 3rd 2017 Announcements IBM Z Application Performance Management Connect V5.5 enables visibility of mainframe applications components in multiple vendors APM dashboards. There are two key areas of capability: Resource Monitoring (same function as delivered in OMEGAMON for APM v5.4) Resolve application slow downs / outages faster with visibility z/OS subsystem health information in APM dashboard. Health information at the subsystem level for most z/OS subsystems collected via OMEGAMON installed on z/OS Supported with IBM Cloud APM only in V5.5 Transaction Tracking (new capability in v5.5) View of full end-to-end transactions from mobile to mainframe in a single dashboard for faster application issue isolation, identification of mainframe components in specific applications, and reduction of false-positives issues for zSMEs V5.5 support is centered around transactions entering CICS (via MQ, HTTP and SOAP) and flowing through Db2 and IMS DB. Supported with AppDynamics APM only in V5.5 IBM Z APM Connect Non-IBM APM vendors IBM Cloud Application Performance Management IBM’s APM offering Resource Monitoring (same function as delivered in OMEGAMON for APM v5.4) Resolve application slow downs / outages faster with visibility z/OS subsystem health information in APM dashboard. Consistency of data between Applications teams using APM dashboard and mainframe teams using OMEGAMON tooling Health information at the subsystem level for most z/OS subsystems collected via OMEGAMON installed on z/OS Supported with IBM Cloud APM only in V5.5 Transaction Tracking (new capability in v5.5) View of full end-to-end transactions from mobile to mainframe in a single dashboard for faster application issue isolation, identification of mainframe components in specific applications, and reduction of false-positives issues for zSMEs Allows customers to also track the performance and availability of individual transactions as they flow through the various z/OS subsystems. V5.5 support is centered around transactions entering CICS (via MQ, HTTP and SOAP) and flowing through Db2 and IMS DB. The data is captured directly and does not rely on OMEGAMON and hence it can support customers running competitive monitoring solns (BMC/CA/ASG etc). Supported with AppDynamics APM only in V5.5 For more information:

4 What’s in the Newsletter?
IBM z ITSM Newsletter Arrives in your inbox every 2 months What’s in the Newsletter? Announcements: product releases, beta programs Upcoming Events: conferences, training, webinars Resources: blogs, videos, education, Redbooks What products are covered? Operational Analytics, Automation, OMEGAMON, IMS Tools, CICS Tools, Storage Tools, z/VM Tools For more information: ibm.biz/zITSMNewsletterSubscribe Issue 1 (July) | Issue 2 (September)

5 Register and Access prior Videos at the Enhanced3270ui Wiki
OMEGAMON Enhanced 3270UI Updates Modernizing OMEGAMON Webcasts: YouTube channel changed to IBM Z, new link now IBM Z channel Playlist: Very well attended with more than 6200 views thus far Register and Access prior Videos at the Enhanced3270ui Wiki ibm.biz/enhanced3270ui

6 Possible Future Webcasts are:
Problem Solving with OMEGAMON Performance Mgt Suite: Enhanced 3270UI – All about security setup to allow sites the level needed zOS – CECs, CPU issues and management, Memory (Real and Virtual) issues. USS issues Suggest topics please: Thanks 6 I

7 Agenda How to clone an existing workspace
How to create a new workspace Customizing using basic keywords Troubleshooting How to customize thresholds

8 How to clone an existing workspace

9 How to clone an existing workspace
The resulting workspace is saved to: <hilev>.<rtename>.UKANWENU To find and verify the dataset is being used, look in the JCL of your TOM started task: // SYS=CJD530, // RHILEV=TDIMST.I5530SMP, ... //******************************************************************** //* TOM workspace definitions: //RKANWENU DD DISP=SHR, // DSN=&RHILEV..&SYS..UKANWENU // DD DISP=SHR, // DSN=&BASEHLEV.KANWENU //UKANWENU DD DISP=SHR,

10 How to clone an existing workspace
Things to consider: Keeping the same workspace name will mean you can no longer view the product provided workspace unless you change your TOM task JCL to remove your UKANWENU dataset. Changing the name means you will have extra navigation. In either case, customized workspaces will not automatically be updated with any product changes, this must be done manually.

11 How to create a new workspace
Either clone an existing workspace with a different name to use as a guideline, or create a new member within your UKANWENU dataset with at least the following keywords:

12 Customizing using basic keywords
HEADER A text string that will show up in either the workspace header or subpanel header area depending on where the keyword is located. You can use variables (&varname) which will be discussed later TYPE SUMMARY: Columns across the top, multiple rows DETAIL: One set of data, separated in two columns

13 Customizing using basic keywords
QUERY A valid SQL query SELECT statement Example: QUERY='SELECT MVSID, IMSID, RGNNAME, TYPE, CPUTIME, CPUPCT, ORIGINNODE FROM KIP.ADRSPACS WHERE &KIPPRED' The WHERE clause identifies the node to send the query. In this case, the IMS product has a variable &KIPPRED with the node already set. You can view workspace source or a query trace to identify the appropriate node.

14 Customizing using basic keywords
QUERY To find the table and attribute names for a query:

15 Customizing using basic keywords
DISPLAYCOLS List of attribute names that you wish to display on screen with any extra options in parenthesis. Example: DISPLAYCOLS= 'RGNNAME(CAPTION="Region\Name"), IMSID(CAPTION="IMS\ID"), TYPE(CAPTION="Region\Type"), CPUPCT(CAPTION="CPU\Percentage",PERCENT), CPUTIME'

16 Customizing using basic keywords
Some DISPLAYCOLS Options: WIDTH=nnnn number of characters to display WIDTH=nnn% percentage of total column width CAPTION='text' replaces the original ODI caption INDENT used to indent on detail subpanels BKMG | KMGT | NOUNIT | PERCENT converts and/or displays bytes or percent units DATETIME | DATE | TIME displays YY/MM/DD and/or HH:MM:SS for T,16 ODI data

17 Customizing using basic keywords
FILTERCOLS A list of columns that will show up in the filter (PF4) menu SORTCOLS A list of columns you want to be able to sort KEYCOLS A list of columns to populate as variables for use on any actions or in subsequent workspaces.

18 Customizing using basic keywords
ACTION=(x,“action text”,workspace[,DEFAULT]) Used on summary type workspaces x = action character workspace = the workspace name to navigate DEFAULT will be the action taken if you press enter on a row. Can only be one per workspace.

19 Customizing Thresholds
Edit the appropriate threshold file in <hilev>.<rtename>.RKANPAR Threshold files have a product ID prefix followed by the characters THRSH as a suffix Example: KIPTHRSH

20 Customizing Thresholds

21 DEMO

22 Troubleshooting

23 Troubleshooting The trace results are located in the SYSPRINT log in the TOM started task.


Download ppt "OMEGAMON Enhanced 3270UI Webcast Building Workspaces 101"

Similar presentations


Ads by Google