<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" lang="en-US" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" lang="en-US" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" lang="en-US" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!-->
<html lang="en-US" prefix="og: http://ogp.me/ns#">
<!--<![endif]-->
<head>

<!--Added Optimizely Script for Blog Testing-->
<script src="//cdn.optimizely.com/js/245938624.js"></script>

<meta charset="UTF-8" />

<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="http://blog.newrelic.com/xmlrpc.php" />

<!--<link rel="stylesheet" type="text/css" media="all" href="http://newrelic.com/stylesheets/storefront.css" />-->
<link rel="stylesheet" type="text/css" media="all" href="http://newrelic.com/stylesheets/global.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://newrelic.com/stylesheets/chat.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://newrelic.com/stylesheets/marketing.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://newrelic.com/stylesheets/ui.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://newrelic.com/stylesheets/colorbox.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://newrelic.com/stylesheets/signup-new.css" />
<style type="text/css">
.nav-selected a {color:red!important;font-weight:700;background:transparent;}
.global-form-pop {z-index:5001;}
#global-signin-drop {top:100px}
#global-signin-drop p {font-weight:normal;line-height:100%;margin:5px 0;}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script src="//colodin.s3.amazonaws.com/js/newrelic/tracker_newrelic.js" type="text/javascript"></script>
<script>
/* New Relic base.js global behaviors */
var NR_BASE = NR_BASE || {

  onReady: function(){
    /* initialize when DOM is ready */

    // header nav fixed/resized
    $(window).on('scroll resize', NR_BASE.stickyNav);

    // responsive nav
    NR_BASE.narrowNav();
    $(window).on('resize', NR_BASE.narrowNav);

    // you can monitor dropdown menu
    NR_BASE.navDrop();

  },

  stickyNav: function(){
    /* add/remove .sticky class to nav, except on mobile which hates static positioning */
    // check mobile device types and act accordingly
    var isMobile = {
      Android: function() {return navigator.userAgent.match(/Android/i);},
      BlackBerry: function() {return navigator.userAgent.match(/BlackBerry/i);},
      iOS: function() {return navigator.userAgent.match(/iPhone|iPad|iPod/i);},
      Opera: function() {return navigator.userAgent.match(/Opera Mini/i);},
      Windows: function() {return navigator.userAgent.match(/IEMobile/i);},
      any: function() {return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());}
    };
    if( !isMobile.any() ) {
      var y=$(window).scrollTop();
      if ( y>24 ) {
        //$('#nav-spacer').height( $('#nav_header').height() );
        $('#nav_header, #nav-spacer, .nav-subhead').addClass('sticky');
      } else {
        $('#nav_header, #nav-spacer, .nav-subhead').removeClass('sticky');
      }
    }
  },

  narrowNav: function(){
    // nav elements respond to browser width
    var docwidth = window.innerWidth;
    if (docwidth <= 825) {
      $('#dropper .full,.nav-subhead .full').hide();
      $('#dropper .short,.nav-subhead .short').show();
      $('#nav_header .cta-button .full').hide();
      $('#nav_header .cta-button .short').show();
      // if the nav is hidden, no need to make the logo small
      if( $('#dropper').length ){
        $('#nav_header .logo').addClass('sm');
      }
      $('#blog_link').hide();
    } else if (docwidth <= 950) {
      $('#dropper .full,.nav-subhead .short').hide();
      $('#dropper .short,.nav-subhead .full').show();
      $('#nav_header .cta-button .full').hide();
      $('#nav_header .cta-button .short').show();
      $('#nav_header .logo').removeClass('sm');
      $('#blog_link').hide();
    } else if (docwidth > 950) {
      $('#dropper .short,.nav-subhead .short').hide();
      $('#dropper .full,.nav-subhead .full').show();
      $('#nav_header .cta-button .short').hide();
      $('#nav_header .cta-button .full').show();
      $('#nav_header .logo').removeClass('sm');
      $('#blog_link').show();
    }
    $('#nav_header .sticky-back').html('<style>#nav_header.content.sticky{width:'+docwidth+'px;}</style>');
  },

  navDrop: function(){
    // the dropdown menu in the main nav
    var wrapper = $('#nav_header .site');

    $('#dropper').click(function(e){
      e.stopPropagation();
      if ($('.drop-it', wrapper).is(':visible')) {
        $('.drop-it', wrapper).fadeOut(250);
        $('.drop-pointy', wrapper).fadeOut(200);
      } else {
        $('.drop-it', wrapper).fadeIn(300);
        $('.drop-pointy', wrapper).fadeIn(250);
      }
    });

    $('.drop-it', wrapper).hover(function(){
      $('.drop-it', wrapper).animate({width:'611px'},250);
    },function(){
      $('.drop-it', wrapper).animate({width:'266px'},250);
    });

    $('a.sub', wrapper).each(function(){
      $(this).hover(function(){
        $('.drop-it-menu .meta', wrapper).css('z-index','0');
        $(this).parent().find('.meta').css('z-index','1');
      });
    });

    $('a.top', wrapper).each(function(){
      $(this).hover(function(){
        $('.drop-pointy', wrapper).css('background-color','#333')
      },function(){
          $('.drop-pointy', wrapper).css('background-color','#000')
      });
    });

    $(document).mouseup(function(A){
      if($(A.target).parent("a").length==0){
        $('.drop-it', wrapper).fadeOut(250);
        $('.drop-pointy', wrapper).fadeOut(200);
      };
    });
  }

};

