Monday, May 23, 2011
ITM Dynamic Thresholds - NYTUG presentation 5/24/2011
This is a link to the NYTUG presentation that I'm giving on May 24. It deals with Dynamic (Adaptive) Thresholds in ITM and the recent addition of Centralized Configuration.
Tuesday, May 3, 2011
The 10 commandments of good source control management
In IT, we all have to write some amount of code for something (OMNIbus rules, custom scripts, custom web pages, etc.), and that code should almost always go into a revision control system. I say almost always because sometimes you just have to write a quick awk one-liner that you'll never use again. But for anything that's in production, you should have it versioned. This link describes the 10 necessary rules for using source control management:
http://www.troyhunt.com/2011/05/10-commandments-of-good-source-control.html
(There are just a few R-rated words, but nothing egregious.)
http://www.troyhunt.com/2011/05/10-commandments-of-good-source-control.html
(There are just a few R-rated words, but nothing egregious.)
Friday, April 29, 2011
Wednesday, April 27, 2011
Friday, April 22, 2011
Interesting information on Tivoli's Cloud initiatives
https://www.ibm.com/developerworks/mydeveloperworks/blogs/9e696bfa-94af-4f5a-ab50-c955cca76fd0/entry/csp_technical_integration_note_managing_the_core_system9?lang=en
If you're new to Tivoli's Cloud movement, I think the best way to get use out of this paper is to just read about the products that are involved in the total solution. If your company is moving toward the cloud, knowledge of those components will definitely help you.
If you're new to Tivoli's Cloud movement, I think the best way to get use out of this paper is to just read about the products that are involved in the total solution. If your company is moving toward the cloud, knowledge of those components will definitely help you.
Tuesday, March 29, 2011
Passing TCR UserID in BIRT Reports
Many times, you might want to display/determine the TCR user name that is invoking the reports. While there is no GUI way of doing this within BIRT, a simple Javascript is all you need. Here is how to do it in BIRT
- Select a blank area in the report. This should display report properties in the Property Editior.
- Now click on the "Script" tab for the report displayed at the bottom of the main work area. (where Preview/Layout tabs are).
- In the script drop down, select "Before Factory" and paste the javascript code below.
TCR_IUSER = "com.ibm.tivoli.reporting.api.reportEngine.IUserInfo";
userInfo = reportContext.getAppContext().get(TCR_IUSER);
userName = "unknown";
if (userInfo != null) {
userName = userInfo.getUserPrincipal();
} - Now you can use the userName javascript variable in your reports to identify/display the TCR User.
- For example, to display the UserName, insert a "Dynamic Text" item anywhere in your report and enter the following value. "User name = " + userName
Thursday, March 17, 2011
IBM Service Management YouTube channel
This is great - a channel containing lots of fairly technical videos of Tivoli products and integrations:
http://www.youtube.com/user/ismconnect?feature=mhum#p/c/5C4BC71AD2C77801
http://www.youtube.com/user/ismconnect?feature=mhum#p/c/5C4BC71AD2C77801
Subscribe to:
Posts (Atom)