Friday, March 31, 2017
DevOps: The functions that must be standardized among different applications
Monday, March 20, 2017
Come by booth 568 at #IBMInterConnect to demystify DevOps from an Operations perspective
There is a LOT of chatter about DevOps, but all of it seems to leave Operations almost completely out of the picture. Come to our booth to get our take on DevOps including:
- DevOps tries to encourage Development to do *some* amount of automation and monitoring.
- Your Operations department needs to provide Dev teams with policies for integrating their apps into your monitoring and event management system.
- Your Operations department needs to learn a little about software development so you can help educate your Enterprise on exactly how DevOps can fit into your environment.
- Your Operations department needs to learn enough about Agile (specifically Scrum and Kanban) to participate in relevant conversations when the topics arise.
- and more.
Saturday, March 18, 2017
We're heading to #IBMInterConnect in Vegas
Thursday, February 23, 2017
Visit us at booth 568 at IBM InterConnect March 19-23 in Las Vegas
Stop by booth S568 in the Hybrid Cloud area to talk to us about:
- Our recent and historical successes helping customers like you deploy IBM products.
- IBM's comprehensive suite of ITSM tools, including Netcool, IBM Control Desk, IBM Performance Management, and TADDM.
- How you can effectively use an Agile methodology in your journey to realizing DevOps.
- Different strategies for effective deployments.
- Effectively consolidating and integrating your existing toolsets to your best advantage.
and many more topics!
Thursday, February 9, 2017
How to start a Netcool OMNIbus implementation
https://www.ibm.com/mysupport/s/question/0D50z00006LMPab/how-to-start-implementation-of-tivoli-omnibus?language=en_US
With such an open-ended question, I'm going to provide links that start at the very beginning - Event Management. IBM has a great Redbook on this topic. It's from 2004, but the foundational information is still completely valid:
http://www.redbooks.ibm.com/redbooks/pdfs/sg246094.pdf
It's a REALLY good reference, particularly chapters 1 and 2. Once you understand Event Management concepts, reasons, challenges, needs and personas, I think you then need to move on to information about the OMNIbus components, architecture and capabilities, which you can find in the product documentation here:
Then keep on reading through the rest of the product documentation so you understand how OMNIbus is basically configured.
The next topic you'll want to look at is probes. which will process data and send events to OMNIbus, and this information is also in the product documentation:
Next you'll probably want to dive into ObjectServer SQL to find out how to manage the events that probes generate:
You should probably also look at the links listed here:
https://www.ibm.com/developerworks/community/wikis/home?lang=en
Somewhere in here, you'll also need to determine if you're going to use Netcool Impact (most new customers purchase both products in some combination). And if so, you start poking around the Impact Wiki:
https://www.ibm.com/developerworks/community/wikis/home?lang=en
Automated testing for IBM Control Desk
https://www.ibm.com/developerworks/community/forums/html/topic?id=4d90a532-31a3-41bd-a128-2186fdae50b8
More information about Selenium itself can be found here:
http://www.seleniumhq.org/
IBM uses Selenium in several tools, including IBM Performance Manager and IBM Application Performance Manager. Essentially, it's used for recording and playing back web browser interactions.
Thursday, January 5, 2017
Maximo: How to view data from an arbitrary table
Mainly, follow the thorough instructions found here:
http://maximobase.blogspot.com/2013/05/how-to-create-custom-dialog-box-in.html
The parts of interest are:
In the dialog element, specify the appropriate mboname:
<dialog id="Testing" mboname="WARRANTYVIEW" label="Contract financial info" >
In this example, the MBO is "WARRANTYVIEW".
Also, you need to specify your MBO's attributes in with the "dataatribute" attribute of each appropriate control:
<textbox id="finaninfo_grid_s1_1"dataattribute="totalcost" />
In this case, "totalcost" is the name of the attribute that will be displayed. Yours will be different.
And that's it for my usecase. The MBO used by the dialog doesn't have to have any relationship to the main MBO attached to the application.