$(function(){
  // all your DOM are ready
  NR_BASE.onReady();
});

</script>
<!--Google Analytics script for Storefront profile-->
<script type="text/javascript">
var _gaq = _gaq || [];
  _gaq.push(
    ['b._setAccount', 'UA-3047412-27'],
    ['b._setDomainName', '.newrelic.com'],
    ['b._trackPageview']
  );
</script>

<link rel="stylesheet" type="text/css" media="all" href="http://blog.newrelic.com/wp-content/themes/newrelic.fb/style.css" />
<link rel="Shortcut Icon" href="http://blog.newrelic.com/wp-content/themes/newrelic.fb/images/favicon.ico" type="image/x-icon" />

<script type="text/javascript">
  var _kmq = _kmq || [];
  var _kmk = _kmk || 'd33670f944e0900c5c98992ea2566fd1eede8d43';
  function _kms(u){
    setTimeout(function(){
      var d = document, f = d.getElementsByTagName('script')[0],
      s = d.createElement('script');
      s.type = 'text/javascript'; s.async = true; s.src = u;
      f.parentNode.insertBefore(s, f);
    }, 1);
  }
  _kms('//i.kissmetrics.com/i.js');
  _kms('//doug1izaerwt3.cloudfront.net/' + _kmk + '.1.js');
</script>


<!-- This site is optimized with the Yoast WordPress SEO plugin v1.4.18 - http://yoast.com/wordpress/seo/ -->
<title>New Relic blog - Application Performance Management</title>
<link rel="canonical" href="http://blog.newrelic.com/" />
<link rel="next" href="http://blog.newrelic.com/page/2/" />
<meta property="og:locale" content="en_US"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="New Relic blog - Application Performance Management"/>
<meta property="og:description" content="Pinpoint and solve performance issues in your Ruby, Java, .NET, PHP and Python apps with real user, application and server monitoring."/>
<meta property="og:url" content="http://blog.newrelic.com/"/>
<meta property="og:site_name" content="New Relic blog"/>
<meta property="og:image" content="http://newrelic.com/images/logo_NR-fb.png"/>
<!-- / Yoast WordPress SEO plugin. -->

<link rel='stylesheet' id='mr_social_sharing-css'  href='http://blog.newrelic.com/wp-content/plugins/social-sharing-toolkit/style_2.1.2.css?ver=3.6.1' type='text/css' media='all' />
<script type='text/javascript' src='http://blog.newrelic.com/wp-includes/js/jquery/jquery.js?ver=1.10.2'></script>
<script type='text/javascript' src='http://blog.newrelic.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1'></script>
<script type='text/javascript' src='http://blog.newrelic.com/wp-content/plugins/google-analyticator/external-tracking.min.js?ver=6.4.5'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://blog.newrelic.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://blog.newrelic.com/wp-includes/wlwmanifest.xml" /> 
<style type="text/css" id="syntaxhighlighteranchor"></style>
<!-- Google Analytics Tracking by Google Analyticator 6.4.5: http://www.videousermanuals.com/google-analyticator/ -->
<script type="text/javascript">
	var analyticsFileTypes = [''];
	var analyticsEventTracking = 'enabled';
</script>
<script type="text/javascript">
	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-3047412-2']);
        _gaq.push(['_addDevId', 'i9k95']); // Google Analyticator App ID with Google 
        
	_gaq.push(['_trackPageview']);

	(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		                ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		                var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	})();
</script>
<!-- wp thread comment 1.4.9.4.002 -->
</head>

<body class="blog-page">

