<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>New Relic blog</title>
	<atom:link href="http://blog.newrelic.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.newrelic.com</link>
	<description>Software Analytics, Application Performance Mangement</description>
	<lastBuildDate>Thu, 28 Jan 2016 22:47:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.3.2</generator>
	<item>
		<title>5 Ways to Customize Your New Relic Java Agent</title>
		<link>http://blog.newrelic.com/2016/01/28/java-agent-customization/</link>
		<comments>http://blog.newrelic.com/2016/01/28/java-agent-customization/#comments</comments>
		<pubDate>Thu, 28 Jan 2016 22:42:08 +0000</pubDate>
		<dc:creator><![CDATA[Ken Ahrens]]></dc:creator>
				<category><![CDATA[New Relic Products]]></category>
		<category><![CDATA[Tech Topics]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Agent]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28583</guid>
		<description><![CDATA[A quick run-through of the various New Relic Java Agent customization options, what they do, and what’s involved in using them.]]></description>
				<content:encoded><![CDATA[<p>There are lots of ways to customize your agent in New Relic APM and New Relic Insights, but it’s not always easy to figure out which approach is right for your particular needs. Let’s take a quick run-through of the various options and what they do, and give you a sense of what’s involved in using them.</p>
<p>This post covers the New Relic Java Agent, and you can find more information in the <a href="https://docs.newrelic.com/docs/agents/java-agent/custom-instrumentation/java-custom-instrumentation" target="_blank">Java Agent Custom Instrumentation Overview</a>, which addresses the technical approaches for customization from Annotation to XML to the UI Instrumentation Editor. You can see the source code for my examples in this GitHub repository: <a href="https://github.com/kenahrens/spring-travel" target="_blank">https://github.com/kenahrens/spring-­travel</a>. We plan to address other New Relic Agents in upcoming blog posts.</p>
<p><strong>Custom Transaction Naming</strong><br />
<strong>For:</strong> APM<br />
<strong>Functionality:</strong> Modify the name that shows up in the New Relic UI</p>
<p><strong>Custom Tracers</strong><br />
<strong>For:</strong> APM<br />
<strong>Functionality:</strong> Add depth to transaction traces within APM.</p>
<p><strong>Custom Attributes</strong><br />
<strong>For:</strong> APM and Insights<br />
<strong>Functionality:</strong> Add extra information to Transaction Traces within APM or Events within Insights.</p>
<p><strong>Custom Events</strong><br />
<strong>For:</strong> Insights<br />
<strong>Functionality:</strong> Send an Event to Insights (designed for events that cannot be collected by an agent)</p>
<p><strong>Custom Metrics</strong><br />
<strong>For:</strong> APM only<br />
<strong>Functionality:</strong> Send arbitrary metrics to APM (works best for things like connection counts and pool sizes that are not associated with a transaction)</p>
<h3>Custom Transaction Naming</h3>
<p>New Relic Agents have out-of-the-box rules for how transactions are named in the UI. Unfortunately, sometimes these rules don’t work for your environment, so the Agent API lets you easily modify the Transaction Name to suit your needs.</p>
<p><img class="aligncenter size-full wp-image-28608" src="http://blog.newrelic.com/wp-content/uploads/ahrens-before-after-1.jpg" alt="ahrens before after 1" width="700" height="245" /></p>
<p>Be aware that the specific API call varies by language, and you need to place the code in a place where it is called on every Transaction. See below for an <a href="https://github.com/kenahrens/spring-travel/blob/master/server/src/main/java/org/springframework/samples/travel/services/JpaBookingService.java" target="_blank">example of the Java code</a>:</p>
<pre><code class="java">
import com.newrelic.api.agent.NewRelic;
...
public class JpaBookingService implements BookingService {
...
    public List findHotels(SearchCriteria criteria) {
        NewRelic.setTransactionName("Web", "Find Hotels");
        ...
    }
...
}
</code>
</pre>
<p>(See the New Relic documentation on Naming Web Transactions for details about how the Java Agent determines the name for your transaction: <a href="https://docs.newrelic.com/docs/agents/java-agent/instrumentation/naming-web-transactions" target="_blank">https://docs.newrelic.com/docs/agents/java-­agent/instrumentation/naming­-web­-transactions</a>.)</p>
<h3>Custom Tracers</h3>
<p>New Relic Agents include out-of-the-box support for many technology frameworks. Sometimes, however, the framework you use may not be supported, or you may be using a proprietary framework created for internal use at your company.</p>
<p>In those cases, you can create Custom Tracers to add visibility to a framework that New Relic is currently not monitoring. This lets you monitor the performance down to an individual method in your code. Note that the specific API call (or use of XML) varies by language. Additional visibility will show up inside Transaction Traces.</p>
<p><img class="aligncenter size-full wp-image-28610" src="http://blog.newrelic.com/wp-content/uploads/before-blue-bubble.jpg" alt="before blue bubble" width="700" height="248" /></p>
<p>Here’s an example breakdown of what goes into making a Custom Tracer. In this snippet from our <a href="https://github.com/kenahrens/spring-travel/blob/master/NewRelicTravel-instrumentation.xml" target="_blank">GitHub repository</a>, the “blue bubble” shows that time is spent somewhere in HotelsMvcController.list(). We added additional instrumentation using an XML extension. To work, this file should be placed in NEWRELIC_HOME/extensions.</p>
<pre><code class="xml">
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;extension xmlns="https://newrelic.com/docs/java/xsd/v1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="newrelic-extension extension.xsd "
    name="extension-example"
    version="1.0" enabled="true"&gt;
    &lt;instrumentation&gt;
        &lt;pointcut transactionStartPoint="true"
            excludeFromTransactionTrace="false"
            ignoreTransaction="false"&gt;
            &lt;className&gt;org.springframework.samples.travel.services.JpaBookingService&lt;/className&gt;
            &lt;method&gt;
                &lt;name&gt;slowThisDown&lt;/name&gt;
            &lt;/method&gt;
        &lt;/pointcut&gt;
    &lt;/instrumentation&gt;
&lt;/extension&gt;
</code>
</pre>
<p>(For more information, see our <a href="https://docs.newrelic.com/docs/agents/java-agent/custom-instrumentation/java-instrumentation-xml" target="_blank">Java Instrumentation by XML</a> documentation: <a href="https://docs.newrelic.com/docs/agents/java-agent/custom-instrumentation/java-instrumentation-xml" target="_blank">https://docs.newrelic.com/docs/agents/java-agent/custom-instrumentation/java-instrumentation-xml</a>.)</p>
<h3>Custom Attributes</h3>
<p>New Relic Agents collect standard attributes (also called parameters) for every Transaction. But you may have special attributes unique to your application that you want to collect as well. These custom attributes show up in Transaction Traces as well as Insights Events.</p>
<p><img class="aligncenter size-full wp-image-28612" src="http://blog.newrelic.com/wp-content/uploads/custom-attributes.jpg" alt="custom attributes" width="700" height="275" /></p>
<p>The Agent API makes it easy to add Custom Attributes. In Java, for example, simply place <a href="https://github.com/kenahrens/spring-travel/blob/master/server/src/main/java/org/springframework/samples/travel/services/JpaBookingService.java" target="_blank">this code from our GitHub repository</a> where it is called on every Transaction:</p>
<pre><code class="java">
import com.newrelic.api.agent.NewRelic;
...
public class JpaBookingService implements BookingService {
...
    public List findHotels(SearchCriteria criteria) {
        ...
        String pattern = getSearchPattern(criteria);
        log.debug("search pattern: " + pattern);
        NewRelic.addCustomParameter("searchCriteria",pattern );
        ...
    }
...
}
</code>
</pre>
<p>(For more information, see <a href="https://docs.newrelic.com/docs/insights/new-relic-insights/decorating-events/insights-custom-attributes" target="_blank">Insights Custom Attributes</a> in the New Relic documentation: <a href="https://docs.newrelic.com/docs/insights/new-relic-insights/decorating-events/insights-custom-attributes" target="_blank">https://docs.newrelic.com/docs/insights/new-relic-insights/decorating-events/insights-custom-attributes</a>.)</p>
<h3>Custom Events</h3>
<p>Custom Events are used when you want to record several pieces of metadata that all belong together as part of a “rich event,” typically one that occurs on an irregular basis. For example, you might want to record an event whenever a booking is made and include data such as Revenue, Hotel Name, Hotel City, and so on.</p>
<p>Through the Agent API, these Custom Events can be added as a new Event Type in Insights.</p>
<p><img class="aligncenter size-full wp-image-28614" src="http://blog.newrelic.com/wp-content/uploads/data-explorer.jpg" alt="data explorer" width="700" height="281" /></p>
<p>To add a Custom Event, you would create a map showing the relevant Key / Value pairs, and then publish the event using the API. Here’s an <a href="https://github.com/kenahrens/spring-travel/blob/master/server/src/main/java/org/springframework/samples/travel/services/JpaBookingService.java" target="_blank">example in Java</a>:</p>
<pre><code class="java">
HashMap bookingMap = new HashMap();
bookingMap.put("BookingNumberOfNights",booking.getNights() );
bookingMap.put("BookingRevenue",
    Integer.valueOf(booking.getTotal().intValue()) );
bookingMap.put("BookingRate",
    Integer.valueOf(booking.getHotel().getPrice().intValue() ) );
bookingMap.put("BookingHotelName",
    booking.getHotel().getName() +
    " - " + booking.getHotel().getCity() +
    ", " + booking.getHotel().getState() );
...
bookingMap.put("BookingAgent",booking.getUser().getName() );
NewRelic.getAgent().getInsights().recordCustomEvent("Booking Event", bookingMap);
</code>
</pre>
<p>(For more information, see <a href="https://docs.newrelic.com/docs/insights/new-relic-insights/adding-querying-data/inserting-custom-events-new-relic-apm-agents" target="_blank">Inserting Custom Events Via New Relic APM Agents</a>: <a href="https://docs.newrelic.com/docs/insights/new-relic-insights/adding-querying-data/inserting-custom-events-new-relic-apm-agents" target="_blank">https://docs.newrelic.com/docs/insights/new-relic-insights/adding-querying-data/inserting-custom-events-new-relic-apm-agents</a>.)</p>
<h3>Custom Metrics</h3>
<p>Out of the box, New Relic supports standard non-transactional metrics. But Custom Metrics can be used to record special metrics—including most arbitrary numeric values, such as the revenue value of a completed booking on the Spring Travel application shown below. Custom Metrics can be displayed in Custom Dashboards, or used in Alert Policies. Basically, Custom Metrics can be used for anything numeric that you want to monitor and graph.</p>
<p><img class="aligncenter size-full wp-image-28677" src="http://blog.newrelic.com/wp-content/uploads/edit-widget-chart-1.jpg" alt="edit widget chart" width="700" height="239" /></p>
<p>To use Custom Metrics, simply add a call to send the numeric metric with a name like Custom/Metric Name. Here’s an <a href="https://github.com/kenahrens/spring-travel/blob/master/server/src/main/java/org/springframework/samples/travel/services/JpaBookingService.java" target="_blank">example in Java</a>:</p>
<pre><code class="java">
import com.newrelic.api.agent.NewRelic;
...
public class JpaBookingService implements BookingService {
...
    public void persistBooking(Booking booking) {
        ...
        NewRelic.recordMetric("Custom/Booking Revenue",
            Integer.valueOf(booking.getTotal().intValue()) );
        ...
    }
...
}
</code>
</pre>
<p>(For more information on why you use Custom Metrics within APM, see <a href="https://docs.newrelic.com/docs/data-analysis/metrics/custom-metrics" target="_blank">Custom Metrics</a> in the New Relic documentation: <a href="https://docs.newrelic.com/docs/data-analysis/metrics/custom-metrics" target="_blank">https://docs.newrelic.com/docs/data­-analysis/metrics/custom­-metrics</a></p>
<h3>Other languages</h3>
<p>The post addressed the New Relic Java Agent, but the process is similar for all languages supported by New Relic. We plan to address other New Relic Agents in upcoming blog posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/28/java-agent-customization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//blog.newrelic.com/wp-content/uploads/ken-ahrens.jpg"/>	</item>
		<item>
		<title>The New Stack @ Scale Podcast: Talking Microservices and DevOps with Bleacher Report’s Tung Nguyen</title>
		<link>http://blog.newrelic.com/2016/01/28/microservices-devops-bleacher-report-new-stack-at-scale-podcast/</link>
		<comments>http://blog.newrelic.com/2016/01/28/microservices-devops-bleacher-report-new-stack-at-scale-podcast/#comments</comments>
		<pubDate>Thu, 28 Jan 2016 20:18:24 +0000</pubDate>
		<dc:creator><![CDATA[Fredric Paul]]></dc:creator>
				<category><![CDATA[Modern Software]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Bleacher Report]]></category>
		<category><![CDATA[DevOps]]></category>
		<category><![CDATA[microservices]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[The New Stack @ Scale]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28690</guid>
		<description><![CDATA[The New Stack @ Scale Podcast welcomes Bleacher Report’s Tung Nguyen and New Relic’s Lee Atchison to talk scaling from 50K users to 80M.]]></description>
				<content:encoded><![CDATA[<p>It’s an increasingly common scenario: As a company grows, it finds that it needs to move away from the monolithic software architecture that powered its initial success. The alternative? A microservices approach that provides more speed and flexibility.</p>
<p>That’s the story told by both our guests on the latest episode of <a href="https://blog.newrelic.com/tag/the-new-stack-at-scale/" target="_blank">The New Stack @ Scale Podcast</a>: <a href="https://www.linkedin.com/in/tongueroo" target="_blank">Tung Nguyen</a>, vice-president of engineering at <a href="http://bleacherreport.com/" target="_blank">Bleacher Report</a>, and our own <a href="https://twitter.com/leeatchison" target="_blank">Lee Atchison</a>, principal cloud architect &amp; advocate at New Relic.</p>
<p>Tung tells The New Stack founder and Editor in Chief Alex Williams and me the tale of how Bleacher Report scaled its infrastructure from a WordPress-style blog with 50,000 monthly unique visitors in 2007 to its current position serving as a premier sports site serving some 80 million uniques every month. He talks about the decisions they made and the misconceptions they struggled with along the way—and he reveals why a certain Miley Cyrus song best describes Bleacher Report’s journey.</p>
<p><img class="aligncenter size-full wp-image-28799" src="http://blog.newrelic.com/wp-content/uploads/tung-nguyen-1.jpg" alt="tung nguyen and lee atchison" width="500" height="271" /></p>
<p>Lee, meanwhile, shares how New Relic moved from a big, monolithic Ruby app to a distributed ecosystem with multiple different services and microservices, mostly running in Java—although the frontend is still in Ruby. (For more on our journey, watch New Relic engineering VPs <a href="https://blog.newrelic.com/2016/01/11/scaling-futurestack-fs15-video/">Nic Benders and Matthew Flaming take you inside the process at FutureStack15</a>.)</p>
<p>Plus, you’ll hear Tung and Lee offer insights into the following fascinating topics:</p>
<ul>
<li>When scaling should end (hint: “hopefully never”)</li>
<li>Why Ruby shouldn’t get blamed for slow performance</li>
<li>How to organize a DevOps team</li>
<li>Why managing multiple services is like the War on Drugs</li>
<li>Why being a full-stack developer should be considered a “transitional phase” for junior engineers</li>
<li>The importance of having inexperienced devs on your team</li>
<li>What Facebook <em>really</em> means when it says “Move Fast and Break Things”</li>
<li>How microservices enables small teams of developers to do big things</li>
<li>Overcoming the psychological stress of moving to DevOps</li>
</ul>
<p>All this and much more—including our guests’ reactions to <a href="https://twitter.com/adrianco" target="_blank">Adrian Cockcroft</a> talking about visualizing data models and dependencies—in this episode of The New Stack @ Scale Podcast.</p>
<p style="line-height: 75%;"><span style="font-size: x-small;"><em>New Relic is a sponsor of the New Stack @ Scale Podcast. However, the content and views expressed are those of the participants of the New Stack @ Scale Podcast, which is the property of The New Stack. Any views expressed on the New Stack @ Scale Podcast do not necessarily reflect the views of New Relic. By embedding the audio for the New Stack @ Scale Podcast or linking to The New Stack, New Relic does not adopt, guarantee, approve or endorse the information, views or products available on The New Stack site.</em></span></p>
<p><iframe src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/243583910&amp;color=ff3287" width="100%" height="166" frameborder="no" scrolling="no"></iframe></p>
<p><strong><em>Read more about the podcast in Luke Lefler’s post on The New Stack: </em><a href="http://thenewstack.io/new-stack-scale-podcast-cases-devops-managing-scale/" target="_blank">The New Stack @ Scale Podcast: How to Scale Beyond Your First 50,000 Users</a> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/28/microservices-devops-bleacher-report-new-stack-at-scale-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//www.gravatar.com/avatar.php?gravatar_id=1c24bbf022a9a9f3d6cd854cdd04b23e&amp;size=40"/>	</item>
		<item>
		<title>Announcing the New Relic Ambassador Program: Join Us and Become a ‘Datanaut’</title>
		<link>http://blog.newrelic.com/2016/01/27/ambassador-program/</link>
		<comments>http://blog.newrelic.com/2016/01/27/ambassador-program/#comments</comments>
		<pubDate>Wed, 27 Jan 2016 16:51:42 +0000</pubDate>
		<dc:creator><![CDATA[Robyn Jordan]]></dc:creator>
				<category><![CDATA[Nerd Life]]></category>
		<category><![CDATA[New Relic News]]></category>
		<category><![CDATA[Ambassador Program]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[contests]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28693</guid>
		<description><![CDATA[Today we are excited to announce the launch of the New Relic Ambassador Program, our way of connecting with the New Relic community and recognizing and rewarding members for their contributions. ]]></description>
				<content:encoded><![CDATA[<p>Today we are excited to announce the launch of the <a href="http://newrelic.com/community/ambassador" target="_blank">New Relic Ambassador Program</a>, our way of connecting with the <a href="http://newrelic.com/community" target="_blank">New Relic community</a> to recognize and reward community members for their contributions.</p>
<p>If you are a regular New Relic user, you may already be aware of the <a href="http://newrelic.com/community/events">events</a> and activities in the community. Perhaps you have even helped spread the word about our products and features by blogging, speaking, answering questions on the New Relic <a href="https://discuss.newrelic.com/" target="_blank">Community Forum</a>, or organizing a <a href="http://newrelic.com/community/events" target="_blank">user group</a>. The Ambassador Program is our way to make sure people like you are properly recognized and thanked for your efforts.</p>
<p>Your level of involvement is up to you, and the members of the New Relic community team are here to help you organize local user groups, meetups, events, submit abstracts to conference calls for papers (CFP), or create and share your technical projects. You’ll be able to be part of the conversation, win awesome New Relic swag, and interact with our community managers and developer advocates. As a pioneering Ambassador, the more you help us, the more we will give you exclusive opportunities to talk with our teams, improve your skill set, and achieve personal and professional growth.</p>
<h3>Why participate in the New Relic Ambassador Program?</h3>
<ul>
<li><strong>Share your story. </strong>Did you have an interesting challenge or issue and a New Relic product helped solve the problem? Assist other New Relic users by sharing what you learned or figured out.</li>
<li><strong>Enhance your skill set. </strong>The best way to get better at something is to practice, so why not practice your writing, event organizing, or public speaking about technologies you already love? There will be a variety of opportunities to create and share your content!</li>
<li><strong>Expand your network<em>.</em></strong> Participation in the program will allow you to expand your network, meet and collaborate with other Ambassadors, and have exclusive access to members of the New Relic team.</li>
<li><strong>Have fun while doing it.</strong> We’re planning exciting challenges and contests for Ambassadors to participate in with the goal of building community and learning!</li>
</ul>
<h3><img class="alignright wp-image-28699" src="http://blog.newrelic.com/wp-content/uploads/datanauts_moonman.png" alt="datanauts moonman" width="160" height="289" />Datanauts unite!</h3>
<p>We have given our Ambassadors the nickname of “Datanauts” because technology is a vast and near-infinite space to explore. We hope that our Ambassadors are up to the challenge of exploring it with us!</p>
<p>Each action an Ambassador completes will unlock a reward. These rewards aren’t just cool swag (although who doesn’t love swag?). The rewards also include meaningful ways for you to connect with us here at New Relic. We’re initially announcing three levels, but there will be more as the program grows and we get feedback from you about what you love!</p>
<p><img class="aligncenter size-full wp-image-28753" src="http://blog.newrelic.com/wp-content/uploads/ambassador-level-chart.jpg" alt="ambassador level chart" width="700" height="170" /></p>
<p>Becoming a New Relic Ambassador is fun and easy, and we want to provide you with the resources and opportunities to become part of a larger community, both online and off. No matter what language you work in, what products you use, or what level of expertise you have, you can participate and become a Datanaut.</p>
<p>To get started, check out the <a href="http://newrelic.com/community/ambassador" target="_blank"><strong>New Relic Ambassador Program </strong><strong>website</strong></a><strong>.</strong> We can’t wait to hear from you!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/27/ambassador-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//blog.newrelic.com/wp-content/uploads/robyn-jordan.jpg"/>	</item>
		<item>
		<title>Brokers, Not Owners: 5 Best Practices for Modern CIOs</title>
		<link>http://blog.newrelic.com/2016/01/26/cio-broker/</link>
		<comments>http://blog.newrelic.com/2016/01/26/cio-broker/#comments</comments>
		<pubDate>Tue, 26 Jan 2016 18:59:14 +0000</pubDate>
		<dc:creator><![CDATA[Abner Germanow]]></dc:creator>
				<category><![CDATA[Modern Software]]></category>
		<category><![CDATA[CIO]]></category>
		<category><![CDATA[DevOps]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[Shadow IT]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28708</guid>
		<description><![CDATA[Modern CIOs must be both more proactive and more collaborative than ever before. These best practices can help point the way.]]></description>
				<content:encoded><![CDATA[<p>The parallel rise of the digital consumer and cloud computing is forcing CIOs and other IT leaders to change some of their most cherished and long-standing habits. Instead of building and owning the solutions, CIOs are increasingly turning into IT brokers and orchestrators, charged with researching, consulting, and efficiently running extremely heterogeneous IT environments incorporating a mix of cloud-based, third-party services and house-built applications and integrations.</p>
<p>This new environment requires CIOs to be both more proactive and more collaborative than ever before. Instead of making their own decisions and pretty much forcing the entire company to go along, these trends mean CIOs must now work with their peers across the entire business to orchestrate and balance what types of work is done in house versus what gets outsourced to the cloud, SaaS, contractors, and others in order to meet the needs of digital transformation efforts, changing business models, and increasingly savvy and empowered users, not just traditional central IT constituencies.</p>
<p>It’s not an option; it’s table stakes for modern CIOs. If the CIO can’t figure out how to lead the way toward using technology to change the company’s business or its relationship with customers, they risk being sidelined as a mere cost center—as business users increasingly turn to their own “<a href="http://en.wikipedia.org/wiki/Shadow_IT" target="_blank">Shadow IT</a>” solutions.</p>
<p>To minimize that threat, enterprise IT must embrace each individual business unit’s IT autonomy and quickly identify and satisfy fast-evolving user requirements. That’s the only way to encourage as many people as possible to use company-approved and monitored solutions.</p>
<p>At the same time, of course, IT remains responsible for controlling system sprawl, which could weaken security and generate systemic inefficiencies.</p>
<p>Fortunately, there are some best practices to help CIOs stay ahead of the issue and become a trusted broker of IT services:</p>
<h4>1. Deliver powerful, stable, easy-to-use services—fast</h4>
<p>According to a <a href="http://blog.avanade.com/avanade-insights/business-of-technology/becoming-irrelevant-cios-must-balance-new-opportunities-old-challenges/" target="_blank">research study conducted by Avanade</a>, 79% of C-level executives believe they could make technology decisions better and faster than IT staff. In order to demonstrate the value of its knowledge and expertise, your IT team needs to be agile and act fast. However, speed cannot mean compromising the quality of software services. You need to develop vetting procedures that enable fast solution assessments and purchasing decisions that quickly identify robust, secure, and user-friendly solutions that can be quickly implemented to meet user needs before they invest in Shadow IT alternatives. Today’s users are accustomed to fast, powerful, beautifully implemented consumer apps—they won’t stand for sub-standard software experiences.</p>
<p><strong>See also:</strong> <a href="https://blog.newrelic.com/2016/01/11/yvonne-wassenaar-2016-cio-priorities/">New Relic’s CIO Yvonne Wassenaar on 2016 Priorities and Challenges for CIOs</a></p>
<h4>2. Rely on structured vendor assessments</h4>
<p>Becoming proficient in finding and qualifying third-party vendors is a must to become a credible orchestrator of cloud services. As opposed to assessing software vendors for your internal data center where OS support, patching, and release frequency is a big deal, learning about a cloud solution’s robustness also involves examining its hosting environment, security, and financial health. When qualifying a third-party cloud solution, check who has access to your data and applications and how they are protected. It’s critical to become familiar with your vendors’ SLAs and how you can be indemnified against events such as data loss and outages. You will also need to be savvy about understanding SaaS and other provider financial metrics.</p>
<p><strong>See also:</strong> <a href="http://blog.newrelic.com/2014/08/14/cloud-security-alliance-csa/">New Relic Joins Cloud Security Alliance to Promote SaaS Security</a></p>
<h4>3. Learn to manage the hybrid cloud</h4>
<p>Public cloud options require no hardware on-premises, typically making them faster to implement, enabling your team to respond quickly to end-user requirements. Private cloud solutions can complement the public cloud option by providing a clear boundary that lets you keep sensitive or proprietary data and applications under your control. As a technology broker, your team is charged with creating a balance between the different clouds, deciding which workloads should be kept internally and which best suit a public cloud environment. It’s also up to you to <a href="http://blog.newrelic.com/2015/02/11/hybrid-cloud-infographic/">monitor application performance in your hybrid cloud installations</a>, which can be surprisingly complex.</p>
<p><strong>See also: </strong><br />
<a href="http://blog.newrelic.com/2015/03/05/partners-hybrid-cloud/">How New Relic and Our Partners Can Help Ease the Enterprise Hybrid Cloud Migration</a><br />
<a href="https://blog.newrelic.com/2015/05/18/sla-hybrid-cloud/">The Hybrid Cloud SLA Challenge: Before, During, and After</a></p>
<h4>4. Properly allocate costs</h4>
<p>CIOs have always been expected to present proven operational efficiencies under tight budget constraints. With the move to a cloud-based OpEx model, implementing cost allocation can be challenging. Shadow IT and transitions from waterfall to agile development makes the process even more complex. The cloud requires IT teams to consistently tag cloud resources for specific applications or business units. The goal is to help business unit team leaders become more aware of and accountable for their cloud consumption and expenses. Being able to allocate costs per unit enhances transparency and enables you to more quickly identify inefficiencies. Subsequent action can then be taken to optimize each unit, eliminating redundancies and consolidating applications and resources. This can also help curb Shadow IT by highlighting the overall costs of cloud sprawl.</p>
<p><strong>See also:</strong> <a href="https://blog.newrelic.com/2015/12/11/gartner-datacenter-bimodal-it/">Two Ways Forward? Gartner Data Center Conference Ponders How ‘Bimodal IT’ Can Help Digital Business</a></p>
<h4>5. Support business-unit autonomy</h4>
<p>One proven way to broker IT services is to allow each business unit to self-provision applications and resources from your organization’s overall IT portfolio, which you need to control and manage. It is equally important for every unit to easily report back to IT headquarters, preserving traditional showback and chargeback methods. As your organization’s IT broker, your task is to embrace each unit’s IT autonomy while maintaining control over IT operations as a whole.</p>
<p><strong>See also: </strong><a href="https://blog.newrelic.com/2015/10/15/gartner-itxpo-cio/">Redefining the Role of CIO: A Gartner Symposium ITXPO 2015 Perspective</a></p>
<h3>Final Notes</h3>
<p>The CIO is the role model for embracing modern IT in the organization. Your team needs to take a proactive approach, making fast decisions to support individual business units while still maintaining control over your environment’s security and stability.</p>
<p>That’s only the beginning, of course. Truly successful modern CIOs must go beyond meeting their users’ immediate requirements—no matter how collaboratively—and provide leadership toward innovative, transformative technologies that promise real competitive advantage, not just keeping the lights on. But learning to drive technology forward through collaboration, orchestration, and brokering instead of command and control is an essential first step.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/26/cio-broker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//blog.newrelic.com/wp-content/uploads/abnergermanow-150x150.jpg"/>	</item>
		<item>
		<title>Veracode Secures Customer Satisfaction With New Relic [Video]</title>
		<link>http://blog.newrelic.com/2016/01/25/veracode-app-security/</link>
		<comments>http://blog.newrelic.com/2016/01/25/veracode-app-security/#comments</comments>
		<pubDate>Mon, 25 Jan 2016 18:28:59 +0000</pubDate>
		<dc:creator><![CDATA[B.J. Hinshaw]]></dc:creator>
				<category><![CDATA[New Relic Products]]></category>
		<category><![CDATA[app performance]]></category>
		<category><![CDATA[case study]]></category>
		<category><![CDATA[customers]]></category>
		<category><![CDATA[New Relic APM]]></category>
		<category><![CDATA[New Relic Browser]]></category>
		<category><![CDATA[New Relic Insights]]></category>
		<category><![CDATA[New Relic Servers]]></category>
		<category><![CDATA[New Relic Synthetics]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Veracode]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28648</guid>
		<description><![CDATA[See how New Relic helps Veracode stay agile to protect its customers’ software against cyber attacks.]]></description>
				<content:encoded><![CDATA[<p>These days, there’s an app for everything. Businesses of all sizes and varieties are embracing the power of software. That’s great news for customers, because software helps them deliver a better level of customer service. But if you’re not careful, it can also create opportunities for cyber criminals.</p>
<p>As companies strive to improve and scale their applications as fast as possible, they risk exposing themselves to an ever-expanding array of sophisticated cyber attacks. Such attacks threaten enterprises and customers alike.</p>
<p><a href="http://www.veracode.com/"><img class="alignright wp-image-28664 size-full" src="http://blog.newrelic.com/wp-content/uploads/veracode-logo.jpg" alt="veracode logo" width="300" height="46" /></a>In order to reduce their vulnerability and stay focused on delivering high-quality apps, companies are increasingly seeking outside help. One place they can find it is Veracode.</p>
<p><a href="http://www.veracode.com/" target="_blank">Veracode</a> provides automated, cloud-based security for Web, mobile, and cloud applications. This subscription-based service offers a unified platform for multiple assessment technologies—one that more than 800 organizations depend on every single day. Those organizations include three of the top four banks (not to mention more than 20 other brands) in the Fortune 100.</p>
<p>Veracode helps its customers build and deploy software faster—without sacrificing security. The company says its cloud-based platform has assessed more than 1.5 trillion lines of code and performed 200,000 vulnerability scans on public Web-facing applications, for hundreds of the largest enterprises worldwide.</p>
<h3>Total commitment</h3>
<p>With so many high-profile clients depending on Veracode for round-the-clock protection, the company has to be totally committed to customer satisfaction. It’s critical that the service is always available and delivering fast turnaround times to support customers’ agile development cycles.</p>
<p>Such commitment was presenting challenges, however. The difficulties of identifying and resolving performance issues were leading to confusion and frustration. The result? Breakdowns in communication and collaboration, culminating in frequent finger-pointing across different teams responsible for different parts of the tech stack.</p>
<p>CIO Bill Brown and his colleagues knew exactly what they needed: a SaaS-based, purpose-built tool for performance monitoring and software analytics. “New Relic was at the top of our list,” says Brown.</p>
<p><img class="aligncenter size-full wp-image-28669" src="http://blog.newrelic.com/wp-content/uploads/bill-brown-veracode-CIO-1.jpg" alt="bill brown veracode CIO" width="700" height="392" /></p>
<h3>Full deployment</h3>
<p>Veracode deployed the New Relic Software Analytics Cloud (including <a href="http://newrelic.com/application-monitoring">New Relic APM</a>, <a href="http://newrelic.com/browser-monitoring">New Relic Browser</a>, <a href="http://newrelic.com/insights">New Relic Insights</a>, <a href="http://newrelic.com/server-monitoring">New Relic Servers</a>, and <a href="http://newrelic.com/synthetics">New Relic Synthetics</a>) to monitor both its customer-facing platform and its internal business systems.</p>
<p>After initially using New Relic to scrutinize post-deployment performance, the depth and usefulness of the data at its disposal soon convinced the Veracode team to expand that usage across its entire environment, including development, pre-production, and production, both on-premises and in the cloud.</p>
<p>New Relic helps Veracode scale its service to support the massive number of applications its customers need to scan, while maintaining performance and availability. That’s great news for Veracode customers, and it makes life easier for employees, too. “Our engineers love having all the application data in a single pane of glass,” says Patrick Hetherton, director of SaaS operations.</p>
<h3>Critical confidence</h3>
<p>Thanks to the deep visibility provided by New Relic, frustration and finger-pointing are much less prevalent. Troubleshooting is now faster and more effective, and the company has been able to reach a more mature stage with its DevOps approach. Most important, Bill Brown and his team can approach each new work week feeling empowered and equipped to tackle whatever comes their way.</p>
<p>“I appreciate the reports I get from New Relic on Monday mornings because they give me a good snapshot of what happened during the past week, and visibility into any trends that we need to act on,” says Brown. “The insight I get from New Relic gives me confidence that the team is responding to critical alerts when we get them, and being proactive about delivering a good customer experience.”</p>
<p>Watch the Veracode customer video below:</p>
<div align="center"><iframe class="wistia_embed" src="//fast.wistia.net/embed/iframe/p5ctvt4i0e" name="wistia_embed" width="550" height="309" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe><script src="//fast.wistia.net/assets/external/E-v1.js" async=""></script></div>
<p>&nbsp;</p>
<p>To get the complete story, be sure to read the full <strong><a href="http://newrelic.com/case-studies/veracode" target="_blank">Veracode case study</a>.</strong></p>
<p>&nbsp;</p>
<p><em><a href="http://www.shutterstock.com/pic-148231811.html" target="_blank">Cloud security image</a> courtesy of <a href="http://www.shutterstock.com" target="_blank">Shutterstock.com</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/25/veracode-app-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//blog.newrelic.com/wp-content/uploads/Hinshaw-photo.jpg"/>	</item>
		<item>
		<title>This Week in Modern Software: The People Behind the Technology That Wins Elections</title>
		<link>http://blog.newrelic.com/2016/01/22/twims-election-hiring-apps-cloud-giving/</link>
		<comments>http://blog.newrelic.com/2016/01/22/twims-election-hiring-apps-cloud-giving/#comments</comments>
		<pubDate>Fri, 22 Jan 2016 21:07:31 +0000</pubDate>
		<dc:creator><![CDATA[Kevin Casey]]></dc:creator>
				<category><![CDATA[Modern Software]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[careers]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[nonprofits]]></category>
		<category><![CDATA[TWiMS]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28624</guid>
		<description><![CDATA[Plus what it’s like to interview at the tech giants, who rules app sales, and more insights into the week’s top stories and trends. ]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-22165" src="http://blog.newrelic.com/wp-content/uploads/TWI_ModernSoftware_logo_v3.jpg" alt="This Week in Modern Software logo" width="300" height="150" />Welcome back to This Week in Modern Software, or <a href="https://blog.newrelic.com/tag/twims/" target="_blank">TWiMS</a>, our weekly breakdown and analysis of the need-to-know news, stories, and events of interest surrounding the software and analytics industries. This week, we begin with a look at the people pulling the technology strings behind this year’s presidential election campaigns.</p>
<p>&nbsp;</p>
<h4>TWiMS Top Story:<br />
<a href="http://www.wired.com/2016/01/silicon-valley-influence-2016-election/" target="_blank">Meet the 20 Tech Insiders Defining the 2016 Campaign</a><em>—Wired</em></h4>
<p><strong>What it’s about: </strong>Against a backdrop of an unpredictable 2016 presidential campaign, <em>Wired</em> examines the outsized role Silicon Valley now plays in the political process, with the November election likely to set a new bar for that influence. Since Barack Obama tapped the power of data and social media to turbocharge his campaign in 2008, just about everyone else in American politics has followed suit. “Since then, every politician has learned what every startup knows in its bones: You live and die by software,” writes Michael Hainey. Because of that and other factors, tech companies and their executives have become major forces in the political system. The <em>Wired</em> staff has ranked the 20 most powerful political players in the tech universe, with themes underpinning them all: data, software, communications reach, and more.</p>
<p><strong>Why you should care: </strong>If you think it’s just a list of Silicon Valley’s richest and most famous, think again: Yes, Facebook’s Mark Zuckerberg made the list (#2), as did Google’s Eric Schmidt (#1). But most of the power players here are far from household names, especially outside of the political arena. Rather, they’re techies who connected the dots between technology innovation and the political machine. Take 29-year-old Justin McConney, who comes in at #3. McConney didn’t found a unicorn startup. His modest claim to fame? He introduced Donald Trump to social media. Today, Trump counts more than 5 million Twitter followers alone (more than Hillary Clinton) and receives massive online attention for his, uh, colorful thoughts. Aidan King and David Frederick? Not exactly venture-backed software entrepreneurs, either. King works at a winery in Vermont, and Frederick works at Crate &amp; Barrel. But they’re on the list at #6 because they’re “two dudes who started a Reddit forum for [Bernie] Sanders in 2013” that helped the candidate nearly erase Hillary Clinton’s lead in the New Hampshire polls as well as raise significant donations and mobilize volunteers. The latter includes a group of Reddit readers who built Sanders a website promoting his positions, free of charge. The whole list is worth checking out, and underscores the literally democratic power of software and the Web.</p>
<p>&nbsp;</p>
<h4><a href="http://www.fastcompany.com/3055560/the-future-of-work/what-the-interview-process-is-like-at-google-apple-amazon-and-other-tech-" target="_blank">What the Interview Process Is Like at Google, Apple, Amazon, and Other Tech Companies</a>—<em>Fast Company</em></h4>
<p><strong><img class="alignright size-full wp-image-28637" src="http://blog.newrelic.com/wp-content/uploads/shutterstock_156375713.jpg" alt="job interview: this week in modern software" width="300" height="231" />What it’s about: </strong>This time of year the Web abounds with advice and lists on nabbing the best jobs in tech, from <a href="http://www.computerworld.com/article/3025440/data-analytics/why-data-scientist-is-this-years-hottest-job.html" target="_blank">data scientist</a> to software engineer to mobile developer. But what does it take to land one of these positions? Quite a lot, it turns out, in spite of the notorious war for top technical talent. Top tech employers, in particular, are not in a hurry to send out offer letters, according to a <em>Fast Company</em> piece based on data from <a href="https://www.glassdoor.com/index.htm" target="_blank">Glassdoor</a>, <a href="https://getvoip.com/" target="_blank">GetVoIP</a>, and others. “Unfortunately, even that level of demand isn’t making the time to hire a qualified candidate any shorter. For those about to embark on a search, expect it to take a long time,” writes Lydia Dishman. “In fact, the average interview process now takes 23 days, up from 13 days four years ago.” And that’s just the average: Software engineers have it the worst, with an average interview duration of 35 days in spite of their highly sought-after skills.</p>
<p><strong>Why you should care: </strong>If you’re on the market, expect to be there a little while. The hiring picture is still rosy, but <em>Fast Company’s</em> story reminds us that even modern software pros don’t necessarily have <em>carte blanche</em> with potential employers. To make it in, you need to navigate phone screens, coding tests, online assessments, and of course on-site interviews—if you get that far. All of these things take time<em>—</em>weeks in the case of many tech employers. Interestingly, there’s not necessarily a relationship between the length of the interview process and the candidate’s satisfaction with that process. While Uber and Yahoo had among the shortest interview duration (two weeks), according to a GetVoIP analysis of the software engineer hiring process at 13 major tech companies, they ranked relatively low in terms of their candidates’ perceived interview experience. Among other findings: Twitter ranked lowest in interview experience, with just 35% reporting a positive experience. Google’s well-publicized interview hurdles bore out in a measure of perceived interview difficulty: The company topped that list, followed by Uber, Amazon, Apple, and Facebook.<strong> </strong></p>
<p><strong>Further reading:</strong></p>
<ul>
<li><a href="http://www.informationweek.com/strategic-cio/10-best-tech-jobs-for-2016/d/d-id/1323978" target="_blank"><strong>10 Best Tech Jobs for 2016</strong></a><strong><em>—InformationWeek</em></strong></li>
<li><a href="http://www.computerworld.com/article/3025440/data-analytics/why-data-scientist-is-this-years-hottest-job.html" target="_blank"><strong>Why ‘Data Scientist’ Is This Year’s Hottest Job</strong></a><strong><em>—Computerworld</em></strong></li>
</ul>
<p><strong> </strong></p>
<h4><a href="http://www.nytimes.com/2016/01/21/technology/techs-frightful-5-will-dominate-digital-life-for-foreseeable-future.html" target="_blank">Tech’s ‘Frightful 5’ Will Dominate Digital Life for Foreseeable Future</a>—<em>The New York Times</em></h4>
<p><strong>What it’s about: </strong>Farhad Manjoo examines just how powerful technology’s Powers That Be—namely, Google, Facebook, Apple, Amazon, and a resurgent Microsoft—have been during the last decade and counting, and why no one’s likely to unseat any member of this “Frightful 5” in the near future. Identifying tech’s oligarchy doesn’t exactly require deep investigative reporting, but the concentration of power in these five companies is something many consumers probably don’t give much thought to, even as they fuel that very power. As Manjoo notes, these five companies have built their businesses in such a way that even other massively successful tech firms depend heavily on them—Netflix’s well-publicized use of Amazon’s cloud platform is a prime example. Even the tin-foil hat crowd is hard-pressed to unplug itself from the reach of all five companies. “These platforms are inescapable; you may opt out of one or two of them, but together, they form a gilded mesh blanketing the entire economy,” Manjoo writes.</p>
<p><strong>Why you should care: </strong>The real issue is that there doesn’t appear to be any looming threat to this group’s dominance. That’s noteworthy in an industry that treats the word “disruption” with religious reverence, and one with a long history of supposed superpowers (think IBM or HP) losing out to newer upstarts. So while Silicon Valley denizens might like to play the “Who’s losing” game —Manjoo describes the cocktail party game of picking which of the five will drop off the Mount Rushmore of tech first—it’s a silly exercise. The answer is: None of the above. Will that always be true? Not necessarily, as Manjoo and others point out. In a recent op-ed piece for <em>Re/code,</em> Accenture’s Managing Director for Digital Strategy Bruno Berthon lists his three myths of the digital economy, one of which is that “the online giants will continue to dominate the digital economy.” At the moment, though, that statement would appear equally safe on a list of “Facts About the Digital Economy”—or simply, “Facts About the Economy.”</p>
<p><strong>Further reading:</strong></p>
<ul>
<li><a href="http://recode.net/2016/01/19/three-myths-about-the-digital-economy/" target="_blank"><strong>3 Myths About the Digital Economy</strong></a><strong>—<em>Re/code</em></strong></li>
</ul>
<p>&nbsp;</p>
<h4><a href="http://venturebeat.com/2016/01/20/app-annie-2015-google-play-saw-100-more-downloads-than-the-ios-app-store-but-apple-generated-75-more-revenue/" target="_blank">App Annie 2015: Google Play Saw 100% More Downloads Than the iOS App Store, but Apple Generated 75% More Revenue</a>—<em>VentureBeat</em></h4>
<p><strong>What it’s about: </strong>Who’s king of the app economy, Google or Apple? It depends on how you keep score. By total downloads, Google Play is, frankly, kicking the Apple App Store’s you-know-what. Google delivered twice as many app downloads in 2015 as Apple, according to App Annie’s <a href="http://blog.appannie.com/app-annie-2015-retrospective/" target="_blank">latest annual report</a>, and the gap between the two appears to be growing. But iOS developers aren’t necessarily licking their wounds: <em>VentureBeat</em> notes that, in spite of Google Play beating out Apple in terms of app downloads, the latter—and developers in turn—earns far more revenue from its store, a whopping 75% more in 2015. As with total downloads, the dollar gap also appears to be growing, up 5% from the previous year. “Once again we have proof that Google Play is bigger than Apple’s App Store. And once again we’re learning that iOS developers, and thus Apple with its cut, tend to make more than Android developers and Google,” writes <em>VentureBeat’s</em> Emil Protalinksi.</p>
<p><strong><img class="alignleft size-full wp-image-28640" src="http://blog.newrelic.com/wp-content/uploads/app-downloads.jpg" alt="app downloads: this week in modern software" width="300" height="300" />Why you should care: </strong>In a sense, this is just a reaffirmation of what mobile developers already knew: Google’s Android offers the greatest global reach, thanks in large part to its much greater device market share. Apple’s iOS, on the other hand, is where the deeper pockets live: iPhone and iPad users have always been more inclined to spend money on their apps than Android users. Their geographies also differ. Android’s download growth is a global story, with emerging markets like Brazil, India, Indonesia, Turkey, and Mexico driving Google Play. Apple’s revenue growth was strongest in the United States, Japan, and China. (App Annie’s report expects China to <a href="http://techcrunch.com/2016/01/20/china-poised-to-overtake-u-s-japan-in-ios-revenue-within-the-next-year/" target="_blank">overtake the U.S. and Japan</a> in terms of iOS revenue during 2016.) While the reality is that, except in some very specific use cases, your apps need to be on both platforms, the business models on the two platforms could be very different. If global eyeballs—and advertising—are your goal, you might want to think Android first. But for direct app sales, iOS still rules.</p>
<p><strong>Further reading:</strong><strong> </strong></p>
<ul>
<li><a href="http://techcrunch.com/2016/01/20/china-poised-to-overtake-u-s-japan-in-ios-revenue-within-the-next-year/" target="_blank"><strong>China Poised to Overtake U.S. &amp; Japan in iOS Revenue Within the Next Year</strong></a><strong><em>—TechCrunch</em></strong></li>
<li><a href="http://blog.appannie.com/app-annie-2015-retrospective/#sthash.bUBytHqa.dpuf" target="_blank"><strong>App Annie 2015 Retrospective—Monetization Opens New Frontiers</strong></a><strong>—App Annie</strong></li>
</ul>
<p>&nbsp;</p>
<h4><a href="http://searchbusinessanalytics.techtarget.com/feature/Businesses-look-at-new-data-analytics-methods-for-2016" target="_blank">Businesses Look at New Analytics Methods for 2016</a>—<em>TechTarget</em></h4>
<p><strong>What it’s about: </strong>If it seems like your business has only scratched the surface of what’s possible with data analytics, you’re not alone. <em>TechTarget’</em>s <a href="https://twitter.com/EdBurnsTT" target="_blank">Ed Burns</a> looks at the 2016 goals of various organizations looking to harness more value from their data. The general theme: Companies that have established a good handle on basic analytics are now, in effect, getting greedy; they want more advanced methods for mining, analyzing, and acting on their information troves. At marketing and PR firm <a href="http://mbooth.com/" target="_blank">M Booth Associates</a>, for example, Chief Analytics Officer Jeff Bodzewski says he’s already leveraged audience analytics to get the right message to the right customer. This year, Bodzewski wants to ensure that message is delivered at precisely the right time and place, too, relying more heavily on geolocation and other mobile data.</p>
<p><strong>Why you should care: </strong>While terms like “analytics” might already seem established by tech industry standards, we’re still just getting started. The limits of what’s possible are continuously being tested and redrawn, and data-driven organizations have plenty of opportunities to get an edge on the competition. Natural-language processing and machine learning may still be in their relative infancy, for example, but that’s not stopping Nationwide Insurance Chief Data Officer Wes Hunt. Burns reports that Hunt’s team will invest more heavily in the cognitive computing methods for data analytics for automating and streamlining certain internal processes as well as elements of the customer experience. Hunt’s not giving up the details on <em>how</em> they’re doing that, of course, but suffice it to say your competition is already cooking up new ways to maximize their data in 2016 and beyond. Are you?</p>
<p>&nbsp;</p>
<h4><a href="http://www.eweek.com/cloud/microsoft-donating-1b-in-cloud-services-for-public-good.html" target="_blank">Microsoft Is Donating $1B in Cloud Services for ‘Public Good’</a>—<em>eWeek</em></h4>
<p><strong><img class="alignright size-full wp-image-28644" src="http://blog.newrelic.com/wp-content/uploads/shutterstock_172502846.jpg" alt="cloud ladder: this week in modern software" width="300" height="300" />What it’s about: </strong>Last week, CEO Satya Nadella snagged a personal invite from the First Lady to <a href="https://blog.newrelic.com/2016/01/15/twims-state-of-the-union-computer-science-threat-nest/">the State of the Union</a> in recognition of Microsoft’s efforts in technology education. This week, Redmond makes news with a $1 billion commitment of cloud computing resources to 70,000 nonprofits and NGOs as well as 900 university research facilities globally over the next three years. The initiative is part of Microsoft’s recently launched philanthropic division, <a href="https://blogs.microsoft.com/blog/2015/12/15/microsoft-deepens-longstanding-commitment-to-philanthropy-with-expanded-vision-new-organization/" target="_blank">Microsoft Philanthropies</a>, which intends to expand technology and information access in communities and regions where it is most lacking. This first major commitment under the Microsoft Philanthropies banner underlines the “public” in public cloud. As both Nadella and Microsoft President and Chief Legal Officer Brad Smith noted in separate blog posts, unlocking the full power of modern technology depends upon empowering widespread access and education, not just in tech centers, but in communities of all shapes and sizes around the world.</p>
<p><strong>Why you should care: </strong>The enormous potential of cloud computing—and especially public cloud resources—should not be limited to the financial and technical elite. Microsoft’s commitment is a welcome recognition of that, and one that will hopefully inspire similar initiatives among the big names in tech. Smith notes <a href="http://blogs.microsoft.com/blog/2016/01/19/how-were-putting-the-microsoft-cloud-to-work-for-the-public-good/" target="_blank">in his blog post</a> that in spite of the public cloud’s massive growth in recent years, “it is not yet benefitting everyone.” And everyone is indeed Microsoft’s goal: “Cloud computing has emerged as a vital resource for addressing the world’s problems,” Smith writes. “Cloud services can unlock the secrets held by data in ways that create new insights and lead to breakthroughs, not just for science and technology, but for addressing the full range of economic and social challenges and the delivery of better human services.” Hear, hear!</p>
<p><strong>Further reading:</strong></p>
<ul>
<li><strong><a href="https://blog.newrelic.com/2015/12/22/modern-software-podcast-episode-4/">How Today’s Nonprofits Leverage Technology</a>—Modern Software Podcast</strong></li>
<li><strong><a href="https://blog.newrelic.com/2015/12/22/technology-helps-nonprofits/">How Technology Helps Three Nonprofits Make the World a Better Place [Video]</a>—New Relic Blog</strong></li>
<li><strong><a href="https://blog.newrelic.com/2015/11/17/nonprofit-program-expansion/">We’re Expanding Our Nonprofit Program to the Entire New Relic Software Analytics Cloud [Video]</a>—New Relic Blog</strong></li>
</ul>
<p>&nbsp;</p>
<p><strong><em>Want to suggest something that we should cover in the next edition of TWiMS? Email us at <u><a href="mailto:blog@newrelic.com" target="_blank">blog@newrelic.com</a></u>.</em></strong></p>
<h3>Tune In to the Future</h3>
<p><a href="https://soundcloud.com/new-relic"><img class="alignright wp-image-25500 size-full" src="https://blog.newrelic.com/wp-content/uploads/Modern-Software-logo-300x150.png" alt="Modern Software Podcast logo" width="300" height="150" /></a>Can’t get enough modern software news and commentary? Be sure to check out our new <strong><a href="https://blog.newrelic.com/tag/the-modern-software-podcast/" target="_blank">Modern Software Podcast</a>.</strong> New Relic Editor-in-Chief Fredric Paul and guests discuss the most important things happening in the world of software analytics, cloud computing, application monitoring, development methodologies, programming languages, and more. <strong><a href="https://blog.newrelic.com/2016/01/21/modern-software-podcast-episode-5-venuenext/">Listen to episode 5</a> </strong>or <a href="https://itunes.apple.com/us/podcast/new-relic-modern-software/id1054149241" target="_blank">subscribe on iTunes</a>.</p>
<p>&nbsp;</p>
<p><em><a href="http://www.shutterstock.com/pic-156375713.html" target="_blank">Job interview</a>, <a href="http://www.shutterstock.com/pic-270544736.html" target="_blank">apps</a>, and <a href="http://www.shutterstock.com/pic-172502846.html" target="_blank">cloud ladder</a> images courtesy of <a href="http://www.shutterstock.com/" target="_blank">Shutterstock.com</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/22/twims-election-hiring-apps-cloud-giving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//blog.newrelic.com/wp-content/uploads/Kevin-Casey.jpg"/>	</item>
		<item>
		<title>Modern Software Podcast: Analytics Help VenueNext Gear Up For the Big Game</title>
		<link>http://blog.newrelic.com/2016/01/21/modern-software-podcast-episode-5-venuenext/</link>
		<comments>http://blog.newrelic.com/2016/01/21/modern-software-podcast-episode-5-venuenext/#comments</comments>
		<pubDate>Thu, 21 Jan 2016 22:23:04 +0000</pubDate>
		<dc:creator><![CDATA[Fredric Paul]]></dc:creator>
				<category><![CDATA[Modern Software]]></category>
		<category><![CDATA[New Relic News]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[New Relic Synthetics]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[The Modern Software Podcast]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28572</guid>
		<description><![CDATA[The Modern Software Podcast welcomes VenueNext founder John Paul to discuss mobile apps for the big game, plus discussion of tech implications of Obama's SOTU address.]]></description>
				<content:encoded><![CDATA[<p>As the New Year takes hold, football fans are gearing up for the big game on Sunday, February 7. This year, the biggest bowl of them all is being held in New Relic’s backyard, at <a href="https://blog.newrelic.com/2015/05/28/nerd-bowl-velocity-gallery/">Levi’s Stadium</a> in Santa Clara, Calif., home of the San Francisco 49ers, and also New Relic customer <a href="http://www.venuenext.com/" target="_blank">VenueNext</a>, which powers the <a href="http://www.levisstadium.com/stadium-info/stadium-app/" target="_blank">Levi’s Stadium mobile app</a> as well as other apps tied to the big game.</p>
<div id="attachment_17017" style="width: 210px" class="wp-caption alignright"><img class="wp-image-17017" src="http://blog.newrelic.com/wp-content/uploads/john-paul-0445e15e6f2da2bc1ac69d872c794e94.jpg" alt="John Paul of VenueNext" width="200" height="206" /><p class="wp-caption-text">John Paul of VenueNext</p></div>
<p>So we were thrilled to have <a href="https://blog.newrelic.com/2014/10/01/fs14-johnpaul-venuenext/">VenueNext founder and CEO John Paul</a> visit the <a href="https://blog.newrelic.com/tag/the-modern-software-podcast/">New Relic Modern Software Podcast</a> to discuss how his company is using analytics to prep for the intense spotlight. As John says, “The whole world is watching” and you have to be at the top of your game. He also tells us about VenueNext’s impressive growth into even more high-profile venues since his <a href="https://blog.newrelic.com/2014/11/21/futurestack14-gamechangers/">keynote 15 months ago at FutureStack14</a>. He even shares secrets on how anyone can use the apps to check out the celebrities in attendance at the game. [timecode <a href="https://soundcloud.com/new-relic/new-relic-modern-software-podcast-venuenext-preps-mobile-app-for-the-big-game#t=19:54" target="_blank">19:54</a>]</p>
<p>And, of course, the regular crew—co-host <a href="https://blog.newrelic.com/author/toriwieldt/" target="_blank">Tori Wieldt</a>, New Relic Senior VP of Marketing <a href="https://blog.newrelic.com/author/jay-fry/" target="_blank">Jay Fry</a>, and our VP of Customer Analytics <a href="https://blog.newrelic.com/author/toddetchieson/" target="_blank">Todd Etchieson</a>—dissect recent news and trends ripped from the pages of <a href="https://blog.newrelic.com/tag/twims/">This Week in Modern Software (TWiMS</a>). In this episode, we examine the prominent <a href="https://blog.newrelic.com/2016/01/15/twims-state-of-the-union-computer-science-threat-nest/">role tech played in President Obama’s Statue of the Union address</a> and look at a controversial new big data application now being tested by law enforcement. [<a href="https://soundcloud.com/new-relic/new-relic-modern-software-podcast-venuenext-preps-mobile-app-for-the-big-game#t=1:51" target="_blank">1:51</a>]</p>
<p>All this and much more in the New Relic Modern Software Podcast … because life’s too short for bad software.</p>
<p style="line-height: 75%;"><span style="font-size: x-small;"><em>New Relic was the host of the attached forum presented in the embedded podcast. However, the content and views expressed are those of the participants and do not necessarily reflect the views of New Relic. By hosting the podcast, New Relic does not necessarily adopt, guarantee, approve or endorse the information, views or products referenced therein.</em></span></p>
<p><iframe src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/243130265&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false" width="100%" height="166" frameborder="no" scrolling="no"></iframe></p>
<h3></h3>
<h3>Don’t Miss The New Stack @ Scale</h3>
<p>Finally, if you enjoyed The Modern Software Podcast, be sure to also listen to <strong>The New Stack @ Scale</strong>, produced by The New Stack and sponsored by New Relic. Co-hosted by The New Stack founder and Editor in Chief Alex Williams and myself, The New Stack @ Scale podcast is intended to address developing and managing dynamic services and systems in the new world of scaled-out architectures. You can listen to the <a href="https://blog.newrelic.com/2015/12/17/security-new-stack-at-scale-podcast/">latest episode here</a>.</p>
<p>&nbsp;</p>
<p><em>Note: The intro music for the Modern Software Podcast is courtesy of <a href="http://audionautix.com/index.php" target="_blank">Audionautix</a>. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/21/modern-software-podcast-episode-5-venuenext/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//www.gravatar.com/avatar.php?gravatar_id=1c24bbf022a9a9f3d6cd854cdd04b23e&amp;size=40"/>	</item>
		<item>
		<title>How Netflix Helps Developers and Compliance Auditors Get Along—From FutureStack15 [Video]</title>
		<link>http://blog.newrelic.com/2016/01/21/netflix-futurestack-fs15-video/</link>
		<comments>http://blog.newrelic.com/2016/01/21/netflix-futurestack-fs15-video/#comments</comments>
		<pubDate>Thu, 21 Jan 2016 18:33:37 +0000</pubDate>
		<dc:creator><![CDATA[Fredric Paul]]></dc:creator>
				<category><![CDATA[New Relic News]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[FutureStack]]></category>
		<category><![CDATA[Netflix]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28553</guid>
		<description><![CDATA[Watch Jason Chan share how Netflix moved its PCI and SOX environments to the cloud to satisfy both auditors and developers.]]></description>
				<content:encoded><![CDATA[<p>To some observers, security just doesn’t go well with the developer mindset. Things developers like, such as microservices, NoSQL, cloud computing, agile development, DevOps—you know, the “fun stuff”—is seen as antithetical to keeping the security and compliance auditors happy.</p>
<p>But <a href="http://futurestack.io/speakers/jason-chan" target="_blank">Jason Chan</a>, an engineering director at <a href="https://www.netflix.com/" target="_blank">Netflix</a> who is responsible for security there, showed <a href="http://futurestack.io/" target="_blank">FutureStack15</a> attendees that it doesn’t have to be that way. In his presentation on “Splitting the Check on Compliance and Security,” he shared how Netflix moved its PCI and SOX environments to the cloud to satisfy both auditors <em>and</em> developers “without ripping each others’ hair out.”</p>
<p><img class="aligncenter size-full wp-image-28561" src="http://blog.newrelic.com/wp-content/uploads/jason-chan.jpg" alt="jason chan of netflix" width="700" height="467" /></p>
<p>For developers, Jason said, 2015 was “like a kid in a candy store.” But for auditors, every step in 2015 was “fraught with peril.” The groups have different incentives and perspectives, he explained, and they want and need different things.</p>
<p><img class="aligncenter wp-image-28555" src="http://blog.newrelic.com/wp-content/uploads/Screen-Shot-2016-01-20-at-10.58.20-AM.jpg" alt="netflix presentation chart" width="700" height="369" /></p>
<p>DevOps, he said, can help resolve this disconnect by changing the mindset of developers to take responsibility for running the code they write. Once that happens, developers who find they need to “support” the system are more in alignment with auditors who need to “verify” the system.</p>
<p>The key to devs and auditors becoming “best friends,” Jason said, is to replace the check-box approach to compliance with a pillar-based approach where “regardless of any particular regulatory requirements, I’m just going to design things around these core operational principles … and as a result of that I’m going to be able to meet compliance requirements.”</p>
<p>Jason took attendees on a deep dive into each of the three pillars of this approach:</p>
<ol>
<li>Traceability in development</li>
<li>Continuous security visibility</li>
<li>Compartmentalization</li>
</ol>
<p>He also explained how Spinnaker, a newly open sourced system Netflix built to support continuous deployment in the company’s AWS cloud environment, helps the team deal with each one.</p>
<p>To put it all together, Jason advised attendees to limit investments in approaches that meet narrow regulatory needs, and instead embrace core security and design principles and focus on tools and techniques that serve multiple audiences—developers and auditors, for example.</p>
<p><iframe width="640" height="360" src="https://www.youtube.com/embed/Ay90ljATRBY?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>You can see all available FutureStack15 presentation videos, including the keynotes, at our <a href="https://www.youtube.com/watch?v=Tk0gGDsmUtQ&amp;list=PLmhYj7Jl81JGOI7BN0QNsol3l-9oQZ7D7" target="_blank">FutureStack15 YouTube playlist</a>. We’ll be adding even more in the coming days and weeks, so subscribe now!</p>
<p>&nbsp;</p>
<p><em><a href="http://www.shutterstock.com/pic-111964880.html" target="_blank">Film reel image</a> courtesy of <a href="http://www.shutterstock.com" target="_blank">Shutterstock.com</a>. Jason Chan photo © Andrew Weeks Photography. </em></p>
<p style="line-height: 75%;"><span style="font-size: small;"><em>Disclaimer: The views expressed in these presentations are those of the respective speakers and do not necessarily reflect the views of New Relic. By providing access to these presentations, New Relic does not adopt, guarantee, approve or endorse the information, views or products discussed therein. The respective presentation speakers have given permission to New Relic to post the content they presented onstage.</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/21/netflix-futurestack-fs15-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//www.gravatar.com/avatar.php?gravatar_id=1c24bbf022a9a9f3d6cd854cdd04b23e&amp;size=40"/>	</item>
		<item>
		<title>A Data Nerd’s Guide to Email Marketing</title>
		<link>http://blog.newrelic.com/2016/01/20/data-nerd-guide-email-marketing/</link>
		<comments>http://blog.newrelic.com/2016/01/20/data-nerd-guide-email-marketing/#comments</comments>
		<pubDate>Wed, 20 Jan 2016 17:56:11 +0000</pubDate>
		<dc:creator><![CDATA[Asami Novak]]></dc:creator>
				<category><![CDATA[New Relic News]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[Marketo]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28537</guid>
		<description><![CDATA[We sit down with our own Wing Sung, New Relic’s senior email marketing operations specialist, to chat about modern marketing best practices and what it takes to run a successful email marketing operation.]]></description>
				<content:encoded><![CDATA[<p>Sending an email may not sound like rocket science, but depending on what you’re sending and why, it can sometimes require some data nerdery.</p>
<p><img class="alignright size-full wp-image-28541" src="http://blog.newrelic.com/wp-content/uploads/Wing-Sung.jpg" alt="Wing Sung" width="220" height="220" />Just ask Wing Sung, New Relic’s senior email marketing operations specialist. As a marketing automation guru with years of marketing operations and demand generation experience, Wing knows all about the ins and outs of email marketing, especially when it’s done using the popular marketing automation platform <a href="http://www.marketo.com/" target="_blank">Marketo</a>. From email execution and deliverability reporting to nurturing campaigns and A/B testing, Wing handles most of the external communications going out to our customers, and together with the rest of the <a href="https://blog.newrelic.com/2015/09/11/mops-data-analyst/">Marketing Operations team</a>, she’s one of our key resources for marketing technology guidance.</p>
<p>We recently sat down with Wing to chat about modern marketing best practices and what it takes to run a successful email marketing operation. Here’s what we learned.</p>
<p><strong>5 email marketing tips for the modern marketer</strong></p>
<ol>
<li><strong><em>Set communication limits</em>. </strong>At New Relic, we’ve established a rule to send no more than two emails a day (or five emails in one week) to a single contact in our system. Of course, this can be easier said than done when different people from different teams are sending out emails to different subsets of people. Marketo makes it easy to prevent over-communication by allowing you to set a <a href="https://docs.marketo.com/display/public/DOCS/Enable+Communication+Limits" target="_blank">communication limit</a> on your outbound emails—so take advantage of it!</li>
<li><strong><em>Master the art of the subject line.</em></strong> As a general rule, “your subject line should be no more than 12 words long,” says Wing. “When people open emails on a smaller mobile device, they likely won’t read past the first five or six words, so keep it short and keep it relevant.” Before sending anything out, Wing uses <a href="https://litmus.com/" target="_blank">Litmus</a> to see how an email will render in different email clients to make sure nothing funky is going on.</li>
</ol>
<p><img class="aligncenter wp-image-28542" src="http://blog.newrelic.com/wp-content/uploads/email-on-iphone.jpg" alt="email on iphone" width="300" height="564" /></p>
<ol start="3">
<li><strong><em>Avoid sounding spammy.</em></strong> By now, a lot of us know what this sounds like. The caps lock-heavy sentences. Words like “guaranteed” and “free.” Says Wing, “I get so many emails from companies advertising a FREE ebook or FREE webinar, and it’s really kind of meaningless when you think about it—how often do you end up paying for a webinar? They’re all free.” If you want to avoid the spam folder, don’t sound like an infomercial.</li>
<li><strong><em>Be mindful of your audience. </em></strong>This tip not only ties back to the importance of the subject line, but also has to do with more logistical aspects of email marketing, like the timing of when you send it out to people. For example, when sending emails to an international audience, you should be aware of different time zones and make sure they receive it when they’re likely online, not at 4 a.m., advises Wing. She uses Marketo’s segmentation feature to define our audience by geographic location and send emails at the optimal time.</li>
</ol>
<div id="attachment_28544" style="width: 610px" class="wp-caption aligncenter"><img class="wp-image-28544" src="http://blog.newrelic.com/wp-content/uploads/email-marketing-pie-chart.jpg" alt="email marketing pie chart" width="600" height="285" /><p class="wp-caption-text"><em>This chart is populated with sample data. It is not representative of actual numbers.</em></p></div>
<ol start="5">
<li><strong><em>Embrace A/B testing.</em></strong> The best way to get better at anything? Keep experimenting and see what works and what doesn’t. For example, a recent test Wing conducted was to find out whether or not sending a follow-up reminder email after the initial webinar invite increased registration. The result? Yes, it does. Sending a follow-up email increased registration by more than 1.5x. “We’ll also <a href="http://www.marketo.com/software/marketing-automation/email-marketing/ab-testing/" target="_blank">A/B test</a> call-to-action buttons and subject lines to see which copy generates better results,” says Wing. “There should always be room for more A/B testing when it comes to email marketing.”</li>
</ol>
<div id="attachment_28545" style="width: 508px" class="wp-caption aligncenter"><img class="size-full wp-image-28545" src="http://blog.newrelic.com/wp-content/uploads/webinar-registrations-pie-chart.jpg" alt="webinar registrations pie chart" width="498" height="331" /><p class="wp-caption-text"><em>This chart is populated with sample data. It is not representative of actual numbers.</em></p></div>
<p>Looking for more marketing automation tips? Wing recommends following Marketo master <a href="http://www.marketingrockstarguides.com/about-josh-hill/" target="_blank">Josh Hill</a>, principal consultant at Marketing Rockstar Guides. For tips on how to <a href="http://newrelic.com/marketo" target="_blank">use Marketo with New Relic Insights</a>, read this <a href="https://blog.newrelic.com/2014/06/25/marketo/">blog post</a> to learn how you can build real-time dashboards and analytics that show exactly how your marketing programs are doing.</p>
<p>&nbsp;</p>
<p><em><a href="http://www.shutterstock.com/pic-295130603.html" target="_blank">Background image</a> courtesy of <a href="http://www.shutterstock.com" target="_blank">Shutterstock.com</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/20/data-nerd-guide-email-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//blog.newrelic.com/wp-content/uploads/Asami-Novak.jpeg"/>	</item>
		<item>
		<title>Blue Medora Plugins Extend New Relic’s Reach to the Data Center Infrastructure Stack</title>
		<link>http://blog.newrelic.com/2016/01/19/blue-medora-plugins/</link>
		<comments>http://blog.newrelic.com/2016/01/19/blue-medora-plugins/#comments</comments>
		<pubDate>Tue, 19 Jan 2016 21:21:48 +0000</pubDate>
		<dc:creator><![CDATA[Nathan Owen]]></dc:creator>
				<category><![CDATA[New Relic Products]]></category>
		<category><![CDATA[Blue Medora]]></category>
		<category><![CDATA[New Relic Plugins]]></category>
		<category><![CDATA[partners]]></category>

		<guid isPermaLink="false">http://blog.newrelic.com/?p=28517</guid>
		<description><![CDATA[The initial plugins extend New Relic to storage, server, network, and converged infrastructures in both on-premise data centers and private/hybrid clouds.]]></description>
				<content:encoded><![CDATA[<p><em>Guest author Nathan Owen is CEO of </em><a href="http://www.bluemedora.com/" target="_blank"><em>Blue Medora</em></a><em>, which creates </em><em>software designed to extend the visibility of cloud system management and application performance management solutions.</em></p>
<p><img class="alignright size-full wp-image-28531" src="http://blog.newrelic.com/wp-content/uploads/blue-medora-logo1.jpg" alt="blue medora logo" width="300" height="56" />We have a saying here at Blue Medora that exemplifies our singular focus on creating best-of-breed plugins<strong>: </strong>“The plugin <em>is</em> the platform.”</p>
<p>Creating highly differentiated, value-added plugins is all we do and all we’ve ever done over the nine years of Blue Medora’s existence. Knowing that, you shouldn’t be surprised that we are extremely passionate about building world-class plugins.</p>
<p><a href="http://www.bluemedora.com/products/new-relic-plugins/" target="_blank">Developing plugins for New Relic</a> was a no-brainer for Blue Medora given our deep admiration for the New Relic platform, the company’s partner-friendly open ecosystem, and the massive increase in adoption of New Relic we’ve seen within our existing customer base during the past couple of years.</p>
<p>Blue Medora recently published the first 8 of a planned family of 35 New Relic plugins on our 2016 roadmap, as a public beta. These are visible today on <a href="http://www.bluemedora.com/products/new-relic-plugins/" target="_blank">Blue Medora</a>’s website and in <a href="https://rpm.newrelic.com/accounts/890835/plugins/directory" target="_blank">New Relic’s Plugin Central</a>:</p>
<div id="attachment_28519" style="width: 710px" class="wp-caption aligncenter"><img class="wp-image-28519 size-full" src="http://blog.newrelic.com/wp-content/uploads/Plugin_Central_-_New_Relic.jpg" alt="Blue Medora plugin central screenshot" width="700" height="219" /><p class="wp-caption-text"><em>Blue Medora’s first eight New Relic plugins shown in Plugin Central</em></p></div>
<h3>Blue Medora’s First 8 Plugins</h3>
<p>Our initial set of plugins are focused on extending the reach of New Relic to a common set of storage, compute (server), network, and converged infrastructure technologies we see in both traditional on-premise data centers as well as in private/hybrid cloud infrastructures.</p>
<p><div id="attachment_28524" style="width: 710px" class="wp-caption aligncenter"><a href="http://blog.newrelic.com/wp-content/uploads/EMC-VNX-Block-System-Overview1.png"><img class="wp-image-28524" src="http://blog.newrelic.com/wp-content/uploads/EMC-VNX-Block-System-Overview1.png" alt="Blue Medora EMC VNX Block System Overview" width="700" height="491" /></a><p class="wp-caption-text"><em>Exposing key <a href="https://en.wikipedia.org/wiki/Storage_area_network" target="_blank">SAN</a> metrics like <a href="https://en.wikipedia.org/wiki/IOPS" target="_blank">IOPS</a>, throughput, and capacity</em>. [click to enlarge]</p></div>Our initial release of New Relic plugins includes:<strong><br />
</strong></p>
<p><strong>Converged Infrastructure</strong></p>
<ul>
<li><a href="http://newrelic.com/plugins/blue-medora/431" target="_blank">Blue Medora FlexPod Plugin for New Relic</a></li>
<li><a href="http://newrelic.com/plugins/blue-medora/432" target="_blank">Blue Medora VCE Vblock Plugin for New Relic</a></li>
</ul>
<p><strong>Storage</strong></p>
<ul>
<li><a href="http://newrelic.com/plugins/blue-medora/426" target="_blank">Blue Medora EMC VNX Block Plugin for New Relic</a></li>
<li><a href="http://newrelic.com/plugins/blue-medora/425" target="_blank">Blue Medora EMC VNX File Plugin for New Relic</a></li>
<li><a href="http://newrelic.com/plugins/blue-medora/430" target="_blank">Blue Medora NetApp Storage Plugin for New Relic</a></li>
</ul>
<p><strong>Compute (Servers)</strong></p>
<ul>
<li><a href="http://newrelic.com/plugins/blue-medora/427" target="_blank">Blue Medora Cisco UCS Plugin for New Relic</a></li>
<li><a href="http://newrelic.com/plugins/blue-medora/429" target="_blank">Blue Medora Dell Compute Plugin for New Relic</a></li>
</ul>
<p><strong>Network Fabric</strong></p>
<ul>
<li><a href="http://newrelic.com/plugins/blue-medora/428" target="_blank">Blue Medora Cisco Nexus Plugin for New Relic</a></li>
</ul>
<p>These first eight <a href="http://www.bluemedora.com/products/new-relic-plugins/" target="_blank">Blue Medora Plugins for New Relic</a> are available today as a public beta, directly from New Relic. We encourage users to check them out and provide feedback via Plugin Central’s review system.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.newrelic.com/2016/01/19/blue-medora-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="//blog.newrelic.com/wp-content/uploads/Nathan-Owen.jpg"/>	</item>
	</channel>
</rss>
