Cloud computing represents a disruptive shift in information technology, but for the prospective cloud customer, many of the core requirements are delivered from ground level. Quality of physical infrastructure is still a key consideration for enterprise IT organizations evaluating such a move.
In his session at the 8th International Cloud Expo, Ben Stewart, Senior Vice President, Facilities Engineering at Terremark, will discuss how enterprise-class infrastructure-as-a-service may be thought ...| By Andreas Grabner | Article Rating: |
|
| March 30, 2011 07:15 AM EDT | Reads: |
1,424 |
With its latest release, dynaTrace updates its Product Suite for Deep Dive, Automated Cross-Browser Web Performance Optimization with two products:
- dynaTrace AJAX Edition 3.0 is the free standalone tool that has been downloaded by 30k+ users so far supporting both Firefox (3.6, 4.0) and Internet Explorer (6, 7 & 8)
- dynaTrace Development Team Edition is the Premium Upgrade and provides extended automation, end-to-end performance and automated regression analysis for modern Web 2.0 Applications
In this first part of the series I focus on the capabilities that support web developers and testers on their local workstation when analyzing performance or problems in Internet Explorer and Firefox. A second part will cover the benefits of the Premium Upgrade for Agile Development Teams when automating performance and regression analysis.
dynaTrace AJAX Edition 3.0 – Capabilities that can save your day
As a Web Developer and Tester of Web Applications it is challenging to keep up with verifying that the latest changes to your web site work well and don’t impact web page performance across different browsers. dynaTrace AJAX Edition 3.0 comes with the features and capabilities you need to make your day-to-day activity much easier
Improve Page Load Times
As we’ve come to understand the actual impact of Page Load Time on end user behavior (confirmed by studies from Microsoft, Yahoo, Google and Shopzilla), accelerating Page Load Time has become a top goal for every web site. Following Best Practices from Yahoo, Google and dynaTrace on how to reduce network roundtrips, optimize browser caching and speed up JavaScript execution can significantly improve Page Load Time. dynaTrace AJAX Edition provides a Performance Report that analyzes every visited page based on these known Best Practices. This Performance Report provides different sections and gives recommendations on how to improve page load time.
Particularly in Web 2.0 Applications that leverage JavaScript and DOM Manipulations, it is common for JavaScript Execution to significantly contribute to actual Page Load Time. The dynaTrace Performance Report lists problematic JavaScript handlers and functions that have a significant performance impact on the Page Load Time. Optimizing client side code can improve Page Load Times significantly. The following screenshot shows that the Yahoo News Home Page uses a very inefficient method to lookup DOM elements by class name. The Call Trace and the Source Code view on the right show who makes these inefficient calls, making it easy to start optimizing the code:
The other tabs in the Performance Report focus on optimizing Browser Caching, reducing Network Roundtrips and optimizing Server-Side request times. Following the guidelines in every tab of the report enable you to focus on the things that will really accelerate your page load times.
Identify Cross-Browser Issues
Firefox is the browser of choice for most web developers. The lack of tooling support for earlier versions of Internet Explorer caused many developers and also testers to do their work exclusively on Firefox. This resulted in web sites that worked well in Firefox but had issues on other browsers – especially Internet Explorer. dynaTrace AJAX Edition solves this problem by providing a single tool that captures the same in-depth browser diagnostics data on Internet Explorer 6, 7 & 8 and Firefox 3.6 and 4 (Support for Internet Explorer 9 will follow soon). Having one tool that provides insight into JavaScript execution, DOM manipulations, Rendering activities and Network behavior on these browsers makes it easy to identify cross-browser problems and enables developers to optimize their code.
The following screenshot shows the performance report of the same pages for both Firefox and Internet Explorer. The high-level analysis shows the difference in load times, as well as certain characteristics such as number of network requests, redirects or cached vs. un-cached resources.
Yahoo News seems to be optimized for Internet Explorer with additional roundtrips, redirects and uncached resources causing problems in Firefox
Not only can we compare high-level performance metrics like those shown in the screenshot above. We can also compare the actual Network Requests, Caching Behavior and JavaScript execution on each browser and browser version. This helps us discover whether certain settings – such as Cache-Control – have not been set for a certain browser or if the included JavaScript libraries work correctly across browsers.
Optimize Page Rendering
Optimizing Page Load Time is only one aspect of accelerating web site performance. The most important key performance indicator is the First Impression Time. That is the time it takes from when a user enters a URL or clicks on a link until that user actually sees a visual response on the screen. In order to optimize Page Rendering you need information on when Rendering actually happens. dynaTrace provides this information for both Internet Explorer and Firefox. The Timeline View has a Rendering Column that shows when the browser executed certain Rendering tasks. The following screenshot actually shows us that the Yahoo News Page actually uses progressive rendering. This means that the HTML Content is flushed out early on, allowing the browser to already parse and display some of the HTML before the complete HTML document was downloaded:
Rendering happens while the initial HTML Document gets downloaded. Rendering also happens when additional resources such as images and css files get downloaded
Optimizing the First Impression Time (time of first Drawing event) and also optimizing Rendering activity on the page in general are now possible across browsers by using dynaTrace AJAX Edition.
JavaScript/DOM Tracing
The key capability of dynaTrace is not only to identify long running JavaScript handlers. dynaTrace traces all JavaScript executions including calls to the DOM (Document Object Model) as well as calls to XHR (XmlHttpRequest).
This deep tracing provides several benefits:
- Unlike a profiler, dynaTrace actually sees the individual method calls with method arguments and return values. Outliers can therefore be identified and are not hidden in average values
- Unlike a debugger, dynaTrace is low overhead and thus doesn’t impact execution time of the JavaScript significantly. This allows us to analyze the exact execution behavior of timers and intervals
- Unlike other tools, dynaTrace actually traces calls into the DOM. The DOM is the most performance-critical component in the browser. Read and Write access can be very expensive and should be optimized.
When analyzing JavaScript/DOM Traces we use the dynaTrace PurePath view. We can open this view through the Context Menu on a slow JavaScript method listed in the Performance Report. Another option is to double click on a JavaScript execution block shown in the Timeline. The following screenshot shows a JavaScript trace of the slow running getElementsByClassName functions that are called on the Yahoo News Page. This method iterates through all DOM Elements. In order to do that it queries all elements using getElementsByTagName.
In addition to looking at Traces of individual JavaScript handlers, dynaTrace also provides the Hotspot view. The Hotspot view analyzes all JavaScript, DOM and Rendering activity on a given page and shows which methods have the highest execution time contribution and which methods are called most frequently. As the underlying data of this presented information are the Deep-Dive Traces, we can pick a method that we want to analyze further, for example, who calls a method with particular parameters or who calls a method too often:
In the Hotspot View we see which JavaScript, DOM or Rendering activity contributes how much to the overall page load time. Back Traces help to identify the caller
Deep tracing that includes JavaScript, DOM and method arguments comes with low overhead. The overhead of the actual JavaScript instrumentation is shown in the PurePath view for every loaded JavaScript file. The overhead when collecting the actual method execution depends on the number of JavaScript and DOM calls. The depth of tracing is configurable through the preferences and gives you full control on how much data to collect. Caution: In Firefox, tracing DOM calls comes with a larger performance penalty than in Internet Explorer as it requires disabling DOM Quick Stubs.
Automate Web Performance Optimization
We have already blogged about how to use dynaTrace AJAX Edition in a Continuous Integration environment by integrating it with your Selenium, Watir, Silk, QTP or WebDriver scripts. The idea is that whenever you have a functional test that actively drives a browser instance you can add dynaTrace AJAX into the mix and let dynaTrace record the browser activity driven by the test tool.
The great news with dynaTrace AJAX Edition 3 is that this can now be leveraged for both Internet Explorer and Firefox enabling you to automate performance analysis across browsers without having to modify your tests scripts. If you are interested in automation please check out the following posts:
- dynaTrace in Continuous Integration – The Big Picture
- How to use Selenium Tests for automated JavaScript/AJAX Performance Analysis
- 5 Steps to setup ShowSlow as Web Performance Repository for dynaTrace
- dynaTrace Continuously Monitors ShowSlow URLs
Compare with Your Competition
Following Best Practices on Web Performance Optimization as defined by Yahoo, Google and dynaTrace is a good thing, but doesn’t guarantee that you are ahead of your competition when it comes to web site performance. Best Practices are also not always applicable for all web sites. News Sites for instance have more images on a page that have a short expiration. Therefore it is OK that caching is used differently than on eCommerce sites where product images don’t change as frequently as the latest World News. Therefore dynaTrace not only allows you to compare your results against Best Practices but also against live websites. When you launch dynaTrace you will be prompted for your dynaTrace Community Account in order to download Live Performance Data
When opening the Performance Report you now have the option to compare your captured performance data with data from the Top Alexa websites. There are more categories to come over the next few months such as eCommerce, News, … The following screenshot shows the Performance Report comparing the results of Yahoo News to those of the Alexa 1000.
Compare your own results in the different performance categories with performance data captured daily from real websites
Comparing your performance metrics with real-life data gives you additional input on the areas on which you want to focus your optimization efforts. If your competition spends less time in Client Side JavaScript you may want to focus on optimizing your own JavaScript code. If you see that you are already doing a good job comparatively in leveraging the browser cache – even though you just scored Rank C – it is better to focus on other areas first.
Want to know more about dynaTrace AJAX Edition?
Start by downloading the free dynaTrace AJAX Edition and optimize your web pages by following the results of the Performance Report. Make yourself familiar with the deep diagnostics capabilities of dynaTrace AJAX by checking out the Top Client Side Performance Problems that have been solved with this tool.
And if you’re organization needs enterprise-class extended automation, end-to-end performance and automated regression analysis for modern Web 2.0 Applications, then you should read part two outlining the Premium Extensions to dynaTrace AJAX that provide what you need.
Related reading:
- Premium AJAX Edition 3 Extensions – Next Generation Web Performance Optimization– PART II // If you are serious about Web Development then I...
- Update dynaTrace AJAX Edition to get Rendering Times on ALL versions of Internet Explorer Analyzing Rendering Activity is one of the many features of...
- Elevating Web- and Load-Testing with MicroFocus SilkPerformer Diagnostics powered by dynaTrace MicroFocus and dynaTrace recently announced “SilkPerformer Assurance” and with that...
- dynaTrace Firefox Closed Beta Program started We had quite a number of people showing interest in...
- Sneak Peak on Firefox support with dynaTrace We have received lots of great feedback on our deep...
Published March 30, 2011 Reads 1,424
Copyright © 2011 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Andreas Grabner
Andreas has over a decade of experience as an architect and developer, and currently works as a senior performance architect and technology strategist for dynaTrace Software, where he influences product strategy and works closely with customers in implementing performance management solutions across the application life cycle. He is a regular speaker at software conferences, writes for a number of technology publications, and blogs at http://blog.dynatrace.com
- Cloud9 IDE Launches PaaS for JavaScript and HTML5
- Behind the Scenes of Serialization in Java
- Development-as-a-Service Platform Cloud9 IDE
- Twitter Down, Arab Revolution on Hold
- Be Standard, Be Free: Use JSR-303 for Validation
- Two-Year-Old Sofia, an Abducted US Citizen, Facing Life-Long Disability in Syria
- Early Bird Registration Savings for Cloud Expo New York to Expire Friday
- My Abducted Two-Year-Old American Guest Worker Daughter in Syria
- dynaTrace AJAX Edition 3.0 Released
- Premium AJAX Edition 3 Extensions
- Real-Life AJAX Troubleshooting Guide
- A Bedtime Story for Sofia Who Remains Abducted in Syria
- Cloud Expo, Inc. Announces Cloud Expo 2011 New York Venue
- Okta Seeks to Accelerate Secure Adoption of Cloud Apps
- Facebook, Google, and the Near-Term Future of the USA
- Cloud9 IDE Launches PaaS for JavaScript and HTML5
- Behind the Scenes of Serialization in Java
- Why Go with RichFaces
- What Makes Agile Agile?
- Development-as-a-Service Platform Cloud9 IDE
- Twitter Down, Arab Revolution on Hold
- International radio solutions supplier chooses Flax open source intranet search
- Netbiscuits Extends Development Framework with HTML5+
- Oracle Pays $46m to Settle Kickback Claims
- Building a Drag-and-Drop Shopping Cart with AJAX
- What Is AJAX?
- Google Maps! AJAX-Style Web Development Using ASP.NET
- Flashback to January 2006: Exclusive SYS-CON.TV Interviews on "OpenAjax Alliance" Announcement
- How and Why AJAX, Not Java, Became the Favored Technology for Rich Internet Applications
- AJAXWorld Conference & Expo to Take Place October 2-4, 2006, at the Santa Clara Convention Center, California
- AJAX Sponsor Webcasts Are Now Available at AJAXWorld Website
- "Real-World AJAX" One-Day Seminar Arrives in Silicon Valley
- AJAXWorld University Announces AJAX Developer Bootcamp
- Where Are RIA Technologies Headed in 2008?
- AJAX Support In JadeLiquid WebRenderer v3.1
- Struts Validations Framework Using AJAX
Cloud computing represents a disruptive shift in information technology, but for the prospective cloud customer, many of the core requirements are delivered from ground level. Quality of physical infrastructure is still a key consideration for enterprise IT organizations evaluating such a move.
In his session at the 8th International Cloud Expo, Ben Stewart, Senior Vice President, Facilities Engineering at Terremark, will discuss how enterprise-class infrastructure-as-a-service may be thought ...Apr. 22, 2011 10:00 AM EDT Reads: 633 |
By Elizabeth White The demand for IT infrastructure and services from your consumers is ever-growing and expanding. Today consumers of IT infrastructure want the ability to serve themselves, allowing them to bypass intermediaries or waiting days or weeks for a response. These changing dynamics create a necessity for IT to think about the economics of IT service delivery.
In his session at the 8th International Cloud Expo, Thomas Bryant, Director of Advanced Technology & Products at Quest Software, will outline t...Apr. 21, 2011 04:45 PM EDT Reads: 1,328 |
By Salvatore Genovese As more and more services and applications go to the cloud, it becomes imperative that organizations gain a greater visibility into what those IT assets are doing. This imperative is being driven by a raft of new regulations and industry mandates, whose enforcement is continually being stepped up.
In his session at the 8th International Cloud Expo, Bill Roth, CMO of LogLogic, will discuss how the cloud can be made more safe and secure, and discuss some of the new technologies coming online to ...Apr. 21, 2011 04:30 PM EDT Reads: 1,385 |
By Salvatore Genovese Financial services tend to be the early adopters of most technology and have forward-thinking developers on staff. However, only 30% of financial services data centers have been virtualized. Meanwhile, those prolific developers are either already using public cloud resources or are trying to.
In his General Session at the 8th International Cloud Expo, Pete Malcolm, CEO of Abiquo, will discuss the question: What will be the business impact of avoiding the cloud conversation?Apr. 21, 2011 04:15 PM EDT Reads: 1,296 |
By Elizabeth White Which tools and techniques will help you deploy and manage your own enterprise-ready on-premise IaaS cloud?
In his session at the 8th International Cloud Expo, Paul Weiss, Senior Sales Engineer at Eucalyptus Systems, will start by defining the features and deployment models that define an on-premise or private cloud, followed by an overview of the main components and architectures of a private cloud. In addition, he will provide a look at an enterprise-grade IaaS cloud, then conclude with an o...Apr. 21, 2011 04:00 PM EDT Reads: 1,218 |
By Roger Strukhoff “It would be interesting to see how much of this increase is due to marketing rationalization of existing products (eg, 'let's think of this as cloud') versus true re-engineering using cloud-based approaches for a true cloud experience.”
Thus writes Alan Perkins, CIO of Altium Ltd. (an Australlian electronics design tools developer), in the comments section of the Sand Hill Group's website, in response to a new Cloud Computing report from the Silicon Valley VC firm.
The old wine in new bot...Apr. 19, 2011 04:06 PM EDT Reads: 529 |












The demand for IT infrastructure and services from your consumers is ever-growing and expanding. Today consumers of IT infrastructure want the ability to serve themselves, allowing them to bypass intermediaries or waiting days or weeks for a response. These changing dynamics create a necessity for IT to think about the economics of IT service delivery.
In his session at the 8th International Cloud Expo, Thomas Bryant, Director of Advanced Technology & Products at Quest Software, will outline t...
As more and more services and applications go to the cloud, it becomes imperative that organizations gain a greater visibility into what those IT assets are doing. This imperative is being driven by a raft of new regulations and industry mandates, whose enforcement is continually being stepped up.
In his session at the 8th International Cloud Expo, Bill Roth, CMO of LogLogic, will discuss how the cloud can be made more safe and secure, and discuss some of the new technologies coming online to ...
Financial services tend to be the early adopters of most technology and have forward-thinking developers on staff. However, only 30% of financial services data centers have been virtualized. Meanwhile, those prolific developers are either already using public cloud resources or are trying to.
In his General Session at the 8th International Cloud Expo, Pete Malcolm, CEO of Abiquo, will discuss the question: What will be the business impact of avoiding the cloud conversation?
Which tools and techniques will help you deploy and manage your own enterprise-ready on-premise IaaS cloud?
In his session at the 8th International Cloud Expo, Paul Weiss, Senior Sales Engineer at Eucalyptus Systems, will start by defining the features and deployment models that define an on-premise or private cloud, followed by an overview of the main components and architectures of a private cloud. In addition, he will provide a look at an enterprise-grade IaaS cloud, then conclude with an o...
“It would be interesting to see how much of this increase is due to marketing rationalization of existing products (eg, 'let's think of this as cloud') versus true re-engineering using cloud-based approaches for a true cloud experience.”
Thus writes Alan Perkins, CIO of Altium Ltd. (an Australlian electronics design tools developer), in the comments section of the Sand Hill Group's website, in response to a new Cloud Computing report from the Silicon Valley VC firm.
The old wine in new bot...
RunMyProcess (RMP), the Cloud-based business process management startup that secured $2.2 million Series A funding last year, has added Shared inbox for Gmail to its tool kit, facilitating increased collaboration, productivity, agility, and easier management of open customer support tickets or other...
Diversify yourself across multiple availability zones, and even better, across multiple providers. You'll sleep better at night and will reduce the chance of showing up on the "is down" list.
So this morning the big news is that AWS is having issues affecting customers in US-EAST-1. So far I’ve s...
One of the key steps in my roadmap is identifying a business use case for cloud computing. I started with a quick search on the topic to see what others were offering up as use cases and came upon two well-defined documents, NIST’s Cloud Computing Use Cases and the Open Cloud Manifesto’s Cloud Compu...
After a short break to get some major dental rework done, I return to you with my new, sore mouth for a round of “Maybe we should have…” discussions.
In the nineties and early 21st century, positions were created in may organizations with titles like “chief architect” and often there was a group wh...
Over the last 18 months, the media, technologists, analysts, CIOs and CEOs have all been talking about the cloud. Now, most organizations are embarking on some form of cloud computing, but as always, technology is the relatively easy part. For those of you wanting to keep your feet firmly on the gro...
In the context of cloud computing we often mention the driving force behind many of its financial benefits is commoditization. Commoditization drives standardization which reduces costs of the product itself as well as the management systems needed to interact with them. Commoditization drives the c...

