<!-- NEW NAV -->
<nav class="content overflowing" id="nav_header">
  <div class="sticky-back"></div>
  <section>
    <article>
      <span class="logo">
        <a href="/"><img alt="New Relic" src="//newrelic.com/assets/newrelic/logo_46.png" /></a>
      </span>
      <ul class="site">
        <li>
          <a href="javascript:;" class="main" id="dropper">
            <span>You Can Monitor&nbsp;&nbsp;<img alt="You can monitor..." src="//newrelic.com/assets/shared/header/dropper.png" style="vertical-align: middle"/></span>
          </a>
          <div class="drop-it abs">
            <span class="drop-it-menu rel">
              <ul class="popper">
                <li>
                  <span class="icon"><span class="icon_in" id="web-apps"></span></span>
                  <a href="//newrelic.com/application-monitoring" class="sub top">Web Apps</a>
                  <span class="meta abs">
                    <a href="//newrelic.com/application-monitoring" class="desc top">
                      <span class="nav_slide_title">One Tool, Many Languages</span>
                      <span class="nav_slide_copy">
                        Stop guessing. Identify bottlenecks before they become critical.
                      </span>
                      <span class="nav_slide_list">
                        &bull; Real user monitoring
                      </span>
                      <span class="nav_slide_list">
                        &bull; Application monitoring
                      </span>
                      <span class="nav_slide_list">
                        &bull; SQL Queries and more
                      </span>
                      <span class="nav_slide_icons" id="icons_web">
                        <img alt="We support these languages." src="//newrelic.com/assets/shared/header/icons_web.png" />
                      </span>
                    </a>
                  </span>
                </li>
                <li>
                  <span class="icon"><span class="icon_in" id="mobile-apps"></span></span>
                  <a href="//newrelic.com/mobile-monitoring" class="sub">Mobile Apps</a>
                  <span class="meta abs">
                    <a href="//newrelic.com/mobile-monitoring" class="desc">
                      <span class="nav_slide_title">Finally. Mobile Visibility.</span>
                      <span class="nav_slide_copy">
                        See exactly how your native apps perform in the wild.
                      </span>
                      <span class="nav_slide_list_head"><strong>
                        Get performance by:
                      </strong></span>
                      <span class="nav_slide_list float">
                        &bull; Geography
                      </span>
                      <span class="nav_slide_list float">
                        &bull; Versions
                      </span>
                      <span class="nav_slide_list float">
                        &bull; Carriers
                      </span>
                      <span class="nav_slide_list float">
                        &bull; HTTP Requests
                      </span>
                      <span class="nav_slide_list float">
                        &bull; Devices
                      </span>
                      <div class="cf"></div>
                      <span class="nav_slide_icons">
                        <img alt="We support these OSs." src="//newrelic.com/assets/shared/header/icons_mobile.png" />
                      </span>
                    </a>
                  </span>
                </li>
                <li>
                  <span class="icon"><span class="icon_in" id="servers"></span></span>
                  <a href="//newrelic.com/server-monitoring" class="sub">Servers</a>
                  <span class="meta abs">
                    <a href="//newrelic.com/server-monitoring" class="desc">
                      <span class="nav_slide_title">From Glass to Frame.</span>
                      <span class="nav_slide_copy">
                        Don&#8217;t forget about server performance in managing your apps.
                      </span>
                      <span class="nav_slide_list_head"><strong>
                        Keep an eye on:
                      </strong></span>
                      <span class="nav_slide_list float">
                        &bull; Server CPU
                      </span>
                      <span class="nav_slide_list float">
                        &bull; Network Activity
                      </span>
                      <span class="nav_slide_list float">
                        &bull; Physical Memory
                      </span>
                      <span class="nav_slide_list float">
                        &bull; Storage Utilization
                      </span>
                      <div class="cf"></div>
                      <span class="nav_slide_icons">
                        <img alt="We support these OSs." src="//newrelic.com/assets/shared/header/icons_server.png" />
                      </span>
                    </a>
                  </span>
                </li>
                <!--
                <li>
                  <span class="icon"><span class="icon_in" id="networks"></span></span>
                  <a href="#" class="sub">Networks & databases</a>
                  <span class="meta abs">
                    <a href="#">
                      About Networks
                    </a>
                  </span>
                </li>
                -->
                <li>
                  <span class="icon"><span class="icon_in" id="everything"></span></span>
                  <a href="//newrelic.com/monitor-everything" class="sub">Show me everything</a>
                  <span class="meta abs">
                    <a href="//newrelic.com/monitor-everything" class="desc">
                      <span class="nav_slide_title">Languages, Frameworks, Mobile OSs, Oh My!</span>
                      <span class="nav_slide_copy">
                        From servers to source code, we&#8217;ve got the whole developer&#8217;s kitchen sink (minus the dirty cereal bowls).
                      </span>
                      <span class="nav_slide_list">
                        &bull; We&#8217;re fluent in 5 languages and counting
                      </span>
                      <span class="nav_slide_list">
                        &bull; Lots of fully-integrated frameworks
                      </span>
                      <span class="nav_slide_list">
                        &bull; From iOS to Android, we&#8217;re deeply mobile
                      </span>
                    </a>
                  </span>
                </li>
              </ul>
            </span>
          </div>
          <div class="drop-pointy abs"></div>
        </li>
        <li>
          <a href="//newrelic.com/pricing" class="main">Pricing</a>
        </li>
        <li>
          <a href="//newrelic.com/about" class="main">About</a>
        </li>
        <li>
          <a href="//newrelic.com/enterprise" class="main">Enterprise</a>
        </li>
      </ul>
      <span class="start">
        <a href="//newrelic.com/signup" class="cta-button open-sesame" cta-type="Header Offer">
          <span class="full">Create Free Account</span>
          <span class="short">Open Account</span>
        </a>
      </span>
      <span class="blog rel">
        <span id="blog_link"><a href="/"><span style="color:#ef4019;cursor:default;">Blog</span></a>&nbsp;&nbsp;|&nbsp;</span>
        <a href="https://rpm.newrelic.com" id="head-signin">Sign In</a>
      </span>
    </article>
  </section>
</nav>
<div id="nav-spacer" class="content">
  <section></section>
</div>
<!-- /NEW NAV -->

  <div class="full-width zero-height" style="height:30px;"></div>


		<div class="blog-wrap">
			<div class="slim container">
				<div class="main">
					<h1>
									                
										</h1>
				</div>
				<div class="row">
					<div class="four columns">
						<div class="sidebar">
	<ul class="category-nav">
		<li class="category-1 ">
			<a href="/category/performance-tech-tips">
				<span class="icon-chart">
					<span class="category-title">Performance Tech Tips</span>
					<span class="post-count">241 Posts »</span>
				</span>
			</a>
		</li>
		<li class="category-2 ">
			<a href="/category/product-updates">
				<span class="icon-cycle">
					<span class="category-title">Product Updates</span>
					<span class="post-count">137 Posts »</span>
				</span>
			</a>
		</li>
		<li class="category-3 ">
			<a href="/category/company-news">
				<span class="icon-info">
					<span class="category-title">Company News</span>
					<span class="post-count">720 Posts 

»</span>
				</span>
			</a>
		</li>
                <li>
			<span style="display:inline"><a href="http://newrelic.com/about/jobs" style="color:#ef4019!important"><strong style="font-size:18px;">New Relic is hiring!</strong><br>Check out our open positions.</a></span>
		</li>
<!--
                <li>
                        <a href="http://newrelic.com/kingmakers" style="padding:0 0 12px 0;color:#454545;">
                            <img src="http://blog.newrelic.com/wp-content/uploads/KingmakersCover.jpg" width="160" alt="The New Kingmakers" border="0" style="display:block;margin-left:30px;box-shadow:2px 2px 8px rgba(0,0,0,0.5);-webkit-transform: rotate(-3deg);-moz-transform: rotate(-3deg);-o-transform: rotate(-3deg);-ms-transform: rotate(-3deg);transform: rotate(-3deg);"/><br/>
                            <span style="display:inline;color:#900">Sign up for New Relic today</span> <span style="display:inline;color:#454545!important">and get a free copy of <strong>The New Kingmakers: How Developers Conquered the World</strong></span>
			</a>
		</li>
-->
	</ul>
	
<div id="text-8" class="widget widget_text">			<div class="textwidget"><div class="sidebar-promo shadow">
  <span class="icon-magnify"></span>
  <p class="x-large"><strong><a href="http://newrelic.com/signup">Start Seeing Inside Your App Today!</a></strong></p>
  <p class="large">
    14 Day Free Trial.
    <br />No Credit Card Required.
  </p>
<form accept-charset="UTF-8" action="http://newrelic.com/new_account" id="blog-signup-form" method="post">
  <input name="utf8" type="hidden" value="&#x2713;" />
  <input id="form_key" name="form_key" type="hidden" value="default" />
  Email:
  <input type="text" name="email" id="email" class="small input-text"><br/>
  Password:
  <input type="password" name="password" id="password" class="small input-text"><br/>
  <input type="hidden" name="full_name" value="New Customer">
  <input type="hidden" name="phone_number" value="n/a">
  <input type="hidden" name="name" value="New Customer">

  <button id="" class="cta-button" type="submit">&nbsp; Create Free Account &nbsp;</button>
</form>
</div></div>
		</div><div id="text-9" class="widget widget_text"><h5 class="widget-title">Subscribe</h5>			<div class="textwidget"><p><a href="/feed" class="icon-rss">RSS</a></p> 
<p><a href="http://twitter.com/newrelic" class="icon-twitter">Twitter</a></p></div>
		</div></div>					</div>
					<div class="twelve columns">
						<div class="header">
							<form role="search" method="get" id="searchform" action="http://blog.newrelic.com/" >
	<label class="screen-reader-text hide" for="s">Search for:</label>
	<input type="text" value="" name="s" id="s" placeholder="Search&hellip;" />
	<input type="submit" id="searchsubmit" value="Search" class="hide" />
</form>						</div>
							<h5>Top Post</h5>
	<div class="box post clearfix">
					<div class="top-post-content">
			<h2 class="post-title"><a href="http://blog.newrelic.com/2013/10/04/futurestack-scholarship-spotlight-anne-thessen-pyladies-boston-selby-walker-hack-reactor/">FutureStack Scholarship Spotlight: Anne Thessen (PyLadies Boston) and Selby Walker (Hack Reactor)</a></h2>
			<p class="post-meta">By: <a href="http://blog.newrelic.com/author/morgan-flatley/">Morgan Flatley</a> | Posted in: <a href="http://blog.newrelic.com/category/company-news/" title="View all posts in Company News" rel="category tag">Company News</a>, <a href="http://blog.newrelic.com/category/futurestack/" title="View all posts in FutureStack" rel="category tag">FutureStack</a>, <a href="http://blog.newrelic.com/category/top-post/" title="View all posts in Top Post" rel="category tag">Top Post</a>, Oct. 4th, 2013</p>			<p>It’s official – FutureStack is less than a month away! As we gear up for all the amazingness that is about to occur at the conference, we wanted to take the time to get to know our 10 FutureStack scholarship recipients and get a glimpse of how they envision the future of modern software. Today [&hellip;]</p>
			<p><a href="http://blog.newrelic.com/2013/10/04/futurestack-scholarship-spotlight-anne-thessen-pyladies-boston-selby-walker-hack-reactor/" class="continue">Continue reading</a> &rsaquo;</p>
			<p>
				<div class="mr_social_sharing_wrapper">
				<!-- Social Sharing Toolkit v2.1.4 --></div> </p>
		</div>
		
	</div>
	<h5>Recent Posts</h5>
	<div class="box recent-post clearfix">
			<div class="recent-post-0">
						<h2 class="post-title"><a href="http://blog.newrelic.com/2013/10/03/network-worlds-2013-application-performance-management-challenge/">Network World’s 2013 Application Performance Management Challenge</a></h2>
			<p class="post-meta">By: <a href="http://blog.newrelic.com/author/mary-rowell/">Mary Rowell</a> | Posted in: <a href="http://blog.newrelic.com/category/company-news/" title="View all posts in Company News" rel="category tag">Company News</a>, <a href="http://blog.newrelic.com/category/performance-tech-tips/" title="View all posts in Performance Tech Tips" rel="category tag">Performance Tech Tips</a>, Oct. 3rd, 2013</p>			<p>Check out Network World’s 2013 Application Performance Management Challenge (APM Challenge) featuring Patrick Lightbody, New Relic’s Director of Product Management. Patrick discusses application monitoring challenges &#8211; including lowering costs- and the necessary technology that is needed to enable the most positive web experience in today’s new era of APM. Patrick advises customers to pick solutions that [&hellip;]</p>
			<p><a href="http://blog.newrelic.com/2013/10/03/network-worlds-2013-application-performance-management-challenge/" class="continue">Continue reading</a> &rsaquo;</p>
			<p>
				<div class="mr_social_sharing_wrapper">
				<!-- Social Sharing Toolkit v2.1.4 --></div> </p>
		</div>
			<div class="recent-post-1">
						<h2 class="post-title"><a href="http://blog.newrelic.com/2013/10/02/futurestack-speaker-spotlight-roland-tritsch-heroku-patrick-lightbody-new-relic-nic-benders-new-relic/">FutureStack Speaker Spotlight: Roland Tritsch (Gilt Groupe), Patrick Lightbody (New Relic) and Nic Benders (New Relic)</a></h2>
			<p class="post-meta">By: <a href="http://blog.newrelic.com/author/jana-boruta/">Jana Boruta</a> | Posted in: <a href="http://blog.newrelic.com/category/company-news/" title="View all posts in Company News" rel="category tag">Company News</a>, <a href="http://blog.newrelic.com/category/futurestack/" title="View all posts in FutureStack" rel="category tag">FutureStack</a>, Oct. 2nd, 2013</p>			<p>Can you believe that FutureStack is less than a month away? We sure can’t! This week we chatted with three fantastic FutureStack speakers: Roland Tritsch from Gilt Groupe, Patrick Lightbody from New Relic and Nic Benders, also from New Relic. Roland Tritsch, Gilt Groupe Roland is the VP of Infrastructure Engineering at the Gilt Groupe and [&hellip;]</p>
			<p><a href="http://blog.newrelic.com/2013/10/02/futurestack-speaker-spotlight-roland-tritsch-heroku-patrick-lightbody-new-relic-nic-benders-new-relic/" class="continue">Continue reading</a> &rsaquo;</p>
			<p>
				<div class="mr_social_sharing_wrapper">
				<!-- Social Sharing Toolkit v2.1.4 --></div> </p>
		</div>
		
	</div>
	<h5 class="por" style="margin:20px 0 15px 0">
		Featured Posts
		<a class="right-link" href="/category/top-post">View More</a>
	</h5>
	<div class="row">
			<div class="four columns featured-post featured-post-0">
						<h2 class="post-title"><a href="http://blog.newrelic.com/2013/10/01/finally-echo-new-relic-introduces-support-php-5-5n/">New Relic Introduces Support for PHP 5.5</a></h2>
			<p class="post-meta">By: <a href="http://blog.newrelic.com/author/darin-swanson/">Darin Swanson</a> | Posted in: <a href="http://blog.newrelic.com/category/company-news/" title="View all posts in Company News" rel="category tag">Company News</a>, <a href="http://blog.newrelic.com/category/new-noteworthy/" title="View all posts in New &amp; Noteworthy" rel="category tag">New &amp; Noteworthy</a>, <a href="http://blog.newrelic.com/category/news/" title="View all posts in News" rel="category tag">News</a>, <a href="http://blog.newrelic.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a>, <a href="http://blog.newrelic.com/category/top-post/" title="View all posts in Top Post" rel="category tag">Top Post</a>, Oct. 1st, 2013</p>			<p>We are very excited to announce New Relic support for PHP 5.5 in our latest PHP agent release (version 4.0.5.18) Adding support for PHP 5.5 was a particularly tasty challenge for the New Relic PHP team. The way we provide you with the out of the box performance insight required more tweaks than we expected [&hellip;]</p>
			<p><a href="http://blog.newrelic.com/2013/10/01/finally-echo-new-relic-introduces-support-php-5-5n/" class="continue">Continue reading</a> &rsaquo;</p>
			<p>
				<div class="mr_social_sharing_wrapper">
				<!-- Social Sharing Toolkit v2.1.4 --></div> </p>
		</div>
			<div class="four columns featured-post featured-post-1">
						<h2 class="post-title"><a href="http://blog.newrelic.com/2013/09/25/high-quality-releases-automate-and-monitor-2/">Need Frequent and High Quality Releases? Automate and Monitor</a></h2>
			<p class="post-meta">By: <a href="http://blog.newrelic.com/author/desdemona/">Desdemona Bandini</a> | Posted in: <a href="http://blog.newrelic.com/category/agile/" title="View all posts in Agile" rel="category tag">Agile</a>, <a href="http://blog.newrelic.com/category/company-news/" title="View all posts in Company News" rel="category tag">Company News</a>, <a href="http://blog.newrelic.com/category/devops-2/" title="View all posts in DevOps" rel="category tag">DevOps</a>, <a href="http://blog.newrelic.com/category/did-you-know/" title="View all posts in Did You Know" rel="category tag">Did You Know</a>, <a href="http://blog.newrelic.com/category/partners/" title="View all posts in Partners" rel="category tag">Partners</a>, <a href="http://blog.newrelic.com/category/top-post/" title="View all posts in Top Post" rel="category tag">Top Post</a>, Sep. 25th, 2013</p>			<p>This is a guest blog post from Krishnan Badrinarayanan from ZeroTurnaround, creator of JRebel &amp; LiveRebel, the productivity tools that make Java more productive for development teams. Users and customers today have rapidly changing needs, expect 24/7 connectivity and reliability, and access services over smartphones, tablets and PCs. As software product vendors — irrespective of whether [&hellip;]</p>
			<p><a href="http://blog.newrelic.com/2013/09/25/high-quality-releases-automate-and-monitor-2/" class="continue">Continue reading</a> &rsaquo;</p>
			<p>
				<div class="mr_social_sharing_wrapper">
				<!-- Social Sharing Toolkit v2.1.4 --></div> </p>
		</div>
			<div class="four columns featured-post featured-post-2">
						<h2 class="post-title"><a href="http://blog.newrelic.com/2013/09/24/futurestack-scholarship-spotlight-gloria-kimbwala-geek-girl-katie-leonard-portland-code-school/">FutureStack Scholarship Spotlight: Gloria Kimbwala (Geek Girl) and Katie Leonard (Portland Code School)</a></h2>
			<p class="post-meta">By: <a href="http://blog.newrelic.com/author/morgan-flatley/">Morgan Flatley</a> | Posted in: <a href="http://blog.newrelic.com/category/company-news/" title="View all posts in Company News" rel="category tag">Company News</a>, <a href="http://blog.newrelic.com/category/futurestack/" title="View all posts in FutureStack" rel="category tag">FutureStack</a>, <a href="http://blog.newrelic.com/category/top-post/" title="View all posts in Top Post" rel="category tag">Top Post</a>, Sep. 24th, 2013</p>			<p>At New Relic, we are committed to increasing diversity across the development and technology community which is why we have awarded 10 FutureStack scholarships to standout candidates. Each recipient is unique in his or her own way – some are in the early stages of their education, while others are just embarking on their career and several are [&hellip;]</p>
			<p><a href="http://blog.newrelic.com/2013/09/24/futurestack-scholarship-spotlight-gloria-kimbwala-geek-girl-katie-leonard-portland-code-school/" class="continue">Continue reading</a> &rsaquo;</p>
			<p>
				<div class="mr_social_sharing_wrapper">
				<!-- Social Sharing Toolkit v2.1.4 --></div> </p>
		</div>
		
	</div>


<div id="text-10" class="widget widget_text"><h5 class="widget-title">Sign up now to double down on your nerdy news.</h5>			<div class="textwidget"><div class="sidebar-promo shadow">
  <p class="large" style="color:red;" id="message"></p>
<form accept-charset="UTF-8" action="http://newrelic.com/api/v1/blog_leads" id="blog-leads-form" method="post">
  <input name="utf8" type="hidden" value="&#x2713;" />
  <input id="form_key" name="form_key" type="hidden" value="default" /><label><!--[if lt IE 9]>My Email Address:&nbsp;<![endif]--><input type="text" name="email" id="email" class="" value="" placeholder="Enter your email address" style="display: inline-block;"></label> &nbsp;
  <button id="" class="cta-button" type="submit">Sign Me Up, Scotty </button>
</form>
<div>Get product updates, event news, performance trends in New Relic's 2x monthly newsletter.</div>
</div>

 <script type="text/javascript">
  $("#blog-leads-form").submit(function(event) {
      event.preventDefault();
      var val = $(this).find('input[name="email"]').val();

      deferred = $.post("http://newrelic.com/api/v1/blog_leads", { email: val });

      deferred.done(function () {
        $('#message').html("Thanks for signing up.");
      });

      deferred.error(function () {
        $('#message').html("You are already a New Relic customer.");
      });
  });
 </script></div>
		</div>
  </div><!-- end content twelve -->
    </div><!-- end main row -->
  </div><!-- end container -->
</div><!-- end blog-wrap -->


<!-- NEW FOOTER -->
<div id="red-noise" class="content">
  <div class="content">
    <section>
      <article class="footmenu">
        <div>
          <h6 class="serif">Product</h6>
          <p><a href="//newrelic.com/application-monitoring">Web Application Monitoring</a></p>
          <p><a href="//newrelic.com/mobile-monitoring">Mobile Application Monitoring</a></p>
          <p><a href="http://newrelic.com/application-monitoring-iphone">New Relic for iPhone</a></p>
          <p><a href="//newrelic.com/ASI">App Speed Index</a></p>
          <p><a href="//newrelic.com/resources">Resources</a></p>
          <p><a href="//newrelic.com/pricing">Pricing</a></p>
          <p><a href="//newrelic.com/connect">Connect</a></p>
        </div>
        <div>
          <h6 class="serif">Support</h6>
          <p><a href="mailto:&#115;&#117;&#112;&#112;&#111;&#114;&#116;&#64;&#110;&#101;&#119;&#114;&#101;&#108;&#105;&#99;&#46;&#99;&#111;&#109;">&#115;&#117;&#112;&#112;&#111;&#114;&#116;&#64;&#110;&#101;&#119;&#114;&#101;&#108;&#105;&#99;&#46;&#99;&#111;&#109;</a></p>
          <p><a href="https://support.newrelic.com/">Open a support request</a></p>
          <p><a href="http://newrelic.com/docs">Documentation</a></p>
          <p><a href="http://status.newrelic.com">New Relic Status</a></p>
          <p><a href="http://trust.newrelic.com">Security</a></p>
        </div>
        <div>
          <h6 class="serif">About</h6>
          <p><a href="//newrelic.com/about">Overview</a></p>
          <p><a href="//newrelic.com/about/customers">Our Customers</a></p>
          <p><a href="//newrelic.com/partners">Our Partners</a></p>
          <p><a href="//newrelic.com/about/leadership">Our Leadership</a></p>
          <p><a href="//newrelic.com/offers">Offers</a></p>
          <p><a href="//newrelic.com/about/jobs">Jobs</a></p>
          <p><a href="//newrelic.com/about/press-releases">Press &amp; News</a></p>
          <p><a href="//newrelic.com/about/contact-us">Contact Us</a></p>
        </div>
        <div class="social">
          <p class="facebook"><a href="http://www.facebook.com/NewRelic">Facebook</a></p>
          <p class="feed"><a href="http://feeds2.feedburner.com/NewRelic">RSS</a></p>
          <p class="twitter"><a href="http://www.twitter.com/NewRelic">Twitter</a></p>
          <p class="gplus"><a href="https://plus.google.com/101892797062342077748" rel="publisher">Google +</a></p>
        </div>
      </article>
    </section>
    <section>
      <article class="tagline">
        <p class="serif">It's free, it's fast. Get the insights you need to improve your application's performance.</p>
        <div>
          <a href="//newrelic.com/signup" class="a-button">
            <span>Create Free Account</span>
          </a>
        </div>
      </article>
    </section>
  </div>
</div>

<footer class="content">
  <section>
    <article>
      <span class="logo"><img alt="New Relic" src="//newrelic.com/assets/newrelic/logo_46.png" /></span>
      <span><a href="//newrelic.com/terms">Terms of Service</a> &nbsp; | &nbsp; <a href="//newrelic.com/privacy"> Privacy Policy/Your Privacy Rights</a></span>
      <span>&copy;2008-13 New Relic, Inc. All rights reserved. &nbsp;</span>
    </article>
  </section>
</footer>
<!-- /NEW FOOTER -->
<script type='text/javascript' src='http://blog.newrelic.com/wp-content/plugins/social-sharing-toolkit/script_2.1.2.js?ver=3.6.1'></script>
<script type='text/javascript' src='http://blog.newrelic.com/wp-content/plugins/social-sharing-toolkit/includes/buttons/button.facebook.js?ver=3.6.1'></script>
<script type='text/javascript' src='http://connect.facebook.net/en_US/all.js?ver=3.6.1#xfbml=1'></script>
<script type='text/javascript' src='https://platform.twitter.com/widgets.js?ver=3.6.1'></script>
<script type='text/javascript' src='http://blog.newrelic.com/wp-content/plugins/social-sharing-toolkit/includes/buttons/button.googleplus.js?ver=3.6.1'></script>
<script type='text/javascript' src='http://platform.linkedin.com/in.js?ver=3.6.1'></script>
<!-- Twitter -->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<!--  Chartbeat -->
<script type="text/javascript">
  var _sf_async_config={uid:24038,domain:"blog.newrelic.com"};
  (function(){
    function loadChartbeat() {
      window._sf_endpt=(new Date()).getTime();
      var e = document.createElement('script');
      e.setAttribute('language', 'javascript');
      e.setAttribute('type', 'text/javascript');
      e.setAttribute('src',
         (("https:" == document.location.protocol) ? "https://a248.e.akamai.net/chartbeat.download.akamai.com/102508/" : "http://static.chartbeat.com/") +
         "js/chartbeat.js");
      document.body.appendChild(e);
    }
    var oldonload = window.onload;
    window.onload = (typeof window.onload != 'function') ?
       loadChartbeat : function() { oldonload(); loadChartbeat(); };
  })();
</script>
<!-- AdRoll -->
<script type="text/javascript">
    adroll_adv_id = "YCNZVXZ6TJDJ3KMJRVGKFH";
    adroll_pix_id = "I7ZJI4CQMBCNHGOQ27AYQZ";
    (function () {
      var oldonload = window.onload;
      window.onload = function(){
      __adroll_loaded=true;
      var scr = document.createElement("script");
      var host = (("https:" == document.location.protocol) ? "https://s.adroll.com" : "http://a.adroll.com");
      scr.setAttribute('async', 'true');
      scr.type = "text/javascript";
      scr.src = host + "/j/roundtrip.js";
      ((document.getElementsByTagName('head') || [null])[0] ||
      document.getElementsByTagName('script')[0].parentNode).appendChild(scr);
      if(oldonload){oldonload()}};
    }());
  </script>
<!-- Google Code for blog -->
<!-- Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. For instructions on adding this tag and more information on the above requirements, read the setup guide: google.com/ads/remarketingsetup -->
  <script type="text/javascript">
  /* <![CDATA[ */
  var google_conversion_id = 965369084;
  var google_conversion_label = "1BebCLT5uQQQ_LmpzAM";
  var google_custom_params = window.google_tag_params;
  var google_remarketing_only = true;
  /* ]]> */
  </script>
  <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
  </script>
  <noscript>
  <div style="display:inline;">
  <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/965369084/?value=0&amp;label=1BebCLT5uQQQ_LmpzAM&amp;guid=ON&amp;script=0"/>
  </div>
  </noscript>
<!-- Marketo -->
<script src="//munchkin.marketo.net/munchkin.js" type="text/javascript"></script>
<script>mktoMunchkin("412-MZS-894");</script>
<script type="text/javascript" src="http://newrelic.com/javascripts/nr_cookies.js"></script>

<!--Twitter -->
<script src="//platform.twitter.com/oct.js" type="text/javascript"></script>
<script type="text/javascript">
twttr.conversion.track('98spr', '1', ' ');
</script>
<noscript>
<img height="1" width="1" style="display:none" alt="" src="https://analytics.twitter.com/i/adsct?merch_id=98spr&amp;event=1&amp;value=&amp;p_id=Twitter" />
</noscript>
</body>
</html>