Skip to content

Instantly share code, notes, and snippets.

@srijs
Last active August 29, 2015 14:02
Show Gist options
  • Save srijs/6056f1fc93f20d20e586 to your computer and use it in GitHub Desktop.
Save srijs/6056f1fc93f20d20e586 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.38.0 (20140413.2041)
-->
<!-- Title: /usr/local/bin/docker; 157.2 MB Pages: 1 -->
<svg width="100%" height="100%"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<script type="text/ecmascript"><![CDATA[
// SVGPan
// http://www.cyberz.org/blog/2009/12/08/svgpan-a-javascript-svg-panzoomdrag-library/
// Local modification: if(true || ...) below to force panning, never moving.
// Local modification: add clamping to fix bug in handleMouseWheel.
/**
* SVGPan library 1.2
* ====================
*
* Given an unique existing element with id "viewport", including the
* the library into any SVG adds the following capabilities:
*
* - Mouse panning
* - Mouse zooming (using the wheel)
* - Object dargging
*
* Known issues:
*
* - Zooming (while panning) on Safari has still some issues
*
* Releases:
*
* 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui
* Fixed a bug with browser mouse handler interaction
*
* 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui
* Updated the zoom code to support the mouse wheel on Safari/Chrome
*
* 1.0, Andrea Leofreddi
* First release
*
* This code is licensed under the following BSD license:
*
* Copyright 2009-2010 Andrea Leofreddi <a.leofreddi@itcharm.com>. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Andrea Leofreddi.
*/
var root = document.documentElement;
var state = 'none', stateTarget, stateOrigin, stateTf;
setupHandlers(root);
/**
* Register handlers
*/
function setupHandlers(root){
setAttributes(root, {
"onmouseup" : "add(evt)",
"onmousedown" : "handleMouseDown(evt)",
"onmousemove" : "handleMouseMove(evt)",
"onmouseup" : "handleMouseUp(evt)",
//"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element
});
if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari
else
window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
var g = svgDoc.getElementById("svg");
g.width = "100%";
g.height = "100%";
}
/**
* Instance an SVGPoint object with given event coordinates.
*/
function getEventPoint(evt) {
var p = root.createSVGPoint();
p.x = evt.clientX;
p.y = evt.clientY;
return p;
}
/**
* Sets the current transform matrix of an element.
*/
function setCTM(element, matrix) {
var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
element.setAttribute("transform", s);
}
/**
* Dumps a matrix to a string (useful for debug).
*/
function dumpMatrix(matrix) {
var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]";
return s;
}
/**
* Sets attributes of an element.
*/
function setAttributes(element, attributes){
for (i in attributes)
element.setAttributeNS(null, i, attributes[i]);
}
/**
* Handle mouse move event.
*/
function handleMouseWheel(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var delta;
if(evt.wheelDelta)
delta = evt.wheelDelta / 3600; // Chrome/Safari
else
delta = evt.detail / -90; // Mozilla
var z = 1 + delta; // Zoom factor: 0.9/1.1
// Clamp to reasonable values.
// The 0.1 check is important because
// a very large scroll can turn into a
// negative z, which rotates the image 180 degrees.
if(z < 0.1)
z = 0.1;
if(z > 10.0)
z = 10.0;
var g = svgDoc.getElementById("viewport");
var p = getEventPoint(evt);
p = p.matrixTransform(g.getCTM().inverse());
// Compute new scale matrix in current mouse position
var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y);
setCTM(g, g.getCTM().multiply(k));
stateTf = stateTf.multiply(k.inverse());
}
/**
* Handle mouse move event.
*/
function handleMouseMove(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var g = svgDoc.getElementById("viewport");
if(state == 'pan') {
// Pan mode
var p = getEventPoint(evt).matrixTransform(stateTf);
setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y));
} else if(state == 'move') {
// Move mode
var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse());
setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM()));
stateOrigin = p;
}
}
/**
* Handle click event.
*/
function handleMouseDown(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var g = svgDoc.getElementById("viewport");
if(true || evt.target.tagName == "svg") {
// Pan mode
state = 'pan';
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
} else {
// Move mode
state = 'move';
stateTarget = evt.target;
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
}
}
/**
* Handle mouse button release event.
*/
function handleMouseUp(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
if(state == 'pan' || state == 'move') {
// Quit pan mode
state = '';
}
}
]]></script>
<g id="viewport" transform="translate(0,0)">
<g id="viewport" class="graph" transform="scale(1 1) rotate(0) translate(4 2315)">
<title>/usr/local/bin/docker; 157.2 MB</title>
<polygon fill="white" stroke="none" points="-4,4 -4,-2315 2635,-2315 2635,4 -4,4"/>
<!-- Legend -->
<g id="node1" class="node"><title>Legend</title>
<text text-anchor="start" x="1739.5" y="-2287.8" font-family="Times,serif" font-size="24.00">/usr/local/bin/docker</text>
<text text-anchor="start" x="1739.5" y="-2261.8" font-family="Times,serif" font-size="24.00">Total MB: 157.2</text>
<text text-anchor="start" x="1739.5" y="-2235.8" font-family="Times,serif" font-size="24.00">Focusing on: 157.2</text>
<text text-anchor="start" x="1739.5" y="-2209.8" font-family="Times,serif" font-size="24.00">Dropped nodes with &lt;= 0.8 abs(MB)</text>
<text text-anchor="start" x="1739.5" y="-2183.8" font-family="Times,serif" font-size="24.00">Dropped edges with &lt;= 0.2 MB</text>
</g>
<!-- N1 -->
<g id="node2" class="node"><title>N1</title>
<polygon fill="none" stroke="black" points="2195.5,-2259.5 2121.5,-2259.5 2121.5,-2224.5 2195.5,-2224.5 2195.5,-2259.5"/>
<text text-anchor="middle" x="2158.5" y="-2249.1" font-family="Times,serif" font-size="8.00">runtime.gosched0</text>
<text text-anchor="end" x="2187.5" y="-2240.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2187.5" y="-2231.1" font-family="Times,serif" font-size="8.00">of 156.7 (99.7%)</text>
</g>
<!-- N2 -->
<g id="node3" class="node"><title>N2</title>
<polygon fill="none" stroke="black" points="1943,-2122 1856,-2122 1856,-2087 1943,-2087 1943,-2122"/>
<text text-anchor="middle" x="1899.5" y="-2111.6" font-family="Times,serif" font-size="8.00">net/http.(*conn).serve</text>
<text text-anchor="end" x="1935" y="-2102.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1935" y="-2093.6" font-family="Times,serif" font-size="8.00">of 106.4 (67.7%)</text>
</g>
<!-- N1&#45;&gt;N2 -->
<g id="edge70" class="edge"><title>N1&#45;&gt;N2</title>
<path fill="none" stroke="black" stroke-width="2" d="M2151.23,-2224.36C2143.67,-2208.93 2130.43,-2186.39 2112.5,-2173 2065.4,-2137.83 1999.43,-2120.64 1953.43,-2112.47"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1953.79,-2108.99 1943.35,-2110.77 1952.63,-2115.89 1953.79,-2108.99"/>
<text text-anchor="middle" x="2098.5" y="-2143.8" font-family="Times,serif" font-size="14.00">106.4</text>
</g>
<!-- N16 -->
<g id="node17" class="node"><title>N16</title>
<polygon fill="none" stroke="black" points="2235,-2069 2082,-2069 2082,-2034 2235,-2034 2235,-2069"/>
<text text-anchor="middle" x="2158.5" y="-2058.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/utils.func·001</text>
<text text-anchor="end" x="2227" y="-2049.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2227" y="-2040.6" font-family="Times,serif" font-size="8.00">of 35.3 (22.5%)</text>
</g>
<!-- N1&#45;&gt;N16 -->
<g id="edge65" class="edge"><title>N1&#45;&gt;N16</title>
<path fill="none" stroke="black" stroke-width="1.34788" d="M2158.5,-2224.27C2158.5,-2191.57 2158.5,-2118.94 2158.5,-2079.4"/>
<polygon fill="black" stroke="black" stroke-width="1.34788" points="2162,-2079.19 2158.5,-2069.19 2155,-2079.19 2162,-2079.19"/>
<text text-anchor="middle" x="2171" y="-2143.8" font-family="Times,serif" font-size="14.00">35.3</text>
</g>
<!-- N50 -->
<g id="node51" class="node"><title>N50</title>
<polygon fill="none" stroke="black" points="2361,-2122 2190,-2122 2190,-2087 2361,-2087 2361,-2122"/>
<text text-anchor="middle" x="2275.5" y="-2111.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.func·008</text>
<text text-anchor="end" x="2353" y="-2102.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2353" y="-2093.6" font-family="Times,serif" font-size="8.00">of 7.0 (4.5%)</text>
</g>
<!-- N1&#45;&gt;N50 -->
<g id="edge40" class="edge"><title>N1&#45;&gt;N50</title>
<path fill="none" stroke="black" d="M2172.85,-2224.39C2193.28,-2200.72 2230.91,-2157.14 2254.49,-2129.83"/>
<polygon fill="black" stroke="black" points="2257.15,-2132.11 2261.04,-2122.25 2251.85,-2127.53 2257.15,-2132.11"/>
<text text-anchor="middle" x="2252.5" y="-2143.8" font-family="Times,serif" font-size="14.00">7.0</text>
</g>
<!-- N4 -->
<g id="node5" class="node"><title>N4</title>
<polygon fill="none" stroke="black" points="1909.5,-2016 1781.5,-2016 1781.5,-1981 1909.5,-1981 1909.5,-2016"/>
<text text-anchor="middle" x="1845.5" y="-2005.6" font-family="Times,serif" font-size="8.00">net/http.serverHandler.ServeHTTP</text>
<text text-anchor="end" x="1901.5" y="-1996.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1901.5" y="-1987.6" font-family="Times,serif" font-size="8.00">of 103.4 (65.8%)</text>
</g>
<!-- N2&#45;&gt;N4 -->
<g id="edge58" class="edge"><title>N2&#45;&gt;N4</title>
<path fill="none" stroke="black" stroke-width="2" d="M1890.82,-2086.79C1882.2,-2070.19 1868.86,-2044.5 1858.89,-2025.28"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1861.87,-2023.43 1854.15,-2016.17 1855.66,-2026.66 1861.87,-2023.43"/>
<text text-anchor="middle" x="1896.5" y="-2047.8" font-family="Times,serif" font-size="14.00">103.4</text>
</g>
<!-- N3 -->
<g id="node4" class="node"><title>N3</title>
<polygon fill="none" stroke="black" points="1808.5,-1930 1642.5,-1930 1642.5,-1895 1808.5,-1895 1808.5,-1930"/>
<text text-anchor="middle" x="1725.5" y="-1919.6" font-family="Times,serif" font-size="8.00">github.com/gorilla/mux.(*Router).ServeHTTP</text>
<text text-anchor="end" x="1800.5" y="-1910.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1800.5" y="-1901.6" font-family="Times,serif" font-size="8.00">of 103.4 (65.8%)</text>
</g>
<!-- N6 -->
<g id="node7" class="node"><title>N6</title>
<polygon fill="none" stroke="black" points="1758,-1838 1633,-1838 1633,-1803 1758,-1803 1758,-1838"/>
<text text-anchor="middle" x="1695.5" y="-1827.6" font-family="Times,serif" font-size="8.00">net/http.HandlerFunc.ServeHTTP</text>
<text text-anchor="end" x="1750" y="-1818.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1750" y="-1809.6" font-family="Times,serif" font-size="8.00">of 102.9 (65.4%)</text>
</g>
<!-- N3&#45;&gt;N6 -->
<g id="edge46" class="edge"><title>N3&#45;&gt;N6</title>
<path fill="none" stroke="black" stroke-width="2" d="M1720,-1894.99C1715.63,-1881.88 1709.43,-1863.29 1704.36,-1848.08"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1707.55,-1846.59 1701.07,-1838.21 1700.91,-1848.8 1707.55,-1846.59"/>
<text text-anchor="middle" x="1729.5" y="-1865.8" font-family="Times,serif" font-size="14.00">102.9</text>
</g>
<!-- N4&#45;&gt;N3 -->
<g id="edge38" class="edge"><title>N4&#45;&gt;N3</title>
<path fill="none" stroke="black" stroke-width="2" d="M1821.79,-1980.9C1803.38,-1968.02 1777.68,-1950.02 1757.45,-1935.87"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1759.36,-1932.93 1749.16,-1930.06 1755.34,-1938.66 1759.36,-1932.93"/>
<text text-anchor="middle" x="1809.5" y="-1951.8" font-family="Times,serif" font-size="14.00">103.4</text>
</g>
<!-- N5 -->
<g id="node6" class="node"><title>N5</title>
<polygon fill="none" stroke="black" points="1773,-1746 1602,-1746 1602,-1711 1773,-1711 1773,-1746"/>
<text text-anchor="middle" x="1687.5" y="-1735.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.func·004</text>
<text text-anchor="end" x="1765" y="-1726.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1765" y="-1717.6" font-family="Times,serif" font-size="8.00">of 102.9 (65.4%)</text>
</g>
<!-- N10 -->
<g id="node11" class="node"><title>N10</title>
<polygon fill="none" stroke="black" points="1341.5,-1660 1135.5,-1660 1135.5,-1625 1341.5,-1625 1341.5,-1660"/>
<text text-anchor="middle" x="1238.5" y="-1649.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.postContainersStart</text>
<text text-anchor="end" x="1333.5" y="-1640.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1333.5" y="-1631.6" font-family="Times,serif" font-size="8.00">of 69.2 (44.0%)</text>
</g>
<!-- N5&#45;&gt;N10 -->
<g id="edge32" class="edge"><title>N5&#45;&gt;N10</title>
<path fill="none" stroke="black" stroke-width="2" d="M1601.99,-1711.5C1526.35,-1697.35 1416,-1676.71 1336.75,-1661.88"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1337.23,-1658.41 1326.76,-1660.01 1335.95,-1665.29 1337.23,-1658.41"/>
<text text-anchor="middle" x="1503" y="-1681.8" font-family="Times,serif" font-size="14.00">69.2</text>
</g>
<!-- N27 -->
<g id="node28" class="node"><title>N27</title>
<polygon fill="none" stroke="black" points="1793.5,-1660 1581.5,-1660 1581.5,-1625 1793.5,-1625 1793.5,-1660"/>
<text text-anchor="middle" x="1687.5" y="-1649.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.postContainersCreate</text>
<text text-anchor="end" x="1785.5" y="-1640.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1785.5" y="-1631.6" font-family="Times,serif" font-size="8.00">of 20.0 (12.7%)</text>
</g>
<!-- N5&#45;&gt;N27 -->
<g id="edge43" class="edge"><title>N5&#45;&gt;N27</title>
<path fill="none" stroke="black" d="M1687.5,-1710.9C1687.5,-1699.28 1687.5,-1683.51 1687.5,-1670.14"/>
<polygon fill="black" stroke="black" points="1691,-1670.06 1687.5,-1660.06 1684,-1670.06 1691,-1670.06"/>
<text text-anchor="middle" x="1700" y="-1681.8" font-family="Times,serif" font-size="14.00">20.0</text>
</g>
<!-- N34 -->
<g id="node35" class="node"><title>N34</title>
<polygon fill="none" stroke="black" points="1563,-1660 1360,-1660 1360,-1625 1563,-1625 1563,-1660"/>
<text text-anchor="middle" x="1461.5" y="-1649.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.postContainersKill</text>
<text text-anchor="end" x="1555" y="-1640.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1555" y="-1631.6" font-family="Times,serif" font-size="8.00">of 13.2 (8.4%)</text>
</g>
<!-- N5&#45;&gt;N34 -->
<g id="edge19" class="edge"><title>N5&#45;&gt;N34</title>
<path fill="none" stroke="black" d="M1642.85,-1710.9C1606.32,-1697.33 1554.54,-1678.08 1515.65,-1663.63"/>
<polygon fill="black" stroke="black" points="1516.65,-1660.26 1506.06,-1660.06 1514.21,-1666.83 1516.65,-1660.26"/>
<text text-anchor="middle" x="1601" y="-1681.8" font-family="Times,serif" font-size="14.00">13.2</text>
</g>
<!-- N6&#45;&gt;N5 -->
<g id="edge60" class="edge"><title>N6&#45;&gt;N5</title>
<path fill="none" stroke="black" stroke-width="2" d="M1694.03,-1802.99C1692.88,-1790.01 1691.25,-1771.64 1689.9,-1756.52"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1693.36,-1755.86 1688.99,-1746.21 1686.38,-1756.48 1693.36,-1755.86"/>
<text text-anchor="middle" x="1708.5" y="-1767.8" font-family="Times,serif" font-size="14.00">102.9</text>
</g>
<!-- N7 -->
<g id="node8" class="node"><title>N7</title>
<polygon fill="none" stroke="black" points="1322.5,-1574 1154.5,-1574 1154.5,-1539 1322.5,-1539 1322.5,-1574"/>
<text text-anchor="middle" x="1238.5" y="-1563.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/engine.(*Job).Run</text>
<text text-anchor="end" x="1314.5" y="-1554.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1314.5" y="-1545.6" font-family="Times,serif" font-size="8.00">of 100.4 (63.9%)</text>
</g>
<!-- N12 -->
<g id="node13" class="node"><title>N12</title>
<polygon fill="none" stroke="black" points="1346,-1488 1131,-1488 1131,-1453 1346,-1453 1346,-1488"/>
<text text-anchor="middle" x="1238.5" y="-1477.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerStart·fm</text>
<text text-anchor="end" x="1338" y="-1468.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1338" y="-1459.6" font-family="Times,serif" font-size="8.00">of 68.2 (43.4%)</text>
</g>
<!-- N7&#45;&gt;N12 -->
<g id="edge62" class="edge"><title>N7&#45;&gt;N12</title>
<path fill="none" stroke="black" stroke-width="2" d="M1238.5,-1538.9C1238.5,-1527.28 1238.5,-1511.51 1238.5,-1498.14"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1242,-1498.06 1238.5,-1488.06 1235,-1498.06 1242,-1498.06"/>
<text text-anchor="middle" x="1251" y="-1509.8" font-family="Times,serif" font-size="14.00">68.2</text>
</g>
<!-- N31 -->
<g id="node32" class="node"><title>N31</title>
<polygon fill="none" stroke="black" points="921,-1488 700,-1488 700,-1453 921,-1453 921,-1488"/>
<text text-anchor="middle" x="810.5" y="-1477.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerCreate·fm</text>
<text text-anchor="end" x="913" y="-1468.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="913" y="-1459.6" font-family="Times,serif" font-size="8.00">of 18.0 (11.5%)</text>
</g>
<!-- N7&#45;&gt;N31 -->
<g id="edge21" class="edge"><title>N7&#45;&gt;N31</title>
<path fill="none" stroke="black" d="M1154.45,-1539C1082.58,-1524.9 979.222,-1504.61 904.594,-1489.97"/>
<polygon fill="black" stroke="black" points="905.208,-1486.52 894.721,-1488.03 903.86,-1493.39 905.208,-1486.52"/>
<text text-anchor="middle" x="1063" y="-1509.8" font-family="Times,serif" font-size="14.00">18.0</text>
</g>
<!-- N39 -->
<g id="node40" class="node"><title>N39</title>
<polygon fill="none" stroke="black" points="439.5,-1435 227.5,-1435 227.5,-1400 439.5,-1400 439.5,-1435"/>
<text text-anchor="middle" x="333.5" y="-1424.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerKill·fm</text>
<text text-anchor="end" x="431.5" y="-1415.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="431.5" y="-1406.6" font-family="Times,serif" font-size="8.00">of 12.7 (8.1%)</text>
</g>
<!-- N7&#45;&gt;N39 -->
<g id="edge83" class="edge"><title>N7&#45;&gt;N39</title>
<path fill="none" stroke="black" d="M1154.22,-1546.96C1046.41,-1535.62 854.047,-1513.96 690.5,-1488 597.734,-1473.28 492.238,-1452.2 420.126,-1437.12"/>
<polygon fill="black" stroke="black" points="420.683,-1433.66 410.177,-1435.03 419.246,-1440.51 420.683,-1433.66"/>
<text text-anchor="middle" x="939" y="-1509.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N8 -->
<g id="node9" class="node"><title>N8</title>
<polygon fill="none" stroke="black" points="1487,-100 1250,-100 1250,-0 1487,-0 1487,-100"/>
<text text-anchor="middle" x="1368.5" y="-62.4" font-family="Times,serif" font-size="42.00">cnew</text>
<text text-anchor="end" x="1479" y="-16.4" font-family="Times,serif" font-size="42.00">72.7 (46.2%)</text>
</g>
<!-- N9 -->
<g id="node10" class="node"><title>N9</title>
<polygon fill="none" stroke="black" points="1407,-190.5 1330,-190.5 1330,-155.5 1407,-155.5 1407,-190.5"/>
<text text-anchor="middle" x="1368.5" y="-180.1" font-family="Times,serif" font-size="8.00">runtime.cnewarray</text>
<text text-anchor="end" x="1399" y="-171.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1399" y="-162.1" font-family="Times,serif" font-size="8.00">of 70.2 (44.7%)</text>
</g>
<!-- N9&#45;&gt;N8 -->
<g id="edge47" class="edge"><title>N9&#45;&gt;N8</title>
<path fill="none" stroke="black" stroke-width="2" d="M1368.5,-155.175C1368.5,-143.345 1368.5,-126.743 1368.5,-110.264"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1372,-110.063 1368.5,-100.063 1365,-110.063 1372,-110.063"/>
<text text-anchor="middle" x="1381" y="-121.8" font-family="Times,serif" font-size="14.00">70.2</text>
</g>
<!-- N10&#45;&gt;N7 -->
<g id="edge5" class="edge"><title>N10&#45;&gt;N7</title>
<path fill="none" stroke="black" stroke-width="2" d="M1238.5,-1624.9C1238.5,-1613.28 1238.5,-1597.51 1238.5,-1584.14"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1242,-1584.06 1238.5,-1574.06 1235,-1584.06 1242,-1584.06"/>
<text text-anchor="middle" x="1251" y="-1595.8" font-family="Times,serif" font-size="14.00">68.2</text>
</g>
<!-- N11 -->
<g id="node12" class="node"><title>N11</title>
<polygon fill="none" stroke="black" points="1343.5,-1376 1133.5,-1376 1133.5,-1341 1343.5,-1341 1343.5,-1376"/>
<text text-anchor="middle" x="1238.5" y="-1365.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerStart</text>
<text text-anchor="end" x="1335.5" y="-1356.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1335.5" y="-1347.6" font-family="Times,serif" font-size="8.00">of 68.2 (43.4%)</text>
</g>
<!-- N13 -->
<g id="node14" class="node"><title>N13</title>
<polygon fill="none" stroke="black" points="1335.5,-1264 1141.5,-1264 1141.5,-1229 1335.5,-1229 1335.5,-1264"/>
<text text-anchor="middle" x="1238.5" y="-1253.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).Start</text>
<text text-anchor="end" x="1327.5" y="-1244.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1327.5" y="-1235.6" font-family="Times,serif" font-size="8.00">of 67.7 (43.1%)</text>
</g>
<!-- N11&#45;&gt;N13 -->
<g id="edge41" class="edge"><title>N11&#45;&gt;N13</title>
<path fill="none" stroke="black" stroke-width="2" d="M1238.5,-1340.79C1238.5,-1323.08 1238.5,-1294.86 1238.5,-1274.09"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1242,-1274 1238.5,-1264 1235,-1274 1242,-1274"/>
<text text-anchor="middle" x="1251" y="-1295.8" font-family="Times,serif" font-size="14.00">67.7</text>
</g>
<!-- N12&#45;&gt;N11 -->
<g id="edge80" class="edge"><title>N12&#45;&gt;N11</title>
<path fill="none" stroke="black" stroke-width="2" d="M1238.5,-1452.79C1238.5,-1435.08 1238.5,-1406.86 1238.5,-1386.09"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1242,-1386 1238.5,-1376 1235,-1386 1242,-1386"/>
<text text-anchor="middle" x="1251" y="-1413.8" font-family="Times,serif" font-size="14.00">68.2</text>
</g>
<!-- N20 -->
<g id="node21" class="node"><title>N20</title>
<polygon fill="none" stroke="black" points="1202,-1158 595,-1158 595,-1063 1202,-1063 1202,-1158"/>
<text text-anchor="middle" x="898.5" y="-1133.12" font-family="Times,serif" font-size="26.10">github.com/dotcloud/docker/daemon.populateCommand</text>
<text text-anchor="end" x="1194" y="-1104.12" font-family="Times,serif" font-size="26.10">20.5 (13.0%)</text>
<text text-anchor="end" x="1194" y="-1075.12" font-family="Times,serif" font-size="26.10">of 25.0 (15.9%)</text>
</g>
<!-- N13&#45;&gt;N20 -->
<g id="edge23" class="edge"><title>N13&#45;&gt;N20</title>
<path fill="none" stroke="black" d="M1196.47,-1228.93C1154.05,-1212.22 1086.41,-1185.56 1026.29,-1161.86"/>
<polygon fill="black" stroke="black" points="1027.3,-1158.5 1016.71,-1158.09 1024.73,-1165.01 1027.3,-1158.5"/>
<text text-anchor="middle" x="1160" y="-1189.8" font-family="Times,serif" font-size="14.00">25.0</text>
</g>
<!-- N23 -->
<g id="node24" class="node"><title>N23</title>
<polygon fill="none" stroke="black" points="1506.5,-1128 1274.5,-1128 1274.5,-1093 1506.5,-1093 1506.5,-1128"/>
<text text-anchor="middle" x="1390.5" y="-1117.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.prepareVolumesForContainer</text>
<text text-anchor="end" x="1498.5" y="-1108.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1498.5" y="-1099.6" font-family="Times,serif" font-size="8.00">of 23.4 (14.9%)</text>
</g>
<!-- N13&#45;&gt;N23 -->
<g id="edge30" class="edge"><title>N13&#45;&gt;N23</title>
<path fill="none" stroke="black" d="M1257.44,-1228.8C1284.18,-1205.23 1333.12,-1162.08 1363.61,-1135.2"/>
<polygon fill="black" stroke="black" points="1366.13,-1137.65 1371.32,-1128.41 1361.5,-1132.4 1366.13,-1137.65"/>
<text text-anchor="middle" x="1327" y="-1189.8" font-family="Times,serif" font-size="14.00">23.4</text>
</g>
<!-- N42 -->
<g id="node43" class="node"><title>N42</title>
<polygon fill="none" stroke="black" points="2056.5,-1128 1810.5,-1128 1810.5,-1093 2056.5,-1093 2056.5,-1128"/>
<text text-anchor="middle" x="1933.5" y="-1117.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).initializeNetworking</text>
<text text-anchor="end" x="2048.5" y="-1108.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2048.5" y="-1099.6" font-family="Times,serif" font-size="8.00">of 8.3 (5.3%)</text>
</g>
<!-- N13&#45;&gt;N42 -->
<g id="edge74" class="edge"><title>N13&#45;&gt;N42</title>
<path fill="none" stroke="black" d="M1335.59,-1236.06C1448.52,-1223.77 1639.98,-1198.9 1800.5,-1158 1828.12,-1150.96 1858.16,-1140.7 1882.68,-1131.6"/>
<polygon fill="black" stroke="black" points="1884.01,-1134.84 1892.14,-1128.05 1881.55,-1128.29 1884.01,-1134.84"/>
<text text-anchor="middle" x="1719.5" y="-1189.8" font-family="Times,serif" font-size="14.00">8.3</text>
</g>
<!-- N64 -->
<g id="node65" class="node"><title>N64</title>
<polygon fill="none" stroke="black" points="1348.5,-939 1128.5,-939 1128.5,-904 1348.5,-904 1348.5,-939"/>
<text text-anchor="middle" x="1238.5" y="-928.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.setupMountsForContainer</text>
<text text-anchor="end" x="1340.5" y="-919.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1340.5" y="-910.6" font-family="Times,serif" font-size="8.00">of 5.0 (3.2%)</text>
</g>
<!-- N13&#45;&gt;N64 -->
<g id="edge57" class="edge"><title>N13&#45;&gt;N64</title>
<path fill="none" stroke="black" d="M1238.5,-1228.59C1238.5,-1175.83 1238.5,-1013.91 1238.5,-949.419"/>
<polygon fill="black" stroke="black" points="1242,-949.244 1238.5,-939.244 1235,-949.244 1242,-949.244"/>
<text text-anchor="middle" x="1247.5" y="-1106.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N74 -->
<g id="node75" class="node"><title>N74</title>
<polygon fill="none" stroke="black" points="1792,-1128 1525,-1128 1525,-1093 1792,-1093 1792,-1128"/>
<text text-anchor="middle" x="1658.5" y="-1117.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).createDaemonEnvironment</text>
<text text-anchor="end" x="1784" y="-1108.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1784" y="-1099.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.5%)</text>
</g>
<!-- N13&#45;&gt;N74 -->
<g id="edge36" class="edge"><title>N13&#45;&gt;N74</title>
<path fill="none" stroke="black" d="M1291.39,-1228.94C1347.16,-1211.44 1437.58,-1182.98 1515.5,-1158 1542.72,-1149.27 1572.82,-1139.5 1598.36,-1131.18"/>
<polygon fill="black" stroke="black" points="1599.48,-1134.5 1607.91,-1128.07 1597.31,-1127.84 1599.48,-1134.5"/>
<text text-anchor="middle" x="1464.5" y="-1189.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N14 -->
<g id="node15" class="node"><title>N14</title>
<polygon fill="none" stroke="black" points="2412,-1382 2113,-1382 2113,-1335 2412,-1335 2412,-1382"/>
<text text-anchor="middle" x="2262.5" y="-1368.4" font-family="Times,serif" font-size="12.00">github.com/dotcloud/docker/daemon.(*Container).monitor</text>
<text text-anchor="end" x="2404" y="-1355.4" font-family="Times,serif" font-size="12.00">1.0 (0.6%)</text>
<text text-anchor="end" x="2404" y="-1342.4" font-family="Times,serif" font-size="12.00">of 35.3 (22.5%)</text>
</g>
<!-- N17 -->
<g id="node18" class="node"><title>N17</title>
<polygon fill="none" stroke="black" points="2356.5,-1264 2168.5,-1264 2168.5,-1229 2356.5,-1229 2356.5,-1264"/>
<text text-anchor="middle" x="2262.5" y="-1253.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Run</text>
<text text-anchor="end" x="2348.5" y="-1244.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2348.5" y="-1235.6" font-family="Times,serif" font-size="8.00">of 31.8 (20.2%)</text>
</g>
<!-- N14&#45;&gt;N17 -->
<g id="edge75" class="edge"><title>N14&#45;&gt;N17</title>
<path fill="none" stroke="black" stroke-width="1.21428" d="M2262.5,-1334.97C2262.5,-1317.43 2262.5,-1293 2262.5,-1274.42"/>
<polygon fill="black" stroke="black" stroke-width="1.21428" points="2266,-1274.25 2262.5,-1264.25 2259,-1274.25 2266,-1274.25"/>
<text text-anchor="middle" x="2275" y="-1295.8" font-family="Times,serif" font-size="14.00">31.8</text>
</g>
<!-- N15 -->
<g id="node16" class="node"><title>N15</title>
<polygon fill="none" stroke="black" points="2311,-1488 2146,-1488 2146,-1453 2311,-1453 2311,-1488"/>
<text text-anchor="middle" x="2228.5" y="-1477.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.func·016</text>
<text text-anchor="end" x="2303" y="-1468.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2303" y="-1459.6" font-family="Times,serif" font-size="8.00">of 35.3 (22.5%)</text>
</g>
<!-- N15&#45;&gt;N14 -->
<g id="edge68" class="edge"><title>N15&#45;&gt;N14</title>
<path fill="none" stroke="black" stroke-width="1.34788" d="M2233.66,-1452.79C2238.65,-1436.65 2246.35,-1411.77 2252.53,-1391.76"/>
<polygon fill="black" stroke="black" stroke-width="1.34788" points="2255.91,-1392.69 2255.52,-1382.1 2249.22,-1390.62 2255.91,-1392.69"/>
<text text-anchor="middle" x="2262" y="-1413.8" font-family="Times,serif" font-size="14.00">35.3</text>
</g>
<!-- N16&#45;&gt;N15 -->
<g id="edge20" class="edge"><title>N16&#45;&gt;N15</title>
<path fill="none" stroke="black" stroke-width="1.34788" d="M2158.5,-2033.86C2158.5,-2015.07 2158.5,-1983.59 2158.5,-1956.5 2158.5,-1956.5 2158.5,-1956.5 2158.5,-1555.5 2158.5,-1530.81 2176.57,-1509.52 2194.35,-1494.55"/>
<polygon fill="black" stroke="black" stroke-width="1.34788" points="2196.78,-1497.09 2202.43,-1488.13 2192.43,-1491.61 2196.78,-1497.09"/>
<text text-anchor="middle" x="2171" y="-1767.8" font-family="Times,serif" font-size="14.00">35.3</text>
</g>
<!-- N18 -->
<g id="node19" class="node"><title>N18</title>
<polygon fill="none" stroke="black" points="2381.5,-1128 2143.5,-1128 2143.5,-1093 2381.5,-1093 2381.5,-1128"/>
<text text-anchor="middle" x="2262.5" y="-1117.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon/execdriver/native.(*driver).Run</text>
<text text-anchor="end" x="2373.5" y="-1108.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2373.5" y="-1099.6" font-family="Times,serif" font-size="8.00">of 31.8 (20.2%)</text>
</g>
<!-- N17&#45;&gt;N18 -->
<g id="edge90" class="edge"><title>N17&#45;&gt;N18</title>
<path fill="none" stroke="black" stroke-width="1.21428" d="M2262.5,-1228.8C2262.5,-1206.23 2262.5,-1165.72 2262.5,-1138.72"/>
<polygon fill="black" stroke="black" stroke-width="1.21428" points="2266,-1138.41 2262.5,-1128.41 2259,-1138.41 2266,-1138.41"/>
<text text-anchor="middle" x="2275" y="-1189.8" font-family="Times,serif" font-size="14.00">31.8</text>
</g>
<!-- N18&#45;&gt;N9 -->
<g id="edge1" class="edge"><title>N18&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M2381.57,-1106.24C2472.93,-1096.62 2583.5,-1066.24 2583.5,-975.5 2583.5,-975.5 2583.5,-975.5 2583.5,-262.5 2583.5,-203.003 1644.5,-179.719 1417.47,-174.959"/>
<polygon fill="black" stroke="black" points="1417.28,-171.454 1407.21,-174.746 1417.13,-178.453 1417.28,-171.454"/>
<text text-anchor="middle" x="2592.5" y="-598.8" font-family="Times,serif" font-size="14.00">0.8</text>
</g>
<!-- N19 -->
<g id="node20" class="node"><title>N19</title>
<polygon fill="none" stroke="black" points="2362.5,-992 2162.5,-992 2162.5,-957 2362.5,-957 2362.5,-992"/>
<text text-anchor="middle" x="2262.5" y="-981.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/pkg/libcontainer/nsinit.Exec</text>
<text text-anchor="end" x="2354.5" y="-972.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2354.5" y="-963.6" font-family="Times,serif" font-size="8.00">of 31.0 (19.7%)</text>
</g>
<!-- N18&#45;&gt;N19 -->
<g id="edge66" class="edge"><title>N18&#45;&gt;N19</title>
<path fill="none" stroke="black" stroke-width="1.18327" d="M2262.5,-1092.8C2262.5,-1070.23 2262.5,-1029.72 2262.5,-1002.72"/>
<polygon fill="black" stroke="black" stroke-width="1.18327" points="2266,-1002.41 2262.5,-992.411 2259,-1002.41 2266,-1002.41"/>
<text text-anchor="middle" x="2275" y="-1023.8" font-family="Times,serif" font-size="14.00">31.0</text>
</g>
<!-- N33 -->
<g id="node34" class="node"><title>N33</title>
<polygon fill="none" stroke="black" points="2362,-886 2219,-886 2219,-830 2362,-830 2362,-886"/>
<text text-anchor="middle" x="2290.5" y="-870.08" font-family="Times,serif" font-size="14.90">os/exec.(*Cmd).Start</text>
<text text-anchor="end" x="2354" y="-854.08" font-family="Times,serif" font-size="14.90">3.0 (1.9%)</text>
<text text-anchor="end" x="2354" y="-838.08" font-family="Times,serif" font-size="14.90">of 15.5 (9.9%)</text>
</g>
<!-- N19&#45;&gt;N33 -->
<g id="edge45" class="edge"><title>N19&#45;&gt;N33</title>
<path fill="none" stroke="black" d="M2266.63,-956.605C2270.51,-940.747 2276.44,-916.483 2281.42,-896.115"/>
<polygon fill="black" stroke="black" points="2284.88,-896.73 2283.85,-886.185 2278.08,-895.067 2284.88,-896.73"/>
<text text-anchor="middle" x="2291" y="-917.8" font-family="Times,serif" font-size="14.00">14.0</text>
</g>
<!-- N40 -->
<g id="node41" class="node"><title>N40</title>
<polygon fill="none" stroke="black" points="2201,-881.5 1876,-881.5 1876,-834.5 2201,-834.5 2201,-881.5"/>
<text text-anchor="middle" x="2038.5" y="-867.9" font-family="Times,serif" font-size="12.00">github.com/dotcloud/docker/daemon/execdriver/native.func·002</text>
<text text-anchor="end" x="2193" y="-854.9" font-family="Times,serif" font-size="12.00">1.0 (0.6%)</text>
<text text-anchor="end" x="2193" y="-841.9" font-family="Times,serif" font-size="12.00">of 9.0 (5.7%)</text>
</g>
<!-- N19&#45;&gt;N40 -->
<g id="edge56" class="edge"><title>N19&#45;&gt;N40</title>
<path fill="none" stroke="black" d="M2229.93,-956.851C2193.68,-938.321 2134.56,-908.1 2091.6,-886.141"/>
<polygon fill="black" stroke="black" points="2093.19,-883.022 2082.69,-881.587 2090,-889.255 2093.19,-883.022"/>
<text text-anchor="middle" x="2199.5" y="-917.8" font-family="Times,serif" font-size="14.00">9.0</text>
</g>
<!-- N59 -->
<g id="node60" class="node"><title>N59</title>
<polygon fill="none" stroke="black" points="2473,-875.5 2388,-875.5 2388,-840.5 2473,-840.5 2473,-875.5"/>
<text text-anchor="middle" x="2430.5" y="-865.1" font-family="Times,serif" font-size="8.00">os/exec.(*Cmd).Wait</text>
<text text-anchor="end" x="2465" y="-856.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2465" y="-847.1" font-family="Times,serif" font-size="8.00">of 5.5 (3.5%)</text>
</g>
<!-- N19&#45;&gt;N59 -->
<g id="edge28" class="edge"><title>N19&#45;&gt;N59</title>
<path fill="none" stroke="black" d="M2286.93,-956.851C2316.17,-936.923 2365.25,-903.474 2397.75,-881.32"/>
<polygon fill="black" stroke="black" points="2399.75,-884.193 2406.04,-875.669 2395.81,-878.409 2399.75,-884.193"/>
<text text-anchor="middle" x="2370.5" y="-917.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N20&#45;&gt;N9 -->
<g id="edge29" class="edge"><title>N20&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M960.742,-1062.88C984.282,-1039.72 1005.5,-1009.44 1005.5,-975.5 1005.5,-975.5 1005.5,-975.5 1005.5,-262.5 1005.5,-198.519 1221.05,-180.592 1319.95,-175.734"/>
<polygon fill="black" stroke="black" points="1320.17,-179.228 1330,-175.266 1319.84,-172.235 1320.17,-179.228"/>
<text text-anchor="middle" x="1014.5" y="-598.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N21 -->
<g id="node22" class="node"><title>N21</title>
<polygon fill="none" stroke="black" points="1482.5,-992 1298.5,-992 1298.5,-957 1482.5,-957 1482.5,-992"/>
<text text-anchor="middle" x="1390.5" y="-981.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.createVolumes</text>
<text text-anchor="end" x="1474.5" y="-972.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1474.5" y="-963.6" font-family="Times,serif" font-size="8.00">of 23.4 (14.9%)</text>
</g>
<!-- N22 -->
<g id="node23" class="node"><title>N22</title>
<polygon fill="none" stroke="black" points="1485.5,-875.5 1295.5,-875.5 1295.5,-840.5 1485.5,-840.5 1485.5,-875.5"/>
<text text-anchor="middle" x="1390.5" y="-865.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.initializeVolume</text>
<text text-anchor="end" x="1477.5" y="-856.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1477.5" y="-847.1" font-family="Times,serif" font-size="8.00">of 23.4 (14.9%)</text>
</g>
<!-- N21&#45;&gt;N22 -->
<g id="edge49" class="edge"><title>N21&#45;&gt;N22</title>
<path fill="none" stroke="black" d="M1390.5,-956.605C1390.5,-937.979 1390.5,-907.759 1390.5,-885.874"/>
<polygon fill="black" stroke="black" points="1394,-885.592 1390.5,-875.592 1387,-885.592 1394,-885.592"/>
<text text-anchor="middle" x="1403" y="-917.8" font-family="Times,serif" font-size="14.00">23.4</text>
</g>
<!-- N24 -->
<g id="node25" class="node"><title>N24</title>
<polygon fill="none" stroke="black" points="1510,-779 1271,-779 1271,-735 1510,-735 1510,-779"/>
<text text-anchor="middle" x="1390.5" y="-766.36" font-family="Times,serif" font-size="10.80">github.com/dotcloud/docker/graph.(*Graph).Create</text>
<text text-anchor="end" x="1502" y="-754.36" font-family="Times,serif" font-size="10.80">0.5 (0.3%)</text>
<text text-anchor="end" x="1502" y="-742.36" font-family="Times,serif" font-size="10.80">of 22.4 (14.2%)</text>
</g>
<!-- N22&#45;&gt;N24 -->
<g id="edge33" class="edge"><title>N22&#45;&gt;N24</title>
<path fill="none" stroke="black" d="M1390.5,-840.206C1390.5,-826.227 1390.5,-805.948 1390.5,-789.03"/>
<polygon fill="black" stroke="black" points="1394,-789.016 1390.5,-779.016 1387,-789.016 1394,-789.016"/>
<text text-anchor="middle" x="1403" y="-800.8" font-family="Times,serif" font-size="14.00">22.4</text>
</g>
<!-- N55 -->
<g id="node56" class="node"><title>N55</title>
<polygon fill="none" stroke="black" points="1779.5,-774.5 1697.5,-774.5 1697.5,-739.5 1779.5,-739.5 1779.5,-774.5"/>
<text text-anchor="middle" x="1738.5" y="-764.1" font-family="Times,serif" font-size="8.00">runtime.concatstring</text>
<text text-anchor="end" x="1771.5" y="-755.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1771.5" y="-746.1" font-family="Times,serif" font-size="8.00">of 6.0 (3.8%)</text>
</g>
<!-- N22&#45;&gt;N55 -->
<g id="edge82" class="edge"><title>N22&#45;&gt;N55</title>
<path fill="none" stroke="black" d="M1413.41,-840.298C1433.52,-826.488 1464.07,-807.5 1493.5,-797 1558.02,-773.984 1636.93,-764.513 1687.45,-760.641"/>
<polygon fill="black" stroke="black" points="1687.76,-764.128 1697.48,-759.918 1687.25,-757.146 1687.76,-764.128"/>
<text text-anchor="middle" x="1502.5" y="-800.8" font-family="Times,serif" font-size="14.00">0.5</text>
</g>
<!-- N23&#45;&gt;N21 -->
<g id="edge79" class="edge"><title>N23&#45;&gt;N21</title>
<path fill="none" stroke="black" d="M1390.5,-1092.8C1390.5,-1070.23 1390.5,-1029.72 1390.5,-1002.72"/>
<polygon fill="black" stroke="black" points="1394,-1002.41 1390.5,-992.411 1387,-1002.41 1394,-1002.41"/>
<text text-anchor="middle" x="1403" y="-1023.8" font-family="Times,serif" font-size="14.00">23.4</text>
</g>
<!-- N25 -->
<g id="node26" class="node"><title>N25</title>
<polygon fill="none" stroke="black" points="1462,-673.5 1275,-673.5 1275,-638.5 1462,-638.5 1462,-673.5"/>
<text text-anchor="middle" x="1368.5" y="-663.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.(*Graph).Register</text>
<text text-anchor="end" x="1454" y="-654.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1454" y="-645.1" font-family="Times,serif" font-size="8.00">of 20.4 (13.0%)</text>
</g>
<!-- N24&#45;&gt;N25 -->
<g id="edge51" class="edge"><title>N24&#45;&gt;N25</title>
<path fill="none" stroke="black" d="M1385.73,-734.518C1382.39,-719.497 1377.91,-699.343 1374.36,-683.35"/>
<polygon fill="black" stroke="black" points="1377.76,-682.54 1372.17,-673.537 1370.93,-684.058 1377.76,-682.54"/>
<text text-anchor="middle" x="1394" y="-705.8" font-family="Times,serif" font-size="14.00">19.9</text>
</g>
<!-- N65 -->
<g id="node66" class="node"><title>N65</title>
<polygon fill="none" stroke="black" points="1669,-673.5 1480,-673.5 1480,-638.5 1669,-638.5 1669,-673.5"/>
<text text-anchor="middle" x="1574.5" y="-663.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/utils.GenerateRandomID</text>
<text text-anchor="end" x="1661" y="-654.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1661" y="-645.1" font-family="Times,serif" font-size="8.00">of 5.0 (3.2%)</text>
</g>
<!-- N24&#45;&gt;N65 -->
<g id="edge8" class="edge"><title>N24&#45;&gt;N65</title>
<path fill="none" stroke="black" d="M1429.97,-734.762C1460.92,-718.111 1503.79,-695.044 1534.8,-678.361"/>
<polygon fill="black" stroke="black" points="1536.46,-681.44 1543.61,-673.62 1533.15,-675.276 1536.46,-681.44"/>
<text text-anchor="middle" x="1497.5" y="-705.8" font-family="Times,serif" font-size="14.00">2.0</text>
</g>
<!-- N26 -->
<g id="node27" class="node"><title>N26</title>
<polygon fill="none" stroke="black" points="1462,-571.5 1275,-571.5 1275,-536.5 1462,-536.5 1462,-571.5"/>
<text text-anchor="middle" x="1368.5" y="-561.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/utils.(*TruncIndex).Add</text>
<text text-anchor="end" x="1454" y="-552.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1454" y="-543.1" font-family="Times,serif" font-size="8.00">of 20.4 (13.0%)</text>
</g>
<!-- N25&#45;&gt;N26 -->
<g id="edge86" class="edge"><title>N25&#45;&gt;N26</title>
<path fill="none" stroke="black" d="M1368.5,-638.487C1368.5,-623.071 1368.5,-599.794 1368.5,-581.732"/>
<polygon fill="black" stroke="black" points="1372,-581.537 1368.5,-571.537 1365,-581.538 1372,-581.537"/>
<text text-anchor="middle" x="1381" y="-598.8" font-family="Times,serif" font-size="14.00">20.4</text>
</g>
<!-- N28 -->
<g id="node29" class="node"><title>N28</title>
<polygon fill="none" stroke="black" points="1412.5,-466.5 1324.5,-466.5 1324.5,-431.5 1412.5,-431.5 1412.5,-466.5"/>
<text text-anchor="middle" x="1368.5" y="-456.1" font-family="Times,serif" font-size="8.00">index/suffixarray.New</text>
<text text-anchor="end" x="1404.5" y="-447.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1404.5" y="-438.1" font-family="Times,serif" font-size="8.00">of 19.1 (12.1%)</text>
</g>
<!-- N26&#45;&gt;N28 -->
<g id="edge27" class="edge"><title>N26&#45;&gt;N28</title>
<path fill="none" stroke="black" d="M1368.5,-536.451C1368.5,-520.309 1368.5,-495.492 1368.5,-476.581"/>
<polygon fill="black" stroke="black" points="1372,-476.508 1368.5,-466.508 1365,-476.508 1372,-476.508"/>
<text text-anchor="middle" x="1381" y="-501.8" font-family="Times,serif" font-size="14.00">19.1</text>
</g>
<!-- N27&#45;&gt;N7 -->
<g id="edge69" class="edge"><title>N27&#45;&gt;N7</title>
<path fill="none" stroke="black" d="M1599.06,-1624.95C1522.13,-1610.56 1410.97,-1589.77 1332.46,-1575.08"/>
<polygon fill="black" stroke="black" points="1333.04,-1571.63 1322.57,-1573.23 1331.76,-1578.51 1333.04,-1571.63"/>
<text text-anchor="middle" x="1503" y="-1595.8" font-family="Times,serif" font-size="14.00">18.0</text>
</g>
<!-- N27&#45;&gt;N9 -->
<g id="edge88" class="edge"><title>N27&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1793.63,-1639.63C1911.23,-1634.6 2084.5,-1617.07 2084.5,-1557.5 2084.5,-1557.5 2084.5,-1557.5 2084.5,-1026.5 2084.5,-994.478 2087.58,-980.195 2065.5,-957 1995.54,-883.497 1912.32,-964.892 1848.5,-886 1808.79,-836.919 1818.5,-666.631 1818.5,-603.5 1818.5,-603.5 1818.5,-603.5 1818.5,-262.5 1818.5,-181.443 1533.85,-173.34 1417.33,-173.418"/>
<polygon fill="black" stroke="black" points="1417.25,-169.918 1407.26,-173.446 1417.27,-176.918 1417.25,-169.918"/>
<text text-anchor="middle" x="1857.5" y="-854.3" font-family="Times,serif" font-size="14.00">1.5</text>
</g>
<!-- N29 -->
<g id="node30" class="node"><title>N29</title>
<polygon fill="none" stroke="black" points="1418,-367 1319,-367 1319,-332 1418,-332 1418,-367"/>
<text text-anchor="middle" x="1368.5" y="-356.6" font-family="Times,serif" font-size="8.00">index/suffixarray.qsufsort</text>
<text text-anchor="end" x="1410" y="-347.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1410" y="-338.6" font-family="Times,serif" font-size="8.00">of 19.1 (12.1%)</text>
</g>
<!-- N28&#45;&gt;N29 -->
<g id="edge89" class="edge"><title>N28&#45;&gt;N29</title>
<path fill="none" stroke="black" d="M1368.5,-431.46C1368.5,-416.613 1368.5,-394.55 1368.5,-377.205"/>
<polygon fill="black" stroke="black" points="1372,-377.121 1368.5,-367.121 1365,-377.121 1372,-377.121"/>
<text text-anchor="middle" x="1381" y="-388.8" font-family="Times,serif" font-size="14.00">19.1</text>
</g>
<!-- N35 -->
<g id="node36" class="node"><title>N35</title>
<polygon fill="none" stroke="black" points="1434.5,-281 1302.5,-281 1302.5,-246 1434.5,-246 1434.5,-281"/>
<text text-anchor="middle" x="1368.5" y="-270.6" font-family="Times,serif" font-size="8.00">index/suffixarray.sortedByFirstByte</text>
<text text-anchor="end" x="1426.5" y="-261.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1426.5" y="-252.6" font-family="Times,serif" font-size="8.00">of 12.9 (8.2%)</text>
</g>
<!-- N29&#45;&gt;N35 -->
<g id="edge76" class="edge"><title>N29&#45;&gt;N35</title>
<path fill="none" stroke="black" d="M1368.5,-331.904C1368.5,-320.284 1368.5,-304.509 1368.5,-291.141"/>
<polygon fill="black" stroke="black" points="1372,-291.061 1368.5,-281.061 1365,-291.061 1372,-291.061"/>
<text text-anchor="middle" x="1381" y="-302.8" font-family="Times,serif" font-size="14.00">12.9</text>
</g>
<!-- N53 -->
<g id="node54" class="node"><title>N53</title>
<polygon fill="none" stroke="black" points="1560,-281 1453,-281 1453,-246 1560,-246 1560,-281"/>
<text text-anchor="middle" x="1506.5" y="-270.6" font-family="Times,serif" font-size="8.00">index/suffixarray.initGroups</text>
<text text-anchor="end" x="1552" y="-261.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1552" y="-252.6" font-family="Times,serif" font-size="8.00">of 6.2 (3.9%)</text>
</g>
<!-- N29&#45;&gt;N53 -->
<g id="edge31" class="edge"><title>N29&#45;&gt;N53</title>
<path fill="none" stroke="black" d="M1395.76,-331.904C1417.22,-318.846 1447.29,-300.54 1470.69,-286.3"/>
<polygon fill="black" stroke="black" points="1472.57,-289.25 1479.29,-281.061 1468.93,-283.271 1472.57,-289.25"/>
<text text-anchor="middle" x="1455.5" y="-302.8" font-family="Times,serif" font-size="14.00">6.2</text>
</g>
<!-- N30 -->
<g id="node31" class="node"><title>N30</title>
<polygon fill="none" stroke="black" points="650,-1376 435,-1376 435,-1341 650,-1341 650,-1376"/>
<text text-anchor="middle" x="542.5" y="-1365.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerCreate</text>
<text text-anchor="end" x="642" y="-1356.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="642" y="-1347.6" font-family="Times,serif" font-size="8.00">of 18.0 (11.5%)</text>
</g>
<!-- N32 -->
<g id="node33" class="node"><title>N32</title>
<polygon fill="none" stroke="black" points="573.5,-1264 377.5,-1264 377.5,-1229 573.5,-1229 573.5,-1264"/>
<text text-anchor="middle" x="475.5" y="-1253.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Create</text>
<text text-anchor="end" x="565.5" y="-1244.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="565.5" y="-1235.6" font-family="Times,serif" font-size="8.00">of 15.5 (9.9%)</text>
</g>
<!-- N30&#45;&gt;N32 -->
<g id="edge92" class="edge"><title>N30&#45;&gt;N32</title>
<path fill="none" stroke="black" d="M532.324,-1340.79C521.291,-1322.68 503.556,-1293.56 490.833,-1272.67"/>
<polygon fill="black" stroke="black" points="493.743,-1270.72 485.552,-1264 487.765,-1274.36 493.743,-1270.72"/>
<text text-anchor="middle" x="530" y="-1295.8" font-family="Times,serif" font-size="14.00">15.5</text>
</g>
<!-- N31&#45;&gt;N30 -->
<g id="edge54" class="edge"><title>N31&#45;&gt;N30</title>
<path fill="none" stroke="black" d="M770.088,-1452.91C722.556,-1433.4 643.647,-1401.02 592.359,-1379.96"/>
<polygon fill="black" stroke="black" points="593.383,-1376.6 582.802,-1376.04 590.725,-1383.08 593.383,-1376.6"/>
<text text-anchor="middle" x="737" y="-1413.8" font-family="Times,serif" font-size="14.00">18.0</text>
</g>
<!-- N43 -->
<g id="node44" class="node"><title>N43</title>
<polygon fill="none" stroke="black" points="576.5,-1128 374.5,-1128 374.5,-1093 576.5,-1093 576.5,-1128"/>
<text text-anchor="middle" x="475.5" y="-1117.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Register</text>
<text text-anchor="end" x="568.5" y="-1108.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="568.5" y="-1099.6" font-family="Times,serif" font-size="8.00">of 8.0 (5.1%)</text>
</g>
<!-- N32&#45;&gt;N43 -->
<g id="edge50" class="edge"><title>N32&#45;&gt;N43</title>
<path fill="none" stroke="black" d="M475.5,-1228.8C475.5,-1206.23 475.5,-1165.72 475.5,-1138.72"/>
<polygon fill="black" stroke="black" points="479,-1138.41 475.5,-1128.41 472,-1138.41 479,-1138.41"/>
<text text-anchor="middle" x="484.5" y="-1189.8" font-family="Times,serif" font-size="14.00">8.0</text>
</g>
<!-- N80 -->
<g id="node81" class="node"><title>N80</title>
<polygon fill="none" stroke="black" points="356,-1128 141,-1128 141,-1093 356,-1093 356,-1128"/>
<text text-anchor="middle" x="248.5" y="-1117.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.(*TagStore).LookupImage</text>
<text text-anchor="end" x="348" y="-1108.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="348" y="-1099.6" font-family="Times,serif" font-size="8.00">of 3.5 (2.2%)</text>
</g>
<!-- N32&#45;&gt;N80 -->
<g id="edge18" class="edge"><title>N32&#45;&gt;N80</title>
<path fill="none" stroke="black" d="M447.209,-1228.8C406.317,-1204.66 330.651,-1159.99 285.412,-1133.29"/>
<polygon fill="black" stroke="black" points="287.181,-1130.27 276.79,-1128.2 283.622,-1136.3 287.181,-1130.27"/>
<text text-anchor="middle" x="424.5" y="-1189.8" font-family="Times,serif" font-size="14.00">3.5</text>
</g>
<!-- N33&#45;&gt;N9 -->
<g id="edge71" class="edge"><title>N33&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M2218.87,-831.829C2188.28,-816.1 2159.5,-792.209 2159.5,-758 2159.5,-758 2159.5,-758 2159.5,-262.5 2159.5,-218.783 2116.38,-225.554 2074.5,-213 1951.3,-176.067 1556.78,-173.466 1417.64,-173.738"/>
<polygon fill="black" stroke="black" points="1417.29,-170.239 1407.3,-173.765 1417.31,-177.239 1417.29,-170.239"/>
<text text-anchor="middle" x="2168.5" y="-501.8" font-family="Times,serif" font-size="14.00">1.5</text>
</g>
<!-- N67 -->
<g id="node68" class="node"><title>N67</title>
<polygon fill="none" stroke="black" points="2335,-774.5 2246,-774.5 2246,-739.5 2335,-739.5 2335,-774.5"/>
<text text-anchor="middle" x="2290.5" y="-764.1" font-family="Times,serif" font-size="8.00">os/exec.(*Cmd).stdout</text>
<text text-anchor="end" x="2327" y="-755.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2327" y="-746.1" font-family="Times,serif" font-size="8.00">of 5.0 (3.2%)</text>
</g>
<!-- N33&#45;&gt;N67 -->
<g id="edge81" class="edge"><title>N33&#45;&gt;N67</title>
<path fill="none" stroke="black" d="M2290.5,-829.948C2290.5,-815.896 2290.5,-798.783 2290.5,-784.773"/>
<polygon fill="black" stroke="black" points="2294,-784.766 2290.5,-774.766 2287,-784.766 2294,-784.766"/>
<text text-anchor="middle" x="2299.5" y="-800.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N34&#45;&gt;N7 -->
<g id="edge7" class="edge"><title>N34&#45;&gt;N7</title>
<path fill="none" stroke="black" d="M1417.44,-1624.9C1381.4,-1611.33 1330.3,-1592.08 1291.93,-1577.63"/>
<polygon fill="black" stroke="black" points="1293.06,-1574.31 1282.47,-1574.06 1290.59,-1580.86 1293.06,-1574.31"/>
<text text-anchor="middle" x="1376" y="-1595.8" font-family="Times,serif" font-size="14.00">13.2</text>
</g>
<!-- N35&#45;&gt;N9 -->
<g id="edge6" class="edge"><title>N35&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1368.5,-245.854C1368.5,-233.122 1368.5,-215.313 1368.5,-200.611"/>
<polygon fill="black" stroke="black" points="1372,-200.571 1368.5,-190.572 1365,-200.572 1372,-200.571"/>
<text text-anchor="middle" x="1381" y="-216.8" font-family="Times,serif" font-size="14.00">12.9</text>
</g>
<!-- N36 -->
<g id="node37" class="node"><title>N36</title>
<polygon fill="none" stroke="black" points="195,-1045 0,-1045 0,-1010 195,-1010 195,-1045"/>
<text text-anchor="middle" x="97.5" y="-1034.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).AddEvent</text>
<text text-anchor="end" x="187" y="-1025.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="187" y="-1016.6" font-family="Times,serif" font-size="8.00">of 12.7 (8.1%)</text>
</g>
<!-- N36&#45;&gt;N9 -->
<g id="edge39" class="edge"><title>N36&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M97.5,-1009.93C97.5,-989.406 97.5,-953.375 97.5,-922.5 97.5,-922.5 97.5,-922.5 97.5,-262.5 97.5,-200.074 1086.14,-178.923 1319.55,-174.799"/>
<polygon fill="black" stroke="black" points="1319.83,-178.295 1329.77,-174.621 1319.71,-171.296 1319.83,-178.295"/>
<text text-anchor="middle" x="110" y="-598.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N37 -->
<g id="node38" class="node"><title>N37</title>
<polygon fill="none" stroke="black" points="351,-1317 144,-1317 144,-1282 351,-1282 351,-1317"/>
<text text-anchor="middle" x="247.5" y="-1306.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerKill</text>
<text text-anchor="end" x="343" y="-1297.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="343" y="-1288.6" font-family="Times,serif" font-size="8.00">of 12.7 (8.1%)</text>
</g>
<!-- N38 -->
<g id="node39" class="node"><title>N38</title>
<polygon fill="none" stroke="black" points="225.5,-1211 31.5,-1211 31.5,-1176 225.5,-1176 225.5,-1211"/>
<text text-anchor="middle" x="128.5" y="-1200.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).LogEvent</text>
<text text-anchor="end" x="217.5" y="-1191.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="217.5" y="-1182.6" font-family="Times,serif" font-size="8.00">of 12.7 (8.1%)</text>
</g>
<!-- N37&#45;&gt;N38 -->
<g id="edge59" class="edge"><title>N37&#45;&gt;N38</title>
<path fill="none" stroke="black" d="M228.381,-1281.79C208.603,-1264.51 177.554,-1237.37 155.325,-1217.94"/>
<polygon fill="black" stroke="black" points="157.405,-1215.11 147.572,-1211.17 152.798,-1220.38 157.405,-1215.11"/>
<text text-anchor="middle" x="219" y="-1242.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N38&#45;&gt;N36 -->
<g id="edge93" class="edge"><title>N38&#45;&gt;N36</title>
<path fill="none" stroke="black" d="M115.502,-1175.81C111.964,-1170.41 108.547,-1164.21 106.5,-1158 95.2723,-1123.95 94.5233,-1082.21 95.5654,-1055.49"/>
<polygon fill="black" stroke="black" points="99.0681,-1055.52 96.0754,-1045.36 92.077,-1055.17 99.0681,-1055.52"/>
<text text-anchor="middle" x="119" y="-1106.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N39&#45;&gt;N37 -->
<g id="edge48" class="edge"><title>N39&#45;&gt;N37</title>
<path fill="none" stroke="black" d="M321.178,-1399.88C306.682,-1380.33 282.478,-1347.68 265.791,-1325.17"/>
<polygon fill="black" stroke="black" points="268.566,-1323.04 259.799,-1317.09 262.943,-1327.21 268.566,-1323.04"/>
<text text-anchor="middle" x="319" y="-1354.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N40&#45;&gt;N9 -->
<g id="edge78" class="edge"><title>N40&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M2036.75,-834.348C2031.7,-767.155 2017.5,-563.06 2017.5,-393.5 2017.5,-393.5 2017.5,-393.5 2017.5,-262.5 2017.5,-201.977 1568.67,-180.913 1417.51,-175.535"/>
<polygon fill="black" stroke="black" points="1417.27,-172.024 1407.15,-175.174 1417.03,-179.02 1417.27,-172.024"/>
<text text-anchor="middle" x="2028.5" y="-501.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N41 -->
<g id="node42" class="node"><title>N41</title>
<polygon fill="none" stroke="black" points="1964.5,-774.5 1892.5,-774.5 1892.5,-739.5 1964.5,-739.5 1964.5,-774.5"/>
<text text-anchor="middle" x="1928.5" y="-764.1" font-family="Times,serif" font-size="8.00">path/filepath.Join</text>
<text text-anchor="end" x="1956.5" y="-755.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1956.5" y="-746.1" font-family="Times,serif" font-size="8.00">of 9.0 (5.7%)</text>
</g>
<!-- N40&#45;&gt;N41 -->
<g id="edge3" class="edge"><title>N40&#45;&gt;N41</title>
<path fill="none" stroke="black" d="M2013.26,-834.287C1995.77,-818.545 1972.53,-797.63 1954.81,-781.681"/>
<polygon fill="black" stroke="black" points="1956.87,-778.827 1947.1,-774.739 1952.19,-784.03 1956.87,-778.827"/>
<text text-anchor="middle" x="1996.5" y="-800.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N46 -->
<g id="node47" class="node"><title>N46</title>
<polygon fill="none" stroke="black" points="2010,-681 1847,-681 1847,-631 2010,-631 2010,-681"/>
<text text-anchor="middle" x="1928.5" y="-661.56" font-family="Times,serif" font-size="19.30">path/filepath.Clean</text>
<text text-anchor="end" x="2002" y="-640.56" font-family="Times,serif" font-size="19.30">8.0 (5.1%)</text>
</g>
<!-- N41&#45;&gt;N46 -->
<g id="edge52" class="edge"><title>N41&#45;&gt;N46</title>
<path fill="none" stroke="black" d="M1928.5,-739.206C1928.5,-726.173 1928.5,-707.665 1928.5,-691.509"/>
<polygon fill="black" stroke="black" points="1932,-691.313 1928.5,-681.313 1925,-691.313 1932,-691.313"/>
<text text-anchor="middle" x="1937.5" y="-705.8" font-family="Times,serif" font-size="14.00">8.0</text>
</g>
<!-- N56 -->
<g id="node57" class="node"><title>N56</title>
<polygon fill="none" stroke="black" points="2056.5,-992 1780.5,-992 1780.5,-957 2056.5,-957 2056.5,-992"/>
<text text-anchor="middle" x="1918.5" y="-981.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).buildHostnameAndHostsFiles</text>
<text text-anchor="end" x="2048.5" y="-972.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2048.5" y="-963.6" font-family="Times,serif" font-size="8.00">of 5.5 (3.5%)</text>
</g>
<!-- N42&#45;&gt;N56 -->
<g id="edge37" class="edge"><title>N42&#45;&gt;N56</title>
<path fill="none" stroke="black" d="M1931.63,-1092.8C1929.09,-1070.13 1924.53,-1029.36 1921.51,-1002.36"/>
<polygon fill="black" stroke="black" points="1924.98,-1001.96 1920.39,-992.411 1918.03,-1002.74 1924.98,-1001.96"/>
<text text-anchor="middle" x="1935.5" y="-1023.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N44 -->
<g id="node45" class="node"><title>N44</title>
<polygon fill="none" stroke="black" points="625,-992 426,-992 426,-957 625,-957 625,-992"/>
<text text-anchor="middle" x="525.5" y="-981.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).register</text>
<text text-anchor="end" x="617" y="-972.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="617" y="-963.6" font-family="Times,serif" font-size="8.00">of 8.0 (5.1%)</text>
</g>
<!-- N43&#45;&gt;N44 -->
<g id="edge64" class="edge"><title>N43&#45;&gt;N44</title>
<path fill="none" stroke="black" d="M481.731,-1092.8C490.227,-1070.03 505.538,-1029 515.611,-1002"/>
<polygon fill="black" stroke="black" points="518.973,-1003 519.19,-992.411 512.415,-1000.56 518.973,-1003"/>
<text text-anchor="middle" x="521.5" y="-1023.8" font-family="Times,serif" font-size="14.00">8.0</text>
</g>
<!-- N45 -->
<g id="node46" class="node"><title>N45</title>
<polygon fill="none" stroke="black" points="767,-883 316,-883 316,-833 767,-833 767,-883"/>
<text text-anchor="middle" x="541.5" y="-863.56" font-family="Times,serif" font-size="19.30">github.com/dotcloud/docker/utils.NewWriteBroadcaster</text>
<text text-anchor="end" x="759" y="-842.56" font-family="Times,serif" font-size="19.30">8.0 (5.1%)</text>
</g>
<!-- N44&#45;&gt;N45 -->
<g id="edge67" class="edge"><title>N44&#45;&gt;N45</title>
<path fill="none" stroke="black" d="M527.861,-956.605C530.181,-940.002 533.789,-914.184 536.711,-893.272"/>
<polygon fill="black" stroke="black" points="540.206,-893.548 538.124,-883.16 533.274,-892.579 540.206,-893.548"/>
<text text-anchor="middle" x="544.5" y="-917.8" font-family="Times,serif" font-size="14.00">8.0</text>
</g>
<!-- N47 -->
<g id="node48" class="node"><title>N47</title>
<polygon fill="none" stroke="black" points="2341.5,-480 2239.5,-480 2239.5,-418 2341.5,-418 2341.5,-480"/>
<text text-anchor="middle" x="2290.5" y="-463.2" font-family="Times,serif" font-size="16.00">os.NewFile</text>
<text text-anchor="end" x="2333.5" y="-445.2" font-family="Times,serif" font-size="16.00">4.0 (2.5%)</text>
<text text-anchor="end" x="2333.5" y="-427.2" font-family="Times,serif" font-size="16.00">of 7.5 (4.8%)</text>
</g>
<!-- N76 -->
<g id="node77" class="node"><title>N76</title>
<polygon fill="none" stroke="black" points="2331.5,-367 2249.5,-367 2249.5,-332 2331.5,-332 2331.5,-367"/>
<text text-anchor="middle" x="2290.5" y="-356.6" font-family="Times,serif" font-size="8.00">runtime.SetFinalizer</text>
<text text-anchor="end" x="2323.5" y="-347.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2323.5" y="-338.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.5%)</text>
</g>
<!-- N47&#45;&gt;N76 -->
<g id="edge15" class="edge"><title>N47&#45;&gt;N76</title>
<path fill="none" stroke="black" d="M2290.5,-417.951C2290.5,-405.055 2290.5,-390.101 2290.5,-377.555"/>
<polygon fill="black" stroke="black" points="2294,-377.262 2290.5,-367.262 2287,-377.262 2294,-377.262"/>
<text text-anchor="middle" x="2299.5" y="-388.8" font-family="Times,serif" font-size="14.00">3.5</text>
</g>
<!-- N48 -->
<g id="node49" class="node"><title>N48</title>
<polygon fill="none" stroke="black" points="2393.5,-684 2187.5,-684 2187.5,-628 2393.5,-628 2393.5,-684"/>
<text text-anchor="middle" x="2290.5" y="-668.56" font-family="Times,serif" font-size="14.30">os/exec.(*Cmd).writerDescriptor</text>
<text text-anchor="end" x="2385.5" y="-652.56" font-family="Times,serif" font-size="14.30">2.5 (1.6%)</text>
<text text-anchor="end" x="2385.5" y="-636.56" font-family="Times,serif" font-size="14.30">of 7.5 (4.8%)</text>
</g>
<!-- N48&#45;&gt;N9 -->
<g id="edge35" class="edge"><title>N48&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M2248.51,-627.805C2226.68,-610.09 2204.5,-584.768 2204.5,-555 2204.5,-555 2204.5,-555 2204.5,-262.5 2204.5,-236.542 2195.9,-226.119 2173.5,-213 2108.41,-174.877 1581.79,-173.307 1417.36,-173.76"/>
<polygon fill="black" stroke="black" points="1417.05,-170.261 1407.06,-173.792 1417.08,-177.261 1417.05,-170.261"/>
<text text-anchor="middle" x="2213.5" y="-388.8" font-family="Times,serif" font-size="14.00">1.5</text>
</g>
<!-- N66 -->
<g id="node67" class="node"><title>N66</title>
<polygon fill="none" stroke="black" points="2320,-571.5 2261,-571.5 2261,-536.5 2320,-536.5 2320,-571.5"/>
<text text-anchor="middle" x="2290.5" y="-561.1" font-family="Times,serif" font-size="8.00">os.Pipe</text>
<text text-anchor="end" x="2312" y="-552.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2312" y="-543.1" font-family="Times,serif" font-size="8.00">of 5.0 (3.2%)</text>
</g>
<!-- N48&#45;&gt;N66 -->
<g id="edge77" class="edge"><title>N48&#45;&gt;N66</title>
<path fill="none" stroke="black" d="M2290.5,-627.939C2290.5,-613.65 2290.5,-596.17 2290.5,-581.904"/>
<polygon fill="black" stroke="black" points="2294,-581.728 2290.5,-571.728 2287,-581.728 2294,-581.728"/>
<text text-anchor="middle" x="2299.5" y="-598.8" font-family="Times,serif" font-size="14.00">3.0</text>
</g>
<!-- N49 -->
<g id="node50" class="node"><title>N49</title>
<polygon fill="none" stroke="black" points="2382,-2016 2187,-2016 2187,-1981 2382,-1981 2382,-2016"/>
<text text-anchor="middle" x="2284.5" y="-2005.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.ListenAndServe</text>
<text text-anchor="end" x="2374" y="-1996.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2374" y="-1987.6" font-family="Times,serif" font-size="8.00">of 7.0 (4.5%)</text>
</g>
<!-- N51 -->
<g id="node52" class="node"><title>N51</title>
<polygon fill="none" stroke="black" points="2331,-1930 2238,-1930 2238,-1895 2331,-1895 2331,-1930"/>
<text text-anchor="middle" x="2284.5" y="-1919.6" font-family="Times,serif" font-size="8.00">net/http.(*Server).Serve</text>
<text text-anchor="end" x="2323" y="-1910.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2323" y="-1901.6" font-family="Times,serif" font-size="8.00">of 7.0 (4.5%)</text>
</g>
<!-- N49&#45;&gt;N51 -->
<g id="edge53" class="edge"><title>N49&#45;&gt;N51</title>
<path fill="none" stroke="black" d="M2284.5,-1980.9C2284.5,-1969.28 2284.5,-1953.51 2284.5,-1940.14"/>
<polygon fill="black" stroke="black" points="2288,-1940.06 2284.5,-1930.06 2281,-1940.06 2288,-1940.06"/>
<text text-anchor="middle" x="2293.5" y="-1951.8" font-family="Times,serif" font-size="14.00">7.0</text>
</g>
<!-- N50&#45;&gt;N49 -->
<g id="edge22" class="edge"><title>N50&#45;&gt;N49</title>
<path fill="none" stroke="black" d="M2276.95,-2086.79C2278.36,-2070.49 2280.53,-2045.43 2282.18,-2026.34"/>
<polygon fill="black" stroke="black" points="2285.68,-2026.43 2283.06,-2016.17 2278.71,-2025.83 2285.68,-2026.43"/>
<text text-anchor="middle" x="2289.5" y="-2047.8" font-family="Times,serif" font-size="14.00">7.0</text>
</g>
<!-- N52 -->
<g id="node53" class="node"><title>N52</title>
<polygon fill="none" stroke="black" points="2359.5,-1844 2209.5,-1844 2209.5,-1797 2359.5,-1797 2359.5,-1844"/>
<text text-anchor="middle" x="2284.5" y="-1830.4" font-family="Times,serif" font-size="12.00">net/http.(*Server).newConn</text>
<text text-anchor="end" x="2351.5" y="-1817.4" font-family="Times,serif" font-size="12.00">1.0 (0.6%)</text>
<text text-anchor="end" x="2351.5" y="-1804.4" font-family="Times,serif" font-size="12.00">of 7.0 (4.5%)</text>
</g>
<!-- N51&#45;&gt;N52 -->
<g id="edge17" class="edge"><title>N51&#45;&gt;N52</title>
<path fill="none" stroke="black" d="M2284.5,-1894.99C2284.5,-1883.59 2284.5,-1868.04 2284.5,-1854.18"/>
<polygon fill="black" stroke="black" points="2288,-1854 2284.5,-1844 2281,-1854 2288,-1854"/>
<text text-anchor="middle" x="2293.5" y="-1865.8" font-family="Times,serif" font-size="14.00">7.0</text>
</g>
<!-- N53&#45;&gt;N9 -->
<g id="edge24" class="edge"><title>N53&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1480.54,-245.854C1458.57,-231.762 1426.9,-211.452 1402.83,-196.017"/>
<polygon fill="black" stroke="black" points="1404.65,-193.024 1394.34,-190.572 1400.87,-198.916 1404.65,-193.024"/>
<text text-anchor="middle" x="1459.5" y="-216.8" font-family="Times,serif" font-size="14.00">6.2</text>
</g>
<!-- N54 -->
<g id="node55" class="node"><title>N54</title>
<polygon fill="none" stroke="black" points="1790,-680 1687,-680 1687,-632 1790,-632 1790,-680"/>
<text text-anchor="middle" x="1738.5" y="-661.76" font-family="Times,serif" font-size="17.80">concatstring</text>
<text text-anchor="end" x="1782" y="-641.76" font-family="Times,serif" font-size="17.80">6.0 (3.8%)</text>
</g>
<!-- N55&#45;&gt;N54 -->
<g id="edge87" class="edge"><title>N55&#45;&gt;N54</title>
<path fill="none" stroke="black" d="M1738.5,-739.206C1738.5,-725.901 1738.5,-706.891 1738.5,-690.502"/>
<polygon fill="black" stroke="black" points="1742,-690.197 1738.5,-680.197 1735,-690.197 1742,-690.197"/>
<text text-anchor="middle" x="1747.5" y="-705.8" font-family="Times,serif" font-size="14.00">6.0</text>
</g>
<!-- N63 -->
<g id="node64" class="node"><title>N63</title>
<polygon fill="none" stroke="black" points="1803,-875.5 1554,-875.5 1554,-840.5 1803,-840.5 1803,-875.5"/>
<text text-anchor="middle" x="1678.5" y="-865.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).getRootResourcePath</text>
<text text-anchor="end" x="1795" y="-856.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1795" y="-847.1" font-family="Times,serif" font-size="8.00">of 5.0 (3.2%)</text>
</g>
<!-- N56&#45;&gt;N63 -->
<g id="edge85" class="edge"><title>N56&#45;&gt;N63</title>
<path fill="none" stroke="black" d="M1883.86,-956.973C1841.23,-936.636 1768.81,-902.085 1722.35,-879.918"/>
<polygon fill="black" stroke="black" points="1723.66,-876.669 1713.13,-875.522 1720.65,-882.987 1723.66,-876.669"/>
<text text-anchor="middle" x="1850.5" y="-917.8" font-family="Times,serif" font-size="14.00">2.0</text>
</g>
<!-- N57 -->
<g id="node58" class="node"><title>N57</title>
<polygon fill="none" stroke="black" points="2514,-774.5 2437,-774.5 2437,-739.5 2514,-739.5 2514,-774.5"/>
<text text-anchor="middle" x="2475.5" y="-764.1" font-family="Times,serif" font-size="8.00">os.(*Process).Wait</text>
<text text-anchor="end" x="2506" y="-755.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2506" y="-746.1" font-family="Times,serif" font-size="8.00">of 5.5 (3.5%)</text>
</g>
<!-- N58 -->
<g id="node59" class="node"><title>N58</title>
<polygon fill="none" stroke="black" points="2555.5,-679 2411.5,-679 2411.5,-633 2555.5,-633 2555.5,-679"/>
<text text-anchor="middle" x="2483.5" y="-661.08" font-family="Times,serif" font-size="17.40">os.(*Process).wait</text>
<text text-anchor="end" x="2547.5" y="-642.08" font-family="Times,serif" font-size="17.40">5.5 (3.5%)</text>
</g>
<!-- N57&#45;&gt;N58 -->
<g id="edge14" class="edge"><title>N57&#45;&gt;N58</title>
<path fill="none" stroke="black" d="M2476.86,-739.206C2477.95,-725.63 2479.53,-706.113 2480.87,-689.502"/>
<polygon fill="black" stroke="black" points="2484.4,-689.348 2481.71,-679.098 2477.42,-688.784 2484.4,-689.348"/>
<text text-anchor="middle" x="2488.5" y="-705.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N59&#45;&gt;N57 -->
<g id="edge73" class="edge"><title>N59&#45;&gt;N57</title>
<path fill="none" stroke="black" d="M2438.13,-840.206C2445.16,-824.753 2455.68,-801.601 2463.77,-783.801"/>
<polygon fill="black" stroke="black" points="2467.03,-785.098 2467.98,-774.546 2460.65,-782.201 2467.03,-785.098"/>
<text text-anchor="middle" x="2465.5" y="-800.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N60 -->
<g id="node61" class="node"><title>N60</title>
<polygon fill="none" stroke="black" points="1703,-577 1480,-577 1480,-531 1703,-531 1703,-577"/>
<text text-anchor="middle" x="1591.5" y="-559.48" font-family="Times,serif" font-size="16.90">encoding/hex.EncodeToString</text>
<text text-anchor="end" x="1695" y="-540.48" font-family="Times,serif" font-size="16.90">5.0 (3.2%)</text>
</g>
<!-- N61 -->
<g id="node62" class="node"><title>N61</title>
<polygon fill="none" stroke="black" points="2597,-2122 2450,-2122 2450,-2087 2597,-2087 2597,-2122"/>
<text text-anchor="middle" x="2523.5" y="-2111.6" font-family="Times,serif" font-size="8.00">encoding/json.(*decodeState).unmarshal</text>
<text text-anchor="end" x="2589" y="-2102.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2589" y="-2093.6" font-family="Times,serif" font-size="8.00">of 5.0 (3.2%)</text>
</g>
<!-- N62 -->
<g id="node63" class="node"><title>N62</title>
<polygon fill="none" stroke="black" points="2589,-2016 2458,-2016 2458,-1981 2589,-1981 2589,-2016"/>
<text text-anchor="middle" x="2523.5" y="-2005.6" font-family="Times,serif" font-size="8.00">encoding/json.(*decodeState).value</text>
<text text-anchor="end" x="2581" y="-1996.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2581" y="-1987.6" font-family="Times,serif" font-size="8.00">of 5.0 (3.2%)</text>
</g>
<!-- N61&#45;&gt;N62 -->
<g id="edge42" class="edge"><title>N61&#45;&gt;N62</title>
<path fill="none" stroke="black" d="M2523.5,-2086.79C2523.5,-2070.49 2523.5,-2045.43 2523.5,-2026.34"/>
<polygon fill="black" stroke="black" points="2527,-2026.17 2523.5,-2016.17 2520,-2026.17 2527,-2026.17"/>
<text text-anchor="middle" x="2532.5" y="-2047.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N68 -->
<g id="node69" class="node"><title>N68</title>
<polygon fill="none" stroke="black" points="2479.5,-1930 2349.5,-1930 2349.5,-1895 2479.5,-1895 2479.5,-1930"/>
<text text-anchor="middle" x="2414.5" y="-1919.6" font-family="Times,serif" font-size="8.00">encoding/json.(*decodeState).array</text>
<text text-anchor="end" x="2471.5" y="-1910.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2471.5" y="-1901.6" font-family="Times,serif" font-size="8.00">of 4.5 (2.9%)</text>
</g>
<!-- N62&#45;&gt;N68 -->
<g id="edge63" class="edge"><title>N62&#45;&gt;N68</title>
<path fill="none" stroke="black" d="M2457.56,-1982.26C2447.13,-1977.48 2437.26,-1971.22 2429.5,-1963 2423.61,-1956.76 2420.02,-1948.27 2417.84,-1940.09"/>
<polygon fill="black" stroke="black" points="2421.23,-1939.16 2415.77,-1930.08 2414.37,-1940.58 2421.23,-1939.16"/>
<text text-anchor="middle" x="2438.5" y="-1951.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N73 -->
<g id="node74" class="node"><title>N73</title>
<polygon fill="none" stroke="black" points="2631,-1930 2498,-1930 2498,-1895 2631,-1895 2631,-1930"/>
<text text-anchor="middle" x="2564.5" y="-1919.6" font-family="Times,serif" font-size="8.00">encoding/json.(*decodeState).object</text>
<text text-anchor="end" x="2623" y="-1910.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2623" y="-1901.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.5%)</text>
</g>
<!-- N62&#45;&gt;N73 -->
<g id="edge91" class="edge"><title>N62&#45;&gt;N73</title>
<path fill="none" stroke="black" d="M2518.48,-1980.64C2516.45,-1970.67 2515.6,-1958.06 2520.5,-1948 2522.41,-1944.07 2525.01,-1940.46 2528,-1937.17"/>
<polygon fill="black" stroke="black" points="2530.63,-1939.5 2535.52,-1930.1 2525.84,-1934.4 2530.63,-1939.5"/>
<text text-anchor="middle" x="2529.5" y="-1951.8" font-family="Times,serif" font-size="14.00">7.5</text>
</g>
<!-- N63&#45;&gt;N41 -->
<g id="edge25" class="edge"><title>N63&#45;&gt;N41</title>
<path fill="none" stroke="black" d="M1720.34,-840.43C1765.25,-822.649 1836.34,-794.494 1882.71,-776.132"/>
<polygon fill="black" stroke="black" points="1884.2,-779.306 1892.21,-772.37 1881.63,-772.798 1884.2,-779.306"/>
<text text-anchor="middle" x="1835.5" y="-800.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N64&#45;&gt;N9 -->
<g id="edge26" class="edge"><title>N64&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1238.5,-903.74C1238.5,-881.35 1238.5,-840.439 1238.5,-805.5 1238.5,-805.5 1238.5,-805.5 1238.5,-262.5 1238.5,-221.522 1283.18,-198.173 1320.16,-185.868"/>
<polygon fill="black" stroke="black" points="1321.35,-189.161 1329.85,-182.829 1319.26,-182.482 1321.35,-189.161"/>
<text text-anchor="middle" x="1247.5" y="-550.3" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N65&#45;&gt;N60 -->
<g id="edge2" class="edge"><title>N65&#45;&gt;N60</title>
<path fill="none" stroke="black" d="M1577.31,-638.487C1579.67,-624.613 1583.11,-604.373 1586.01,-587.297"/>
<polygon fill="black" stroke="black" points="1589.51,-587.604 1587.73,-577.158 1582.61,-586.43 1589.51,-587.604"/>
<text text-anchor="middle" x="1594.5" y="-598.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N66&#45;&gt;N47 -->
<g id="edge16" class="edge"><title>N66&#45;&gt;N47</title>
<path fill="none" stroke="black" d="M2290.5,-536.451C2290.5,-524.043 2290.5,-506.509 2290.5,-490.472"/>
<polygon fill="black" stroke="black" points="2294,-490.218 2290.5,-480.218 2287,-490.218 2294,-490.218"/>
<text text-anchor="middle" x="2299.5" y="-501.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N67&#45;&gt;N48 -->
<g id="edge72" class="edge"><title>N67&#45;&gt;N48</title>
<path fill="none" stroke="black" d="M2290.5,-739.206C2290.5,-727.014 2290.5,-710.031 2290.5,-694.665"/>
<polygon fill="black" stroke="black" points="2294,-694.363 2290.5,-684.363 2287,-694.364 2294,-694.363"/>
<text text-anchor="middle" x="2299.5" y="-705.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N68&#45;&gt;N62 -->
<g id="edge84" class="edge"><title>N68&#45;&gt;N62</title>
<path fill="none" stroke="black" d="M2435.99,-1930.06C2452.55,-1942.82 2475.63,-1960.61 2493.93,-1974.71"/>
<polygon fill="black" stroke="black" points="2491.91,-1977.57 2501.97,-1980.9 2496.18,-1972.03 2491.91,-1977.57"/>
<text text-anchor="middle" x="2484.5" y="-1951.8" font-family="Times,serif" font-size="14.00">3.0</text>
</g>
<!-- N69 -->
<g id="node70" class="node"><title>N69</title>
<polygon fill="none" stroke="black" points="2572.5,-2259.5 2474.5,-2259.5 2474.5,-2224.5 2572.5,-2224.5 2572.5,-2259.5"/>
<text text-anchor="middle" x="2523.5" y="-2249.1" font-family="Times,serif" font-size="8.00">encoding/json.Unmarshal</text>
<text text-anchor="end" x="2564.5" y="-2240.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2564.5" y="-2231.1" font-family="Times,serif" font-size="8.00">of 4.5 (2.9%)</text>
</g>
<!-- N69&#45;&gt;N61 -->
<g id="edge11" class="edge"><title>N69&#45;&gt;N61</title>
<path fill="none" stroke="black" d="M2523.5,-2224.39C2523.5,-2201.43 2523.5,-2159.74 2523.5,-2132.33"/>
<polygon fill="black" stroke="black" points="2527,-2132.25 2523.5,-2122.25 2520,-2132.25 2527,-2132.25"/>
<text text-anchor="middle" x="2532.5" y="-2143.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N70 -->
<g id="node71" class="node"><title>N70</title>
<polygon fill="none" stroke="black" points="2131.5,-466.5 2045.5,-466.5 2045.5,-431.5 2131.5,-431.5 2131.5,-466.5"/>
<text text-anchor="middle" x="2088.5" y="-456.1" font-family="Times,serif" font-size="8.00">bytes.(*Buffer).Write</text>
<text text-anchor="end" x="2123.5" y="-447.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2123.5" y="-438.1" font-family="Times,serif" font-size="8.00">of 4.0 (2.5%)</text>
</g>
<!-- N71 -->
<g id="node72" class="node"><title>N71</title>
<polygon fill="none" stroke="black" points="2130.5,-367 2046.5,-367 2046.5,-332 2130.5,-332 2130.5,-367"/>
<text text-anchor="middle" x="2088.5" y="-356.6" font-family="Times,serif" font-size="8.00">bytes.(*Buffer).grow</text>
<text text-anchor="end" x="2122.5" y="-347.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2122.5" y="-338.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.5%)</text>
</g>
<!-- N70&#45;&gt;N71 -->
<g id="edge55" class="edge"><title>N70&#45;&gt;N71</title>
<path fill="none" stroke="black" d="M2088.5,-431.46C2088.5,-416.613 2088.5,-394.55 2088.5,-377.205"/>
<polygon fill="black" stroke="black" points="2092,-377.121 2088.5,-367.121 2085,-377.121 2092,-377.121"/>
<text text-anchor="middle" x="2097.5" y="-388.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N72 -->
<g id="node73" class="node"><title>N72</title>
<polygon fill="none" stroke="black" points="2117,-281 2048,-281 2048,-246 2117,-246 2117,-281"/>
<text text-anchor="middle" x="2082.5" y="-270.6" font-family="Times,serif" font-size="8.00">bytes.makeSlice</text>
<text text-anchor="end" x="2109" y="-261.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2109" y="-252.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.5%)</text>
</g>
<!-- N71&#45;&gt;N72 -->
<g id="edge13" class="edge"><title>N71&#45;&gt;N72</title>
<path fill="none" stroke="black" d="M2087.31,-331.904C2086.48,-320.284 2085.36,-304.509 2084.4,-291.141"/>
<polygon fill="black" stroke="black" points="2087.89,-290.786 2083.68,-281.061 2080.9,-291.285 2087.89,-290.786"/>
<text text-anchor="middle" x="2095.5" y="-302.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N72&#45;&gt;N9 -->
<g id="edge9" class="edge"><title>N72&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M2070.71,-245.993C2061.47,-234.516 2047.54,-220.058 2031.5,-213 1975.84,-188.502 1561.64,-177.895 1417.66,-174.922"/>
<polygon fill="black" stroke="black" points="1417.43,-171.416 1407.36,-174.713 1417.29,-178.415 1417.43,-171.416"/>
<text text-anchor="middle" x="2061.5" y="-216.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N73&#45;&gt;N62 -->
<g id="edge34" class="edge"><title>N73&#45;&gt;N62</title>
<path fill="none" stroke="black" d="M2557.51,-1930.16C2553.35,-1939.84 2547.85,-1952.22 2542.5,-1963 2541.04,-1965.94 2539.46,-1968.99 2537.86,-1972.01"/>
<polygon fill="black" stroke="black" points="2534.77,-1970.35 2533.07,-1980.81 2540.92,-1973.7 2534.77,-1970.35"/>
<text text-anchor="middle" x="2558.5" y="-1951.8" font-family="Times,serif" font-size="14.00">7.0</text>
</g>
<!-- N74&#45;&gt;N55 -->
<g id="edge61" class="edge"><title>N74&#45;&gt;N55</title>
<path fill="none" stroke="black" d="M1641.09,-1092.82C1595.87,-1047.45 1482.41,-919.272 1544.5,-830 1576.44,-784.072 1641.31,-767.378 1687.22,-761.347"/>
<polygon fill="black" stroke="black" points="1687.78,-764.806 1697.29,-760.153 1686.95,-757.854 1687.78,-764.806"/>
<text text-anchor="middle" x="1544.5" y="-917.8" font-family="Times,serif" font-size="14.00">2.0</text>
</g>
<!-- N75 -->
<g id="node76" class="node"><title>N75</title>
<polygon fill="none" stroke="black" points="2335.5,-195 2245.5,-195 2245.5,-151 2335.5,-151 2335.5,-195"/>
<text text-anchor="middle" x="2290.5" y="-178.2" font-family="Times,serif" font-size="16.00">resizefintab</text>
<text text-anchor="end" x="2327.5" y="-160.2" font-family="Times,serif" font-size="16.00">4.0 (2.5%)</text>
</g>
<!-- N77 -->
<g id="node78" class="node"><title>N77</title>
<polygon fill="none" stroke="black" points="2331,-281 2250,-281 2250,-246 2331,-246 2331,-281"/>
<text text-anchor="middle" x="2290.5" y="-270.6" font-family="Times,serif" font-size="8.00">runtime.addfinalizer</text>
<text text-anchor="end" x="2323" y="-261.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2323" y="-252.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.5%)</text>
</g>
<!-- N76&#45;&gt;N77 -->
<g id="edge12" class="edge"><title>N76&#45;&gt;N77</title>
<path fill="none" stroke="black" d="M2290.5,-331.904C2290.5,-320.284 2290.5,-304.509 2290.5,-291.141"/>
<polygon fill="black" stroke="black" points="2294,-291.061 2290.5,-281.061 2287,-291.061 2294,-291.061"/>
<text text-anchor="middle" x="2299.5" y="-302.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N77&#45;&gt;N75 -->
<g id="edge10" class="edge"><title>N77&#45;&gt;N75</title>
<path fill="none" stroke="black" d="M2290.5,-245.854C2290.5,-234.442 2290.5,-218.953 2290.5,-205.277"/>
<polygon fill="black" stroke="black" points="2294,-205.27 2290.5,-195.27 2287,-205.27 2294,-205.27"/>
<text text-anchor="middle" x="2299.5" y="-216.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N78 -->
<g id="node79" class="node"><title>N78</title>
<polygon fill="none" stroke="black" points="297.5,-875.5 125.5,-875.5 125.5,-840.5 297.5,-840.5 297.5,-875.5"/>
<text text-anchor="middle" x="211.5" y="-865.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.(*Graph).Get</text>
<text text-anchor="end" x="289.5" y="-856.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="289.5" y="-847.1" font-family="Times,serif" font-size="8.00">of 3.5 (2.2%)</text>
</g>
<!-- N79 -->
<g id="node80" class="node"><title>N79</title>
<polygon fill="none" stroke="black" points="333.5,-992 131.5,-992 131.5,-957 333.5,-957 333.5,-992"/>
<text text-anchor="middle" x="232.5" y="-981.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.(*TagStore).GetImage</text>
<text text-anchor="end" x="325.5" y="-972.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="325.5" y="-963.6" font-family="Times,serif" font-size="8.00">of 3.5 (2.2%)</text>
</g>
<!-- N79&#45;&gt;N78 -->
<g id="edge4" class="edge"><title>N79&#45;&gt;N78</title>
<path fill="none" stroke="black" d="M229.401,-956.605C225.97,-937.894 220.392,-907.483 216.374,-885.575"/>
<polygon fill="black" stroke="black" points="219.79,-884.796 214.543,-875.592 212.905,-886.059 219.79,-884.796"/>
<text text-anchor="middle" x="235.5" y="-917.8" font-family="Times,serif" font-size="14.00">3.5</text>
</g>
<!-- N80&#45;&gt;N79 -->
<g id="edge44" class="edge"><title>N80&#45;&gt;N79</title>
<path fill="none" stroke="black" d="M246.506,-1092.8C243.799,-1070.13 238.931,-1029.36 235.707,-1002.36"/>
<polygon fill="black" stroke="black" points="239.18,-1001.93 234.519,-992.411 232.23,-1002.76 239.18,-1001.93"/>
<text text-anchor="middle" x="249.5" y="-1023.8" font-family="Times,serif" font-size="14.00">3.5</text>
</g>
</g>
</g></svg>
{
"cmdline": ["/usr/local/bin/docker","-d","-g","/mnt/docker","-D","-H","tcp://0.0.0.0:3333"],
"memstats": {"Alloc":158185000,"TotalAlloc":196180884016,"Sys":624599288,"Lookups":81835596,"Mallocs":962642217,"Frees":961073712,"HeapAlloc":158185000,"HeapSys":548143104,"HeapIdle":332214272,"HeapInuse":215928832,"HeapReleased":330715136,"HeapObjects":1568505,"StackInuse":18251776,"StackSys":27394048,"MSpanInuse":5070208,"MSpanSys":5767168,"MCacheInuse":1504,"MCacheSys":16384,"BuckHashSys":3513392,"GCSys":37408768,"OtherSys":2356424,"NextGC":316350784,"LastGC":1401641324781402070,"PauseTotalNs":1682708144796,"PauseNs":[355592135,376398119,381979073,381452090,375267529,389005439,375607220,386100894,386969856,364820785,382164931,380586990,370303043,365841333,379280522,393523021,367199068,368684270,351015311,389185196,370393033,376345839,386606087,382639458,362620004,383126901,384948245,378762643,381151906,388429633,359420845,370152599,379792207,376847255,386064536,370298814,387320878,357810241,374151600,352352725,368573396,388554380,363125376,379727507,346784720,379212236,378033195,380395389,379521601,369563801,374047326,366585240,368814852,383369063,373388639,389959003,374487644,391473432,364974073,352255074,377316914,346383073,389298732,362808969,375571297,381480992,362579409,359634632,353754688,387344205,391630116,373359697,366570291,377119679,373591725,378127318,385297097,389607386,380921608,382711023,380546461,357000128,373396519,375338173,389131487,380779815,362038993,368977279,372512503,387188428,354959829,366617453,391984984,389360801,390154186,372153853,359583380,384393599,375251431,390110130,372861830,378191806,369624816,355913080,373712882,380179874,359581718,376416029,382183014,370045646,364645102,383788192,390142722,388266720,392215196,356783572,388205469,369468878,373355715,379699540,390453828,361757592,388803189,378643499,357505893,382923966,356844765,377874611,371745357,373298081,360511895,365782098,356240426,371211707,377496330,378997070,376004218,354807320,374657239,376060071,356201246,364063663,380266398,376293754,375012680,383272942,391077927,370363825,383464739,388654565,382124449,372512039,390708542,369132718,388598140,377689209,387205521,357214867,378830347,368361775,382456826,368985190,377819718,382339605,379860385,390459005,387168915,352802520,382700938,369751655,374096921,368911741,391486060,372252398,381314571,352479580,384384938,389357541,365423960,367639984,361629673,376197617,361574102,382864259,353088510,362231774,359598349,355642991,368926514,375084568,374919611,379643946,387534151,375104235,383268646,383827086,368362284,384599167,358553384,365886858,366235788,376611923,388099488,359366214,382304731,361443799,381271438,376568593,375423432,377664049,386683379,386365788,389348118,384799722,372143677,358257380,385943772,361498001,383125034,380655323,379121334,382050517,376486218,381903709,386623567,367710374,384455422,370490868,358168027,387247870,387231357,379623010,381298375,383552862,375667007,377845109,355800202,377914700,374476627,360581884,356913865,358794835,388670751,381085605,353708133,355160479,387151115,390092215,369558326,390906619,362658402,381440355,387694550,384276597,387862867,390096363],"NumGC":11490,"EnableGC":true,"DebugGC":false,"BySize":[{"Size":0,"Mallocs":0,"Frees":0},{"Size":8,"Mallocs":324241800,"Frees":323960343},{"Size":16,"Mallocs":194129946,"Frees":193932206},{"Size":32,"Mallocs":57580137,"Frees":57274438},{"Size":48,"Mallocs":134373939,"Frees":134065450},{"Size":64,"Mallocs":8774074,"Frees":8693525},{"Size":80,"Mallocs":20641038,"Frees":20573152},{"Size":96,"Mallocs":69961458,"Frees":69877903},{"Size":112,"Mallocs":14431010,"Frees":14350280},{"Size":128,"Mallocs":59210653,"Frees":59188725},{"Size":144,"Mallocs":7228088,"Frees":7207981},{"Size":160,"Mallocs":52107225,"Frees":52093027},{"Size":176,"Mallocs":1485489,"Frees":1485417},{"Size":192,"Mallocs":510628,"Frees":510587},{"Size":208,"Mallocs":1461221,"Frees":1458756},{"Size":224,"Mallocs":55785,"Frees":54757},{"Size":240,"Mallocs":128402,"Frees":128033},{"Size":256,"Mallocs":2154581,"Frees":2151772},{"Size":288,"Mallocs":2963331,"Frees":2956318},{"Size":320,"Mallocs":296549,"Frees":269089},{"Size":352,"Mallocs":1596703,"Frees":1572926},{"Size":384,"Mallocs":34865,"Frees":34766},{"Size":448,"Mallocs":344027,"Frees":342148},{"Size":512,"Mallocs":1916320,"Frees":1914803},{"Size":576,"Mallocs":568546,"Frees":548415},{"Size":640,"Mallocs":27782,"Frees":26832},{"Size":704,"Mallocs":149953,"Frees":144579},{"Size":768,"Mallocs":41124,"Frees":41080},{"Size":832,"Mallocs":236047,"Frees":236018},{"Size":1024,"Mallocs":735799,"Frees":732742},{"Size":1152,"Mallocs":66577,"Frees":64595},{"Size":1280,"Mallocs":17478,"Frees":17387},{"Size":1408,"Mallocs":139600,"Frees":139562},{"Size":1536,"Mallocs":90800,"Frees":90782},{"Size":1664,"Mallocs":626785,"Frees":626749},{"Size":2048,"Mallocs":578471,"Frees":574578},{"Size":2304,"Mallocs":233248,"Frees":233215},{"Size":2560,"Mallocs":21313,"Frees":21281},{"Size":3072,"Mallocs":184619,"Frees":184546},{"Size":3328,"Mallocs":232066,"Frees":232020},{"Size":4096,"Mallocs":1919728,"Frees":1918435},{"Size":4352,"Mallocs":9112,"Frees":9100},{"Size":4608,"Mallocs":29397,"Frees":29384},{"Size":5120,"Mallocs":17802,"Frees":17638},{"Size":6144,"Mallocs":86027,"Frees":86017},{"Size":6656,"Mallocs":70416,"Frees":70410},{"Size":6912,"Mallocs":10098,"Frees":10095},{"Size":8192,"Mallocs":197955,"Frees":197945},{"Size":8704,"Mallocs":26495,"Frees":26495},{"Size":10240,"Mallocs":85297,"Frees":85175},{"Size":10496,"Mallocs":949,"Frees":949},{"Size":12288,"Mallocs":15743,"Frees":15739},{"Size":14080,"Mallocs":55859,"Frees":55859},{"Size":16384,"Mallocs":62517,"Frees":62516},{"Size":17664,"Mallocs":30735,"Frees":30735},{"Size":20480,"Mallocs":33685,"Frees":33685},{"Size":21248,"Mallocs":250,"Frees":250},{"Size":24576,"Mallocs":4688,"Frees":4687},{"Size":24832,"Mallocs":357,"Frees":357},{"Size":28672,"Mallocs":27464,"Frees":27462},{"Size":32768,"Mallocs":251742,"Frees":251619}]}
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"cmdline": ["/usr/local/bin/docker","-d","-g","/mnt/docker","-D","-H","tcp://0.0.0.0:3333"],
"memstats": {"Alloc":274818192,"TotalAlloc":192868307032,"Sys":624599288,"Lookups":54470197,"Mallocs":962513703,"Frees":960892774,"HeapAlloc":274818192,"HeapSys":548143104,"HeapIdle":218595328,"HeapInuse":329547776,"HeapReleased":18124800,"HeapObjects":1620929,"StackInuse":18251776,"StackSys":27394048,"MSpanInuse":5094752,"MSpanSys":5767168,"MCacheInuse":1504,"MCacheSys":16384,"BuckHashSys":3507112,"GCSys":37408768,"OtherSys":2362704,"NextGC":361880240,"LastGC":1401481468620061299,"PauseTotalNs":1169002666497,"PauseNs":[576063152,443969934,639817842,410481734,586867512,425902313,553925241,407505529,574775170,408312086,576666381,402827675,619617752,410583545,539865132,417665269,629769387,412244048,592730289,410966324,636222010,417310523,515272750,413002992,454314949,586367790,422823466,625841136,415911191,441686785,602750393,407669313,549060245,410935519,649355565,426762113,663470243,450607718,614940787,438952100,424291184,413504537,579444384,420474817,445045587,593424004,432768914,658807375,413837813,662251665,491779188,626587392,468987523,464678875,431450967,465782231,410463352,440525294,412993450,477173774,420789283,461615641,453950411,473557769,425744343,463801748,435385418,443317628,422824795,485416388,445243048,460697076,412984190,458634828,426445375,463229259,420285007,465308550,423890914,609607018,400924662,522480350,419961052,533549231,440380273,533403601,438959021,538098701,499696065,553401751,435961008,511192344,489606895,537248330,454721487,418613359,494023775,423934106,512163208,416538827,507475759,432776658,503969504,439218755,490029499,434241985,490785950,431204564,489405279,402094377,512242480,441103473,580014990,424527951,493789925,417573900,501555483,404540410,498282159,376450629,535765912,405766752,443687095,408176603,445592665,415669033,423630887,417755251,431131919,397850397,438523188,414281839,405652272,396766900,410098171,393768656,435048376,403654177,410990617,369884641,431442872,372414893,504375368,552128506,580585163,393313057,611770385,396321761,548668764,401805810,500271234,395371279,539326889,395585297,569522379,397140242,565094576,395714267,614114649,404869846,549224257,420041712,426016602,454424662,405503098,596258647,398276154,394202766,604247505,425892612,583540820,402937845,547728802,395217803,548936764,396646460,562696073,400040879,414677631,537862672,398961070,550460384,398817935,542682402,406791010,426807893,592571472,391293818,532325186,421775163,643568183,399317300,492837870,429139393,530641982,408167793,521770774,411732104,585575993,425462520,577746022,434411651,586284827,428267605,625259787,438513741,641671398,389710041,581620804,392387315,588194393,404238778,623525085,407233261,616317691,410760823,579272605,425659295,402469039,423887250,596855874,401034804,578636113,409114886,600916988,436063829,575377790,420759889,419196141,399296762,556413645,398588742,608372525,408570647,580004283,400491532,624363973,404940969,572753166,437708114,626344925,402247286,573653018,404827170,553384623,409415333,619526049,405503439,508952433,424449897,576998624,420238886,599843838,414108163,586979519,412851477],"NumGC":10126,"EnableGC":true,"DebugGC":false,"BySize":[{"Size":0,"Mallocs":0,"Frees":0},{"Size":8,"Mallocs":324217843,"Frees":323931677},{"Size":16,"Mallocs":194093205,"Frees":193883528},{"Size":32,"Mallocs":57561713,"Frees":57248989},{"Size":48,"Mallocs":134365151,"Frees":134049091},{"Size":64,"Mallocs":8771798,"Frees":8687289},{"Size":80,"Mallocs":20634828,"Frees":20564780},{"Size":96,"Mallocs":69951547,"Frees":69865434},{"Size":112,"Mallocs":14426634,"Frees":14342679},{"Size":128,"Mallocs":59209944,"Frees":59187011},{"Size":144,"Mallocs":7219113,"Frees":7197962},{"Size":160,"Mallocs":52106848,"Frees":52092070},{"Size":176,"Mallocs":1485393,"Frees":1485318},{"Size":192,"Mallocs":510299,"Frees":510144},{"Size":208,"Mallocs":1460856,"Frees":1457532},{"Size":224,"Mallocs":55785,"Frees":54757},{"Size":240,"Mallocs":128192,"Frees":127816},{"Size":256,"Mallocs":2154114,"Frees":2151112},{"Size":288,"Mallocs":2962787,"Frees":2954290},{"Size":320,"Mallocs":296131,"Frees":268653},{"Size":352,"Mallocs":1596316,"Frees":1571174},{"Size":384,"Mallocs":34865,"Frees":34766},{"Size":448,"Mallocs":343944,"Frees":342050},{"Size":512,"Mallocs":1915568,"Frees":1913610},{"Size":576,"Mallocs":568539,"Frees":548239},{"Size":640,"Mallocs":27769,"Frees":26819},{"Size":704,"Mallocs":149950,"Frees":144568},{"Size":768,"Mallocs":41124,"Frees":41080},{"Size":832,"Mallocs":235964,"Frees":235933},{"Size":1024,"Mallocs":735551,"Frees":732479},{"Size":1152,"Mallocs":66570,"Frees":64588},{"Size":1280,"Mallocs":17478,"Frees":17387},{"Size":1408,"Mallocs":139598,"Frees":139560},{"Size":1536,"Mallocs":90800,"Frees":90770},{"Size":1664,"Mallocs":626539,"Frees":626328},{"Size":2048,"Mallocs":578226,"Frees":573862},{"Size":2304,"Mallocs":233241,"Frees":233209},{"Size":2560,"Mallocs":21313,"Frees":21281},{"Size":3072,"Mallocs":184617,"Frees":184543},{"Size":3328,"Mallocs":232066,"Frees":232020},{"Size":4096,"Mallocs":1919205,"Frees":1916710},{"Size":4352,"Mallocs":9112,"Frees":9100},{"Size":4608,"Mallocs":29391,"Frees":29378},{"Size":5120,"Mallocs":17802,"Frees":17638},{"Size":6144,"Mallocs":86013,"Frees":86001},{"Size":6656,"Mallocs":70416,"Frees":70410},{"Size":6912,"Mallocs":10098,"Frees":10095},{"Size":8192,"Mallocs":197710,"Frees":197692},{"Size":8704,"Mallocs":26495,"Frees":26495},{"Size":10240,"Mallocs":85046,"Frees":84916},{"Size":10496,"Mallocs":949,"Frees":949},{"Size":12288,"Mallocs":15741,"Frees":15736},{"Size":14080,"Mallocs":55614,"Frees":55606},{"Size":16384,"Mallocs":62272,"Frees":62263},{"Size":17664,"Mallocs":30735,"Frees":30735},{"Size":20480,"Mallocs":33440,"Frees":33431},{"Size":21248,"Mallocs":250,"Frees":250},{"Size":24576,"Mallocs":4686,"Frees":4685},{"Size":24832,"Mallocs":357,"Frees":357},{"Size":28672,"Mallocs":27219,"Frees":27209},{"Size":32768,"Mallocs":251497,"Frees":251363}]}
}
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.38.0 (20140413.2041)
-->
<!-- Title: /usr/local/bin/docker; 170.4 MB Pages: 1 -->
<svg width="100%" height="100%"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<script type="text/ecmascript"><![CDATA[
// SVGPan
// http://www.cyberz.org/blog/2009/12/08/svgpan-a-javascript-svg-panzoomdrag-library/
// Local modification: if(true || ...) below to force panning, never moving.
// Local modification: add clamping to fix bug in handleMouseWheel.
/**
* SVGPan library 1.2
* ====================
*
* Given an unique existing element with id "viewport", including the
* the library into any SVG adds the following capabilities:
*
* - Mouse panning
* - Mouse zooming (using the wheel)
* - Object dargging
*
* Known issues:
*
* - Zooming (while panning) on Safari has still some issues
*
* Releases:
*
* 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui
* Fixed a bug with browser mouse handler interaction
*
* 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui
* Updated the zoom code to support the mouse wheel on Safari/Chrome
*
* 1.0, Andrea Leofreddi
* First release
*
* This code is licensed under the following BSD license:
*
* Copyright 2009-2010 Andrea Leofreddi <a.leofreddi@itcharm.com>. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Andrea Leofreddi.
*/
var root = document.documentElement;
var state = 'none', stateTarget, stateOrigin, stateTf;
setupHandlers(root);
/**
* Register handlers
*/
function setupHandlers(root){
setAttributes(root, {
"onmouseup" : "add(evt)",
"onmousedown" : "handleMouseDown(evt)",
"onmousemove" : "handleMouseMove(evt)",
"onmouseup" : "handleMouseUp(evt)",
//"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element
});
if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari
else
window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
var g = svgDoc.getElementById("svg");
g.width = "100%";
g.height = "100%";
}
/**
* Instance an SVGPoint object with given event coordinates.
*/
function getEventPoint(evt) {
var p = root.createSVGPoint();
p.x = evt.clientX;
p.y = evt.clientY;
return p;
}
/**
* Sets the current transform matrix of an element.
*/
function setCTM(element, matrix) {
var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
element.setAttribute("transform", s);
}
/**
* Dumps a matrix to a string (useful for debug).
*/
function dumpMatrix(matrix) {
var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]";
return s;
}
/**
* Sets attributes of an element.
*/
function setAttributes(element, attributes){
for (i in attributes)
element.setAttributeNS(null, i, attributes[i]);
}
/**
* Handle mouse move event.
*/
function handleMouseWheel(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var delta;
if(evt.wheelDelta)
delta = evt.wheelDelta / 3600; // Chrome/Safari
else
delta = evt.detail / -90; // Mozilla
var z = 1 + delta; // Zoom factor: 0.9/1.1
// Clamp to reasonable values.
// The 0.1 check is important because
// a very large scroll can turn into a
// negative z, which rotates the image 180 degrees.
if(z < 0.1)
z = 0.1;
if(z > 10.0)
z = 10.0;
var g = svgDoc.getElementById("viewport");
var p = getEventPoint(evt);
p = p.matrixTransform(g.getCTM().inverse());
// Compute new scale matrix in current mouse position
var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y);
setCTM(g, g.getCTM().multiply(k));
stateTf = stateTf.multiply(k.inverse());
}
/**
* Handle mouse move event.
*/
function handleMouseMove(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var g = svgDoc.getElementById("viewport");
if(state == 'pan') {
// Pan mode
var p = getEventPoint(evt).matrixTransform(stateTf);
setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y));
} else if(state == 'move') {
// Move mode
var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse());
setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM()));
stateOrigin = p;
}
}
/**
* Handle click event.
*/
function handleMouseDown(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var g = svgDoc.getElementById("viewport");
if(true || evt.target.tagName == "svg") {
// Pan mode
state = 'pan';
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
} else {
// Move mode
state = 'move';
stateTarget = evt.target;
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
}
}
/**
* Handle mouse button release event.
*/
function handleMouseUp(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
if(state == 'pan' || state == 'move') {
// Quit pan mode
state = '';
}
}
]]></script>
<g id="viewport" transform="translate(0,0)">
<g id="viewport" class="graph" transform="scale(1 1) rotate(0) translate(4 2342)">
<title>/usr/local/bin/docker; 170.4 MB</title>
<polygon fill="white" stroke="none" points="-4,4 -4,-2342 2367,-2342 2367,4 -4,4"/>
<!-- Legend -->
<g id="node1" class="node"><title>Legend</title>
<text text-anchor="start" x="639" y="-2314.8" font-family="Times,serif" font-size="24.00">/usr/local/bin/docker</text>
<text text-anchor="start" x="639" y="-2288.8" font-family="Times,serif" font-size="24.00">Total MB: 170.4</text>
<text text-anchor="start" x="639" y="-2262.8" font-family="Times,serif" font-size="24.00">Focusing on: 170.4</text>
<text text-anchor="start" x="639" y="-2236.8" font-family="Times,serif" font-size="24.00">Dropped nodes with &lt;= 0.9 abs(MB)</text>
<text text-anchor="start" x="639" y="-2210.8" font-family="Times,serif" font-size="24.00">Dropped edges with &lt;= 0.2 MB</text>
</g>
<!-- N1 -->
<g id="node2" class="node"><title>N1</title>
<polygon fill="none" stroke="black" points="1095,-2286.5 1021,-2286.5 1021,-2251.5 1095,-2251.5 1095,-2286.5"/>
<text text-anchor="middle" x="1058" y="-2276.1" font-family="Times,serif" font-size="8.00">runtime.gosched0</text>
<text text-anchor="end" x="1087" y="-2267.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1087" y="-2258.1" font-family="Times,serif" font-size="8.00">of 169.9 (99.7%)</text>
</g>
<!-- N2 -->
<g id="node3" class="node"><title>N2</title>
<polygon fill="none" stroke="black" points="1101.5,-2149 1014.5,-2149 1014.5,-2114 1101.5,-2114 1101.5,-2149"/>
<text text-anchor="middle" x="1058" y="-2138.6" font-family="Times,serif" font-size="8.00">net/http.(*conn).serve</text>
<text text-anchor="end" x="1093.5" y="-2129.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1093.5" y="-2120.6" font-family="Times,serif" font-size="8.00">of 113.6 (66.7%)</text>
</g>
<!-- N1&#45;&gt;N2 -->
<g id="edge72" class="edge"><title>N1&#45;&gt;N2</title>
<path fill="none" stroke="black" stroke-width="2" d="M1058,-2251.39C1058,-2228.43 1058,-2186.74 1058,-2159.33"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1061.5,-2159.25 1058,-2149.25 1054.5,-2159.25 1061.5,-2159.25"/>
<text text-anchor="middle" x="1074" y="-2170.8" font-family="Times,serif" font-size="14.00">113.6</text>
</g>
<!-- N16 -->
<g id="node17" class="node"><title>N16</title>
<polygon fill="none" stroke="black" points="743.5,-2096 590.5,-2096 590.5,-2061 743.5,-2061 743.5,-2096"/>
<text text-anchor="middle" x="667" y="-2085.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/utils.func·001</text>
<text text-anchor="end" x="735.5" y="-2076.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="735.5" y="-2067.6" font-family="Times,serif" font-size="8.00">of 35.3 (20.7%)</text>
</g>
<!-- N1&#45;&gt;N16 -->
<g id="edge68" class="edge"><title>N1&#45;&gt;N16</title>
<path fill="none" stroke="black" stroke-width="1.24358" d="M1050.64,-2251.48C1043.02,-2236.13 1029.73,-2213.65 1012,-2200 935.499,-2141.11 828.048,-2109.66 753.47,-2093.83"/>
<polygon fill="black" stroke="black" stroke-width="1.24358" points="754.132,-2090.39 743.63,-2091.79 752.712,-2097.24 754.132,-2090.39"/>
<text text-anchor="middle" x="996.5" y="-2170.8" font-family="Times,serif" font-size="14.00">35.3</text>
</g>
<!-- N37 -->
<g id="node38" class="node"><title>N37</title>
<polygon fill="none" stroke="black" points="1344.5,-2149 1173.5,-2149 1173.5,-2114 1344.5,-2114 1344.5,-2149"/>
<text text-anchor="middle" x="1259" y="-2138.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.func·008</text>
<text text-anchor="end" x="1336.5" y="-2129.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1336.5" y="-2120.6" font-family="Times,serif" font-size="8.00">of 13.0 (7.6%)</text>
</g>
<!-- N1&#45;&gt;N37 -->
<g id="edge40" class="edge"><title>N1&#45;&gt;N37</title>
<path fill="none" stroke="black" d="M1082.65,-2251.39C1118.68,-2227.09 1185.83,-2181.82 1226.07,-2154.7"/>
<polygon fill="black" stroke="black" points="1228.13,-2157.53 1234.47,-2149.04 1224.22,-2151.73 1228.13,-2157.53"/>
<text text-anchor="middle" x="1218.5" y="-2170.8" font-family="Times,serif" font-size="14.00">13.0</text>
</g>
<!-- N4 -->
<g id="node5" class="node"><title>N4</title>
<polygon fill="none" stroke="black" points="1122,-2038.5 994,-2038.5 994,-2003.5 1122,-2003.5 1122,-2038.5"/>
<text text-anchor="middle" x="1058" y="-2028.1" font-family="Times,serif" font-size="8.00">net/http.serverHandler.ServeHTTP</text>
<text text-anchor="end" x="1114" y="-2019.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1114" y="-2010.1" font-family="Times,serif" font-size="8.00">of 105.6 (62.0%)</text>
</g>
<!-- N2&#45;&gt;N4 -->
<g id="edge59" class="edge"><title>N2&#45;&gt;N4</title>
<path fill="none" stroke="black" stroke-width="2" d="M1058,-2113.55C1058,-2096.27 1058,-2069.21 1058,-2048.98"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1061.5,-2048.83 1058,-2038.83 1054.5,-2048.83 1061.5,-2048.83"/>
<text text-anchor="middle" x="1074" y="-2074.8" font-family="Times,serif" font-size="14.00">105.6</text>
</g>
<!-- N57 -->
<g id="node58" class="node"><title>N57</title>
<polygon fill="none" stroke="black" points="1281.5,-2043 1140.5,-2043 1140.5,-1999 1281.5,-1999 1281.5,-2043"/>
<text text-anchor="middle" x="1211" y="-2030.44" font-family="Times,serif" font-size="10.70">net/http.(*conn).readRequest</text>
<text text-anchor="end" x="1273.5" y="-2018.44" font-family="Times,serif" font-size="10.70">0.5 (0.3%)</text>
<text text-anchor="end" x="1273.5" y="-2006.44" font-family="Times,serif" font-size="10.70">of 6.0 (3.5%)</text>
</g>
<!-- N2&#45;&gt;N57 -->
<g id="edge25" class="edge"><title>N2&#45;&gt;N57</title>
<path fill="none" stroke="black" d="M1081.57,-2113.78C1105.98,-2096.47 1144.5,-2069.16 1173.18,-2048.82"/>
<polygon fill="black" stroke="black" points="1175.23,-2051.66 1181.36,-2043.02 1171.18,-2045.95 1175.23,-2051.66"/>
<text text-anchor="middle" x="1162" y="-2074.8" font-family="Times,serif" font-size="14.00">6.0</text>
</g>
<!-- N3 -->
<g id="node4" class="node"><title>N3</title>
<polygon fill="none" stroke="black" points="1141,-1948 975,-1948 975,-1913 1141,-1913 1141,-1948"/>
<text text-anchor="middle" x="1058" y="-1937.6" font-family="Times,serif" font-size="8.00">github.com/gorilla/mux.(*Router).ServeHTTP</text>
<text text-anchor="end" x="1133" y="-1928.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1133" y="-1919.6" font-family="Times,serif" font-size="8.00">of 105.6 (62.0%)</text>
</g>
<!-- N6 -->
<g id="node7" class="node"><title>N6</title>
<polygon fill="none" stroke="black" points="1120.5,-1854.5 995.5,-1854.5 995.5,-1819.5 1120.5,-1819.5 1120.5,-1854.5"/>
<text text-anchor="middle" x="1058" y="-1844.1" font-family="Times,serif" font-size="8.00">net/http.HandlerFunc.ServeHTTP</text>
<text text-anchor="end" x="1112.5" y="-1835.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1112.5" y="-1826.1" font-family="Times,serif" font-size="8.00">of 104.6 (61.4%)</text>
</g>
<!-- N3&#45;&gt;N6 -->
<g id="edge45" class="edge"><title>N3&#45;&gt;N6</title>
<path fill="none" stroke="black" stroke-width="2" d="M1058,-1912.72C1058,-1899.3 1058,-1880.25 1058,-1864.73"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1061.5,-1864.68 1058,-1854.68 1054.5,-1864.68 1061.5,-1864.68"/>
<text text-anchor="middle" x="1074" y="-1883.8" font-family="Times,serif" font-size="14.00">104.6</text>
</g>
<!-- N4&#45;&gt;N3 -->
<g id="edge38" class="edge"><title>N4&#45;&gt;N3</title>
<path fill="none" stroke="black" stroke-width="2" d="M1058,-2003.35C1058,-1990.62 1058,-1972.81 1058,-1958.11"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1061.5,-1958.07 1058,-1948.07 1054.5,-1958.07 1061.5,-1958.07"/>
<text text-anchor="middle" x="1074" y="-1969.8" font-family="Times,serif" font-size="14.00">105.6</text>
</g>
<!-- N5 -->
<g id="node6" class="node"><title>N5</title>
<polygon fill="none" stroke="black" points="1143.5,-1761 972.5,-1761 972.5,-1726 1143.5,-1726 1143.5,-1761"/>
<text text-anchor="middle" x="1058" y="-1750.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.func·004</text>
<text text-anchor="end" x="1135.5" y="-1741.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1135.5" y="-1732.6" font-family="Times,serif" font-size="8.00">of 104.6 (61.4%)</text>
</g>
<!-- N10 -->
<g id="node11" class="node"><title>N10</title>
<polygon fill="none" stroke="black" points="1384,-1675 1178,-1675 1178,-1640 1384,-1640 1384,-1675"/>
<text text-anchor="middle" x="1281" y="-1664.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.postContainersStart</text>
<text text-anchor="end" x="1376" y="-1655.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1376" y="-1646.6" font-family="Times,serif" font-size="8.00">of 69.2 (40.6%)</text>
</g>
<!-- N5&#45;&gt;N10 -->
<g id="edge32" class="edge"><title>N5&#45;&gt;N10</title>
<path fill="none" stroke="black" stroke-width="2" d="M1102.06,-1725.9C1138.1,-1712.33 1189.2,-1693.08 1227.57,-1678.63"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1228.91,-1681.86 1237.03,-1675.06 1226.44,-1675.31 1228.91,-1681.86"/>
<text text-anchor="middle" x="1195.5" y="-1696.8" font-family="Times,serif" font-size="14.00">69.2</text>
</g>
<!-- N25 -->
<g id="node26" class="node"><title>N25</title>
<polygon fill="none" stroke="black" points="938,-1675 726,-1675 726,-1640 938,-1640 938,-1675"/>
<text text-anchor="middle" x="832" y="-1664.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.postContainersCreate</text>
<text text-anchor="end" x="930" y="-1655.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="930" y="-1646.6" font-family="Times,serif" font-size="8.00">of 20.5 (12.0%)</text>
</g>
<!-- N5&#45;&gt;N25 -->
<g id="edge43" class="edge"><title>N5&#45;&gt;N25</title>
<path fill="none" stroke="black" d="M1013.35,-1725.9C976.824,-1712.33 925.037,-1693.08 886.149,-1678.63"/>
<polygon fill="black" stroke="black" points="887.15,-1675.26 876.558,-1675.06 884.712,-1681.83 887.15,-1675.26"/>
<text text-anchor="middle" x="971.5" y="-1696.8" font-family="Times,serif" font-size="14.00">20.5</text>
</g>
<!-- N34 -->
<g id="node35" class="node"><title>N34</title>
<polygon fill="none" stroke="black" points="1159.5,-1675 956.5,-1675 956.5,-1640 1159.5,-1640 1159.5,-1675"/>
<text text-anchor="middle" x="1058" y="-1664.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.postContainersKill</text>
<text text-anchor="end" x="1151.5" y="-1655.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1151.5" y="-1646.6" font-family="Times,serif" font-size="8.00">of 13.7 (8.0%)</text>
</g>
<!-- N5&#45;&gt;N34 -->
<g id="edge17" class="edge"><title>N5&#45;&gt;N34</title>
<path fill="none" stroke="black" d="M1058,-1725.9C1058,-1714.28 1058,-1698.51 1058,-1685.14"/>
<polygon fill="black" stroke="black" points="1061.5,-1685.06 1058,-1675.06 1054.5,-1685.06 1061.5,-1685.06"/>
<text text-anchor="middle" x="1070.5" y="-1696.8" font-family="Times,serif" font-size="14.00">13.7</text>
</g>
<!-- N6&#45;&gt;N5 -->
<g id="edge61" class="edge"><title>N6&#45;&gt;N5</title>
<path fill="none" stroke="black" stroke-width="2" d="M1058,-1819.22C1058,-1805.8 1058,-1786.75 1058,-1771.23"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1061.5,-1771.18 1058,-1761.18 1054.5,-1771.18 1061.5,-1771.18"/>
<text text-anchor="middle" x="1074" y="-1782.8" font-family="Times,serif" font-size="14.00">104.6</text>
</g>
<!-- N7 -->
<g id="node8" class="node"><title>N7</title>
<polygon fill="none" stroke="black" points="1142,-1589 974,-1589 974,-1554 1142,-1554 1142,-1589"/>
<text text-anchor="middle" x="1058" y="-1578.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/engine.(*Job).Run</text>
<text text-anchor="end" x="1134" y="-1569.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1134" y="-1560.6" font-family="Times,serif" font-size="8.00">of 101.1 (59.3%)</text>
</g>
<!-- N12 -->
<g id="node13" class="node"><title>N12</title>
<polygon fill="none" stroke="black" points="1165.5,-1483 950.5,-1483 950.5,-1448 1165.5,-1448 1165.5,-1483"/>
<text text-anchor="middle" x="1058" y="-1472.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerStart·fm</text>
<text text-anchor="end" x="1157.5" y="-1463.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1157.5" y="-1454.6" font-family="Times,serif" font-size="8.00">of 68.2 (40.0%)</text>
</g>
<!-- N7&#45;&gt;N12 -->
<g id="edge63" class="edge"><title>N7&#45;&gt;N12</title>
<path fill="none" stroke="black" stroke-width="2" d="M1058,-1553.79C1058,-1537.49 1058,-1512.43 1058,-1493.34"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1061.5,-1493.17 1058,-1483.17 1054.5,-1493.17 1061.5,-1493.17"/>
<text text-anchor="middle" x="1070.5" y="-1514.8" font-family="Times,serif" font-size="14.00">68.2</text>
</g>
<!-- N31 -->
<g id="node32" class="node"><title>N31</title>
<polygon fill="none" stroke="black" points="1404.5,-1483 1183.5,-1483 1183.5,-1448 1404.5,-1448 1404.5,-1483"/>
<text text-anchor="middle" x="1294" y="-1472.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerCreate·fm</text>
<text text-anchor="end" x="1396.5" y="-1463.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1396.5" y="-1454.6" font-family="Times,serif" font-size="8.00">of 18.0 (10.6%)</text>
</g>
<!-- N7&#45;&gt;N31 -->
<g id="edge18" class="edge"><title>N7&#45;&gt;N31</title>
<path fill="none" stroke="black" d="M1095.66,-1553.91C1136.76,-1535.79 1202.62,-1506.77 1247.06,-1487.19"/>
<polygon fill="black" stroke="black" points="1248.74,-1490.27 1256.48,-1483.03 1245.92,-1483.86 1248.74,-1490.27"/>
<text text-anchor="middle" x="1223.5" y="-1514.8" font-family="Times,serif" font-size="14.00">18.0</text>
</g>
<!-- N43 -->
<g id="node44" class="node"><title>N43</title>
<polygon fill="none" stroke="black" points="923,-1430 711,-1430 711,-1395 923,-1395 923,-1430"/>
<text text-anchor="middle" x="817" y="-1419.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerKill·fm</text>
<text text-anchor="end" x="915" y="-1410.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="915" y="-1401.6" font-family="Times,serif" font-size="8.00">of 12.7 (7.5%)</text>
</g>
<!-- N7&#45;&gt;N43 -->
<g id="edge86" class="edge"><title>N7&#45;&gt;N43</title>
<path fill="none" stroke="black" d="M1032.66,-1553.99C989.09,-1525.61 899.935,-1467.53 851.006,-1435.65"/>
<polygon fill="black" stroke="black" points="852.647,-1432.55 842.358,-1430.02 848.826,-1438.41 852.647,-1432.55"/>
<text text-anchor="middle" x="1014.5" y="-1514.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N8 -->
<g id="node9" class="node"><title>N8</title>
<polygon fill="none" stroke="black" points="1273.5,-104 1030.5,-104 1030.5,-0 1273.5,-0 1273.5,-104"/>
<text text-anchor="middle" x="1152" y="-65.44" font-family="Times,serif" font-size="43.20">cnew</text>
<text text-anchor="end" x="1265.5" y="-17.44" font-family="Times,serif" font-size="43.20">84.4 (49.5%)</text>
</g>
<!-- N9 -->
<g id="node10" class="node"><title>N9</title>
<polygon fill="none" stroke="black" points="1190.5,-190 1113.5,-190 1113.5,-155 1190.5,-155 1190.5,-190"/>
<text text-anchor="middle" x="1152" y="-179.6" font-family="Times,serif" font-size="8.00">runtime.cnewarray</text>
<text text-anchor="end" x="1182.5" y="-170.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1182.5" y="-161.6" font-family="Times,serif" font-size="8.00">of 81.4 (47.8%)</text>
</g>
<!-- N9&#45;&gt;N8 -->
<g id="edge46" class="edge"><title>N9&#45;&gt;N8</title>
<path fill="none" stroke="black" stroke-width="2" d="M1152,-154.773C1152,-144.043 1152,-129.381 1152,-114.527"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1155.5,-114.259 1152,-104.259 1148.5,-114.259 1155.5,-114.259"/>
<text text-anchor="middle" x="1164.5" y="-125.8" font-family="Times,serif" font-size="14.00">81.4</text>
</g>
<!-- N10&#45;&gt;N7 -->
<g id="edge4" class="edge"><title>N10&#45;&gt;N7</title>
<path fill="none" stroke="black" stroke-width="2" d="M1236.94,-1639.9C1200.9,-1626.33 1149.8,-1607.08 1111.43,-1592.63"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1112.56,-1589.31 1101.97,-1589.06 1110.09,-1595.86 1112.56,-1589.31"/>
<text text-anchor="middle" x="1195.5" y="-1610.8" font-family="Times,serif" font-size="14.00">68.2</text>
</g>
<!-- N11 -->
<g id="node12" class="node"><title>N11</title>
<polygon fill="none" stroke="black" points="1163,-1377 953,-1377 953,-1342 1163,-1342 1163,-1377"/>
<text text-anchor="middle" x="1058" y="-1366.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerStart</text>
<text text-anchor="end" x="1155" y="-1357.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1155" y="-1348.6" font-family="Times,serif" font-size="8.00">of 68.2 (40.0%)</text>
</g>
<!-- N13 -->
<g id="node14" class="node"><title>N13</title>
<polygon fill="none" stroke="black" points="1155,-1265 961,-1265 961,-1230 1155,-1230 1155,-1265"/>
<text text-anchor="middle" x="1058" y="-1254.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).Start</text>
<text text-anchor="end" x="1147" y="-1245.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1147" y="-1236.6" font-family="Times,serif" font-size="8.00">of 67.2 (39.4%)</text>
</g>
<!-- N11&#45;&gt;N13 -->
<g id="edge41" class="edge"><title>N11&#45;&gt;N13</title>
<path fill="none" stroke="black" stroke-width="2" d="M1058,-1341.79C1058,-1324.08 1058,-1295.86 1058,-1275.09"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1061.5,-1275 1058,-1265 1054.5,-1275 1061.5,-1275"/>
<text text-anchor="middle" x="1070.5" y="-1302.8" font-family="Times,serif" font-size="14.00">67.2</text>
</g>
<!-- N12&#45;&gt;N11 -->
<g id="edge82" class="edge"><title>N12&#45;&gt;N11</title>
<path fill="none" stroke="black" stroke-width="2" d="M1058,-1447.79C1058,-1431.49 1058,-1406.43 1058,-1387.34"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1061.5,-1387.17 1058,-1377.17 1054.5,-1387.17 1061.5,-1387.17"/>
<text text-anchor="middle" x="1070.5" y="-1408.8" font-family="Times,serif" font-size="14.00">68.2</text>
</g>
<!-- N20 -->
<g id="node21" class="node"><title>N20</title>
<polygon fill="none" stroke="black" points="1350,-1153 766,-1153 766,-1061 1350,-1061 1350,-1153"/>
<text text-anchor="middle" x="1058" y="-1128.92" font-family="Times,serif" font-size="25.10">github.com/dotcloud/docker/daemon.populateCommand</text>
<text text-anchor="end" x="1342" y="-1100.92" font-family="Times,serif" font-size="25.10">20.0 (11.7%)</text>
<text text-anchor="end" x="1342" y="-1072.92" font-family="Times,serif" font-size="25.10">of 24.5 (14.4%)</text>
</g>
<!-- N13&#45;&gt;N20 -->
<g id="edge22" class="edge"><title>N13&#45;&gt;N20</title>
<path fill="none" stroke="black" d="M1058,-1229.79C1058,-1213.3 1058,-1187.16 1058,-1163.32"/>
<polygon fill="black" stroke="black" points="1061.5,-1163.27 1058,-1153.27 1054.5,-1163.27 1061.5,-1163.27"/>
<text text-anchor="middle" x="1070.5" y="-1184.8" font-family="Times,serif" font-size="14.00">24.5</text>
</g>
<!-- N23 -->
<g id="node24" class="node"><title>N23</title>
<polygon fill="none" stroke="black" points="1600,-1124.5 1368,-1124.5 1368,-1089.5 1600,-1089.5 1600,-1124.5"/>
<text text-anchor="middle" x="1484" y="-1114.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.prepareVolumesForContainer</text>
<text text-anchor="end" x="1592" y="-1105.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1592" y="-1096.1" font-family="Times,serif" font-size="8.00">of 22.9 (13.4%)</text>
</g>
<!-- N13&#45;&gt;N23 -->
<g id="edge30" class="edge"><title>N13&#45;&gt;N23</title>
<path fill="none" stroke="black" d="M1113.99,-1229.92C1174.61,-1211.78 1274.04,-1181.47 1359,-1153 1382.43,-1145.15 1408.15,-1135.99 1430.13,-1127.99"/>
<polygon fill="black" stroke="black" points="1431.43,-1131.24 1439.62,-1124.52 1429.03,-1124.66 1431.43,-1131.24"/>
<text text-anchor="middle" x="1314.5" y="-1184.8" font-family="Times,serif" font-size="14.00">22.9</text>
</g>
<!-- N47 -->
<g id="node48" class="node"><title>N47</title>
<polygon fill="none" stroke="black" points="748,-1124.5 502,-1124.5 502,-1089.5 748,-1089.5 748,-1124.5"/>
<text text-anchor="middle" x="625" y="-1114.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).initializeNetworking</text>
<text text-anchor="end" x="740" y="-1105.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="740" y="-1096.1" font-family="Times,serif" font-size="8.00">of 8.8 (5.2%)</text>
</g>
<!-- N13&#45;&gt;N47 -->
<g id="edge77" class="edge"><title>N13&#45;&gt;N47</title>
<path fill="none" stroke="black" d="M1003.21,-1229.97C942.771,-1211.63 842.719,-1180.92 757,-1153 732.425,-1145 705.392,-1135.84 682.225,-1127.89"/>
<polygon fill="black" stroke="black" points="683.146,-1124.51 672.552,-1124.56 680.869,-1131.12 683.146,-1124.51"/>
<text text-anchor="middle" x="930" y="-1184.8" font-family="Times,serif" font-size="14.00">8.8</text>
</g>
<!-- N67 -->
<g id="node68" class="node"><title>N67</title>
<polygon fill="none" stroke="black" points="1903,-937 1683,-937 1683,-902 1903,-902 1903,-937"/>
<text text-anchor="middle" x="1793" y="-926.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.setupMountsForContainer</text>
<text text-anchor="end" x="1895" y="-917.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1895" y="-908.6" font-family="Times,serif" font-size="8.00">of 5.0 (2.9%)</text>
</g>
<!-- N13&#45;&gt;N67 -->
<g id="edge58" class="edge"><title>N13&#45;&gt;N67</title>
<path fill="none" stroke="black" d="M1144.18,-1229.96C1158.44,-1227.65 1173.1,-1225.55 1187,-1224 1265.57,-1215.23 1843.51,-1213 1895,-1153 1950.33,-1088.52 1864.5,-989.316 1818.72,-944.244"/>
<polygon fill="black" stroke="black" points="1821.1,-941.675 1811.48,-937.235 1816.23,-946.705 1821.1,-941.675"/>
<text text-anchor="middle" x="1921" y="-1103.3" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N79 -->
<g id="node80" class="node"><title>N79</title>
<polygon fill="none" stroke="black" points="1885.5,-1124.5 1618.5,-1124.5 1618.5,-1089.5 1885.5,-1089.5 1885.5,-1124.5"/>
<text text-anchor="middle" x="1752" y="-1114.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).createDaemonEnvironment</text>
<text text-anchor="end" x="1877.5" y="-1105.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1877.5" y="-1096.1" font-family="Times,serif" font-size="8.00">of 4.0 (2.3%)</text>
</g>
<!-- N13&#45;&gt;N79 -->
<g id="edge36" class="edge"><title>N13&#45;&gt;N79</title>
<path fill="none" stroke="black" d="M1149.52,-1229.97C1162.1,-1227.87 1174.86,-1225.82 1187,-1224 1250.79,-1214.46 1267.29,-1216.04 1331,-1206 1455.25,-1186.41 1487.03,-1183.71 1609,-1153 1637.53,-1145.82 1668.76,-1136.2 1694.73,-1127.7"/>
<polygon fill="black" stroke="black" points="1696.01,-1130.97 1704.4,-1124.51 1693.81,-1124.32 1696.01,-1130.97"/>
<text text-anchor="middle" x="1537" y="-1184.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N14 -->
<g id="node15" class="node"><title>N14</title>
<polygon fill="none" stroke="black" points="385,-1271 91,-1271 91,-1224 385,-1224 385,-1271"/>
<text text-anchor="middle" x="238" y="-1257.56" font-family="Times,serif" font-size="11.80">github.com/dotcloud/docker/daemon.(*Container).monitor</text>
<text text-anchor="end" x="377" y="-1244.56" font-family="Times,serif" font-size="11.80">1.0 (0.6%)</text>
<text text-anchor="end" x="377" y="-1231.56" font-family="Times,serif" font-size="11.80">of 35.3 (20.7%)</text>
</g>
<!-- N17 -->
<g id="node18" class="node"><title>N17</title>
<polygon fill="none" stroke="black" points="332,-1124.5 144,-1124.5 144,-1089.5 332,-1089.5 332,-1124.5"/>
<text text-anchor="middle" x="238" y="-1114.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Run</text>
<text text-anchor="end" x="324" y="-1105.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="324" y="-1096.1" font-family="Times,serif" font-size="8.00">of 32.3 (19.0%)</text>
</g>
<!-- N14&#45;&gt;N17 -->
<g id="edge78" class="edge"><title>N14&#45;&gt;N17</title>
<path fill="none" stroke="black" stroke-width="1.13793" d="M238,-1223.94C238,-1199.66 238,-1161.05 238,-1135.13"/>
<polygon fill="black" stroke="black" stroke-width="1.13793" points="241.5,-1134.88 238,-1124.88 234.5,-1134.88 241.5,-1134.88"/>
<text text-anchor="middle" x="250.5" y="-1184.8" font-family="Times,serif" font-size="14.00">32.3</text>
</g>
<!-- N15 -->
<g id="node16" class="node"><title>N15</title>
<polygon fill="none" stroke="black" points="368.5,-1377 203.5,-1377 203.5,-1342 368.5,-1342 368.5,-1377"/>
<text text-anchor="middle" x="286" y="-1366.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.func·016</text>
<text text-anchor="end" x="360.5" y="-1357.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="360.5" y="-1348.6" font-family="Times,serif" font-size="8.00">of 35.3 (20.7%)</text>
</g>
<!-- N15&#45;&gt;N14 -->
<g id="edge70" class="edge"><title>N15&#45;&gt;N14</title>
<path fill="none" stroke="black" stroke-width="1.24358" d="M278.71,-1341.79C271.633,-1325.58 260.708,-1300.54 251.956,-1280.48"/>
<polygon fill="black" stroke="black" stroke-width="1.24358" points="255.068,-1278.86 247.861,-1271.1 248.653,-1281.66 255.068,-1278.86"/>
<text text-anchor="middle" x="283.5" y="-1302.8" font-family="Times,serif" font-size="14.00">35.3</text>
</g>
<!-- N16&#45;&gt;N15 -->
<g id="edge19" class="edge"><title>N16&#45;&gt;N15</title>
<path fill="none" stroke="black" stroke-width="1.24358" d="M590.228,-2070.04C488.843,-2058.03 323,-2029.91 323,-1974.5 323,-1974.5 323,-1974.5 323,-1464.5 323,-1436.54 310.983,-1406.67 300.646,-1386.15"/>
<polygon fill="black" stroke="black" stroke-width="1.24358" points="303.665,-1384.37 295.915,-1377.15 297.469,-1387.63 303.665,-1384.37"/>
<text text-anchor="middle" x="335.5" y="-1739.8" font-family="Times,serif" font-size="14.00">35.3</text>
</g>
<!-- N18 -->
<g id="node19" class="node"><title>N18</title>
<polygon fill="none" stroke="black" points="357,-990 119,-990 119,-955 357,-955 357,-990"/>
<text text-anchor="middle" x="238" y="-979.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon/execdriver/native.(*driver).Run</text>
<text text-anchor="end" x="349" y="-970.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="349" y="-961.6" font-family="Times,serif" font-size="8.00">of 32.3 (19.0%)</text>
</g>
<!-- N17&#45;&gt;N18 -->
<g id="edge92" class="edge"><title>N17&#45;&gt;N18</title>
<path fill="none" stroke="black" stroke-width="1.13793" d="M238,-1089.49C238,-1067.17 238,-1027.11 238,-1000.41"/>
<polygon fill="black" stroke="black" stroke-width="1.13793" points="241.5,-1000.22 238,-990.221 234.5,-1000.22 241.5,-1000.22"/>
<text text-anchor="middle" x="250.5" y="-1021.8" font-family="Times,serif" font-size="14.00">32.3</text>
</g>
<!-- N18&#45;&gt;N9 -->
<g id="edge1" class="edge"><title>N18&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M118.651,-959.476C59.2678,-946.171 0,-918.291 0,-860 0,-860 0,-860 0,-257.5 0,-201.3 883.601,-179.11 1103.1,-174.465"/>
<polygon fill="black" stroke="black" points="1103.42,-177.959 1113.34,-174.251 1103.27,-170.96 1103.42,-177.959"/>
<text text-anchor="middle" x="9" y="-547.3" font-family="Times,serif" font-size="14.00">0.8</text>
</g>
<!-- N19 -->
<g id="node20" class="node"><title>N19</title>
<polygon fill="none" stroke="black" points="338,-876.5 138,-876.5 138,-841.5 338,-841.5 338,-876.5"/>
<text text-anchor="middle" x="238" y="-866.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/pkg/libcontainer/nsinit.Exec</text>
<text text-anchor="end" x="330" y="-857.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="330" y="-848.1" font-family="Times,serif" font-size="8.00">of 31.5 (18.5%)</text>
</g>
<!-- N18&#45;&gt;N19 -->
<g id="edge67" class="edge"><title>N18&#45;&gt;N19</title>
<path fill="none" stroke="black" stroke-width="1.10932" d="M238,-954.566C238,-936.616 238,-908.008 238,-886.954"/>
<polygon fill="black" stroke="black" stroke-width="1.10932" points="241.5,-886.728 238,-876.728 234.5,-886.729 241.5,-886.728"/>
<text text-anchor="middle" x="250.5" y="-915.8" font-family="Times,serif" font-size="14.00">31.5</text>
</g>
<!-- N33 -->
<g id="node34" class="node"><title>N33</title>
<polygon fill="none" stroke="black" points="308.5,-783 167.5,-783 167.5,-727 308.5,-727 308.5,-783"/>
<text text-anchor="middle" x="238" y="-767.32" font-family="Times,serif" font-size="14.60">os/exec.(*Cmd).Start</text>
<text text-anchor="end" x="300.5" y="-751.32" font-family="Times,serif" font-size="14.60">3.0 (1.8%)</text>
<text text-anchor="end" x="300.5" y="-735.32" font-family="Times,serif" font-size="14.60">of 15.0 (8.8%)</text>
</g>
<!-- N19&#45;&gt;N33 -->
<g id="edge44" class="edge"><title>N19&#45;&gt;N33</title>
<path fill="none" stroke="black" d="M238,-841.157C238,-828.253 238,-809.95 238,-793.618"/>
<polygon fill="black" stroke="black" points="241.5,-793.246 238,-783.246 234.5,-793.246 241.5,-793.246"/>
<text text-anchor="middle" x="250.5" y="-804.8" font-family="Times,serif" font-size="14.00">14.0</text>
</g>
<!-- N46 -->
<g id="node47" class="node"><title>N46</title>
<polygon fill="none" stroke="black" points="647,-778.5 327,-778.5 327,-731.5 647,-731.5 647,-778.5"/>
<text text-anchor="middle" x="487" y="-765.06" font-family="Times,serif" font-size="11.80">github.com/dotcloud/docker/daemon/execdriver/native.func·002</text>
<text text-anchor="end" x="639" y="-752.06" font-family="Times,serif" font-size="11.80">1.0 (0.6%)</text>
<text text-anchor="end" x="639" y="-739.06" font-family="Times,serif" font-size="11.80">of 9.0 (5.3%)</text>
</g>
<!-- N19&#45;&gt;N46 -->
<g id="edge57" class="edge"><title>N19&#45;&gt;N46</title>
<path fill="none" stroke="black" d="M278.283,-841.499C317.219,-825.549 376.842,-801.125 422.409,-782.459"/>
<polygon fill="black" stroke="black" points="423.979,-785.598 431.906,-778.569 421.326,-779.121 423.979,-785.598"/>
<text text-anchor="middle" x="379" y="-804.8" font-family="Times,serif" font-size="14.00">9.0</text>
</g>
<!-- N64 -->
<g id="node65" class="node"><title>N64</title>
<polygon fill="none" stroke="black" points="149.5,-772.5 64.5,-772.5 64.5,-737.5 149.5,-737.5 149.5,-772.5"/>
<text text-anchor="middle" x="107" y="-762.1" font-family="Times,serif" font-size="8.00">os/exec.(*Cmd).Wait</text>
<text text-anchor="end" x="141.5" y="-753.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="141.5" y="-744.1" font-family="Times,serif" font-size="8.00">of 5.5 (3.2%)</text>
</g>
<!-- N19&#45;&gt;N64 -->
<g id="edge28" class="edge"><title>N19&#45;&gt;N64</title>
<path fill="none" stroke="black" d="M216.661,-841.385C194.87,-824.418 160.873,-797.947 136.51,-778.977"/>
<polygon fill="black" stroke="black" points="138.37,-775.99 128.33,-772.608 134.07,-781.513 138.37,-775.99"/>
<text text-anchor="middle" x="190" y="-804.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N20&#45;&gt;N9 -->
<g id="edge29" class="edge"><title>N20&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1058,-1060.92C1058,-1035.29 1058,-1002.6 1058,-973.5 1058,-973.5 1058,-973.5 1058,-257.5 1058,-229.651 1081.22,-208.734 1104.58,-194.738"/>
<polygon fill="black" stroke="black" points="1106.5,-197.673 1113.5,-189.713 1103.07,-191.576 1106.5,-197.673"/>
<text text-anchor="middle" x="1067" y="-600.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N21 -->
<g id="node22" class="node"><title>N21</title>
<polygon fill="none" stroke="black" points="1576,-990 1392,-990 1392,-955 1576,-955 1576,-990"/>
<text text-anchor="middle" x="1484" y="-979.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.createVolumes</text>
<text text-anchor="end" x="1568" y="-970.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1568" y="-961.6" font-family="Times,serif" font-size="8.00">of 22.9 (13.4%)</text>
</g>
<!-- N22 -->
<g id="node23" class="node"><title>N22</title>
<polygon fill="none" stroke="black" points="1579,-876.5 1389,-876.5 1389,-841.5 1579,-841.5 1579,-876.5"/>
<text text-anchor="middle" x="1484" y="-866.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.initializeVolume</text>
<text text-anchor="end" x="1571" y="-857.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1571" y="-848.1" font-family="Times,serif" font-size="8.00">of 22.9 (13.4%)</text>
</g>
<!-- N21&#45;&gt;N22 -->
<g id="edge49" class="edge"><title>N21&#45;&gt;N22</title>
<path fill="none" stroke="black" d="M1484,-954.566C1484,-936.616 1484,-908.008 1484,-886.954"/>
<polygon fill="black" stroke="black" points="1487.5,-886.728 1484,-876.728 1480.5,-886.729 1487.5,-886.728"/>
<text text-anchor="middle" x="1496.5" y="-915.8" font-family="Times,serif" font-size="14.00">22.9</text>
</g>
<!-- N24 -->
<g id="node25" class="node"><title>N24</title>
<polygon fill="none" stroke="black" points="1553.5,-777 1316.5,-777 1316.5,-733 1553.5,-733 1553.5,-777"/>
<text text-anchor="middle" x="1435" y="-764.44" font-family="Times,serif" font-size="10.70">github.com/dotcloud/docker/graph.(*Graph).Create</text>
<text text-anchor="end" x="1545.5" y="-752.44" font-family="Times,serif" font-size="10.70">0.5 (0.3%)</text>
<text text-anchor="end" x="1545.5" y="-740.44" font-family="Times,serif" font-size="10.70">of 21.9 (12.9%)</text>
</g>
<!-- N22&#45;&gt;N24 -->
<g id="edge33" class="edge"><title>N22&#45;&gt;N24</title>
<path fill="none" stroke="black" d="M1475.91,-841.157C1468.8,-826.357 1458.28,-804.454 1449.68,-786.568"/>
<polygon fill="black" stroke="black" points="1452.63,-784.613 1445.14,-777.115 1446.32,-787.645 1452.63,-784.613"/>
<text text-anchor="middle" x="1474.5" y="-804.8" font-family="Times,serif" font-size="14.00">21.9</text>
</g>
<!-- N58 -->
<g id="node59" class="node"><title>N58</title>
<polygon fill="none" stroke="black" points="1654,-772.5 1572,-772.5 1572,-737.5 1654,-737.5 1654,-772.5"/>
<text text-anchor="middle" x="1613" y="-762.1" font-family="Times,serif" font-size="8.00">runtime.concatstring</text>
<text text-anchor="end" x="1646" y="-753.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1646" y="-744.1" font-family="Times,serif" font-size="8.00">of 6.0 (3.5%)</text>
</g>
<!-- N22&#45;&gt;N58 -->
<g id="edge85" class="edge"><title>N22&#45;&gt;N58</title>
<path fill="none" stroke="black" d="M1505.01,-841.385C1526.47,-824.418 1559.95,-797.947 1583.94,-778.977"/>
<polygon fill="black" stroke="black" points="1586.32,-781.556 1592,-772.608 1581.98,-776.065 1586.32,-781.556"/>
<text text-anchor="middle" x="1561" y="-804.8" font-family="Times,serif" font-size="14.00">0.5</text>
</g>
<!-- N23&#45;&gt;N21 -->
<g id="edge83" class="edge"><title>N23&#45;&gt;N21</title>
<path fill="none" stroke="black" d="M1484,-1089.49C1484,-1067.17 1484,-1027.11 1484,-1000.41"/>
<polygon fill="black" stroke="black" points="1487.5,-1000.22 1484,-990.221 1480.5,-1000.22 1487.5,-1000.22"/>
<text text-anchor="middle" x="1496.5" y="-1021.8" font-family="Times,serif" font-size="14.00">22.9</text>
</g>
<!-- N26 -->
<g id="node27" class="node"><title>N26</title>
<polygon fill="none" stroke="black" points="1336.5,-670.5 1149.5,-670.5 1149.5,-635.5 1336.5,-635.5 1336.5,-670.5"/>
<text text-anchor="middle" x="1243" y="-660.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.(*Graph).Register</text>
<text text-anchor="end" x="1328.5" y="-651.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1328.5" y="-642.1" font-family="Times,serif" font-size="8.00">of 19.9 (11.7%)</text>
</g>
<!-- N24&#45;&gt;N26 -->
<g id="edge53" class="edge"><title>N24&#45;&gt;N26</title>
<path fill="none" stroke="black" d="M1394.28,-732.793C1361.82,-715.886 1316.57,-692.317 1284.03,-675.368"/>
<polygon fill="black" stroke="black" points="1285.27,-672.07 1274.79,-670.555 1282.04,-678.279 1285.27,-672.07"/>
<text text-anchor="middle" x="1357.5" y="-697.8" font-family="Times,serif" font-size="14.00">19.4</text>
</g>
<!-- N68 -->
<g id="node69" class="node"><title>N68</title>
<polygon fill="none" stroke="black" points="1543.5,-670.5 1354.5,-670.5 1354.5,-635.5 1543.5,-635.5 1543.5,-670.5"/>
<text text-anchor="middle" x="1449" y="-660.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/utils.GenerateRandomID</text>
<text text-anchor="end" x="1535.5" y="-651.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1535.5" y="-642.1" font-family="Times,serif" font-size="8.00">of 5.0 (2.9%)</text>
</g>
<!-- N24&#45;&gt;N68 -->
<g id="edge7" class="edge"><title>N24&#45;&gt;N68</title>
<path fill="none" stroke="black" d="M1437.97,-732.793C1440.1,-717.555 1442.99,-696.905 1445.28,-680.568"/>
<polygon fill="black" stroke="black" points="1448.76,-680.944 1446.68,-670.555 1441.83,-679.973 1448.76,-680.944"/>
<text text-anchor="middle" x="1452" y="-697.8" font-family="Times,serif" font-size="14.00">2.0</text>
</g>
<!-- N25&#45;&gt;N7 -->
<g id="edge73" class="edge"><title>N25&#45;&gt;N7</title>
<path fill="none" stroke="black" d="M876.65,-1639.9C913.176,-1626.33 964.963,-1607.08 1003.85,-1592.63"/>
<polygon fill="black" stroke="black" points="1005.29,-1595.83 1013.44,-1589.06 1002.85,-1589.26 1005.29,-1595.83"/>
<text text-anchor="middle" x="971.5" y="-1610.8" font-family="Times,serif" font-size="14.00">18.0</text>
</g>
<!-- N25&#45;&gt;N9 -->
<g id="edge91" class="edge"><title>N25&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M725.998,-1655.9C601.868,-1652.27 413,-1636.26 413,-1572.5 413,-1572.5 413,-1572.5 413,-1187.5 413,-1022.96 400.367,-943.704 523,-834 570.184,-791.791 614.341,-830.67 656,-783 680.19,-755.32 675,-739.261 675,-702.5 675,-702.5 675,-702.5 675,-257.5 675,-214.349 981.675,-186.392 1103.23,-177.005"/>
<polygon fill="black" stroke="black" points="1103.66,-180.482 1113.37,-176.232 1103.13,-173.502 1103.66,-180.482"/>
<text text-anchor="middle" x="532" y="-855.3" font-family="Times,serif" font-size="14.00">2.0</text>
</g>
<!-- N27 -->
<g id="node28" class="node"><title>N27</title>
<polygon fill="none" stroke="black" points="1336.5,-568.5 1149.5,-568.5 1149.5,-533.5 1336.5,-533.5 1336.5,-568.5"/>
<text text-anchor="middle" x="1243" y="-558.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/utils.(*TruncIndex).Add</text>
<text text-anchor="end" x="1328.5" y="-549.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1328.5" y="-540.1" font-family="Times,serif" font-size="8.00">of 19.9 (11.7%)</text>
</g>
<!-- N26&#45;&gt;N27 -->
<g id="edge89" class="edge"><title>N26&#45;&gt;N27</title>
<path fill="none" stroke="black" d="M1243,-635.487C1243,-620.071 1243,-596.794 1243,-578.732"/>
<polygon fill="black" stroke="black" points="1246.5,-578.537 1243,-568.537 1239.5,-578.538 1246.5,-578.537"/>
<text text-anchor="middle" x="1255.5" y="-600.8" font-family="Times,serif" font-size="14.00">19.9</text>
</g>
<!-- N28 -->
<g id="node29" class="node"><title>N28</title>
<polygon fill="none" stroke="black" points="1287,-472 1199,-472 1199,-437 1287,-437 1287,-472"/>
<text text-anchor="middle" x="1243" y="-461.6" font-family="Times,serif" font-size="8.00">index/suffixarray.New</text>
<text text-anchor="end" x="1279" y="-452.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1279" y="-443.6" font-family="Times,serif" font-size="8.00">of 19.2 (11.3%)</text>
</g>
<!-- N27&#45;&gt;N28 -->
<g id="edge27" class="edge"><title>N27&#45;&gt;N28</title>
<path fill="none" stroke="black" d="M1243,-533.105C1243,-518.995 1243,-498.622 1243,-482.291"/>
<polygon fill="black" stroke="black" points="1246.5,-482.248 1243,-472.248 1239.5,-482.248 1246.5,-482.248"/>
<text text-anchor="middle" x="1255.5" y="-493.8" font-family="Times,serif" font-size="14.00">18.6</text>
</g>
<!-- N29 -->
<g id="node30" class="node"><title>N29</title>
<polygon fill="none" stroke="black" points="1292.5,-374 1193.5,-374 1193.5,-339 1292.5,-339 1292.5,-374"/>
<text text-anchor="middle" x="1243" y="-363.6" font-family="Times,serif" font-size="8.00">index/suffixarray.qsufsort</text>
<text text-anchor="end" x="1284.5" y="-354.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1284.5" y="-345.6" font-family="Times,serif" font-size="8.00">of 19.2 (11.3%)</text>
</g>
<!-- N28&#45;&gt;N29 -->
<g id="edge94" class="edge"><title>N28&#45;&gt;N29</title>
<path fill="none" stroke="black" d="M1243,-436.778C1243,-422.324 1243,-401.168 1243,-384.345"/>
<polygon fill="black" stroke="black" points="1246.5,-384.03 1243,-374.03 1239.5,-384.03 1246.5,-384.03"/>
<text text-anchor="middle" x="1255.5" y="-407.8" font-family="Times,serif" font-size="14.00">19.2</text>
</g>
<!-- N35 -->
<g id="node36" class="node"><title>N35</title>
<polygon fill="none" stroke="black" points="1218,-276 1086,-276 1086,-241 1218,-241 1218,-276"/>
<text text-anchor="middle" x="1152" y="-265.6" font-family="Times,serif" font-size="8.00">index/suffixarray.sortedByFirstByte</text>
<text text-anchor="end" x="1210" y="-256.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1210" y="-247.6" font-family="Times,serif" font-size="8.00">of 13.2 (7.8%)</text>
</g>
<!-- N29&#45;&gt;N35 -->
<g id="edge79" class="edge"><title>N29&#45;&gt;N35</title>
<path fill="none" stroke="black" d="M1227.15,-338.778C1212.66,-323.498 1191.08,-300.728 1174.76,-283.506"/>
<polygon fill="black" stroke="black" points="1177.09,-280.88 1167.67,-276.03 1172.01,-285.696 1177.09,-280.88"/>
<text text-anchor="middle" x="1210.5" y="-297.8" font-family="Times,serif" font-size="14.00">13.2</text>
</g>
<!-- N54 -->
<g id="node55" class="node"><title>N54</title>
<polygon fill="none" stroke="black" points="1343.5,-276 1236.5,-276 1236.5,-241 1343.5,-241 1343.5,-276"/>
<text text-anchor="middle" x="1290" y="-265.6" font-family="Times,serif" font-size="8.00">index/suffixarray.initGroups</text>
<text text-anchor="end" x="1335.5" y="-256.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1335.5" y="-247.6" font-family="Times,serif" font-size="8.00">of 6.0 (3.5%)</text>
</g>
<!-- N29&#45;&gt;N54 -->
<g id="edge31" class="edge"><title>N29&#45;&gt;N54</title>
<path fill="none" stroke="black" d="M1251.19,-338.778C1258.4,-324.049 1269.02,-302.359 1277.33,-285.389"/>
<polygon fill="black" stroke="black" points="1280.65,-286.551 1281.91,-276.03 1274.37,-283.473 1280.65,-286.551"/>
<text text-anchor="middle" x="1282" y="-297.8" font-family="Times,serif" font-size="14.00">6.0</text>
</g>
<!-- N30 -->
<g id="node31" class="node"><title>N30</title>
<polygon fill="none" stroke="black" points="1401.5,-1377 1186.5,-1377 1186.5,-1342 1401.5,-1342 1401.5,-1377"/>
<text text-anchor="middle" x="1294" y="-1366.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerCreate</text>
<text text-anchor="end" x="1393.5" y="-1357.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1393.5" y="-1348.6" font-family="Times,serif" font-size="8.00">of 18.0 (10.6%)</text>
</g>
<!-- N32 -->
<g id="node33" class="node"><title>N32</title>
<polygon fill="none" stroke="black" points="1392,-1265 1196,-1265 1196,-1230 1392,-1230 1392,-1265"/>
<text text-anchor="middle" x="1294" y="-1254.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Create</text>
<text text-anchor="end" x="1384" y="-1245.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1384" y="-1236.6" font-family="Times,serif" font-size="8.00">of 15.5 (9.1%)</text>
</g>
<!-- N30&#45;&gt;N32 -->
<g id="edge96" class="edge"><title>N30&#45;&gt;N32</title>
<path fill="none" stroke="black" d="M1294,-1341.79C1294,-1324.08 1294,-1295.86 1294,-1275.09"/>
<polygon fill="black" stroke="black" points="1297.5,-1275 1294,-1265 1290.5,-1275 1297.5,-1275"/>
<text text-anchor="middle" x="1306.5" y="-1302.8" font-family="Times,serif" font-size="14.00">15.5</text>
</g>
<!-- N31&#45;&gt;N30 -->
<g id="edge54" class="edge"><title>N31&#45;&gt;N30</title>
<path fill="none" stroke="black" d="M1294,-1447.79C1294,-1431.49 1294,-1406.43 1294,-1387.34"/>
<polygon fill="black" stroke="black" points="1297.5,-1387.17 1294,-1377.17 1290.5,-1387.17 1297.5,-1387.17"/>
<text text-anchor="middle" x="1306.5" y="-1408.8" font-family="Times,serif" font-size="14.00">18.0</text>
</g>
<!-- N49 -->
<g id="node50" class="node"><title>N49</title>
<polygon fill="none" stroke="black" points="2160,-1124.5 1958,-1124.5 1958,-1089.5 2160,-1089.5 2160,-1124.5"/>
<text text-anchor="middle" x="2059" y="-1114.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Register</text>
<text text-anchor="end" x="2152" y="-1105.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2152" y="-1096.1" font-family="Times,serif" font-size="8.00">of 8.0 (4.7%)</text>
</g>
<!-- N32&#45;&gt;N49 -->
<g id="edge50" class="edge"><title>N32&#45;&gt;N49</title>
<path fill="none" stroke="black" d="M1392.2,-1247.45C1546.86,-1247.76 1839.54,-1243.18 1936,-1206 1976.74,-1190.3 2014.58,-1155.97 2037.25,-1132.41"/>
<polygon fill="black" stroke="black" points="2040.03,-1134.56 2044.33,-1124.88 2034.93,-1129.77 2040.03,-1134.56"/>
<text text-anchor="middle" x="2003" y="-1184.8" font-family="Times,serif" font-size="14.00">8.0</text>
</g>
<!-- N33&#45;&gt;N9 -->
<g id="edge74" class="edge"><title>N33&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M308.508,-727.573C377.728,-701.105 473,-663.034 473,-654 473,-654 473,-654 473,-257.5 473,-210.676 520.923,-220.668 566,-208 666.457,-179.769 981.17,-174.627 1103.08,-173.7"/>
<polygon fill="black" stroke="black" points="1103.26,-177.199 1113.24,-173.629 1103.21,-170.199 1103.26,-177.199"/>
<text text-anchor="middle" x="482" y="-450.8" font-family="Times,serif" font-size="14.00">1.5</text>
</g>
<!-- N75 -->
<g id="node76" class="node"><title>N75</title>
<polygon fill="none" stroke="black" points="305.5,-670.5 216.5,-670.5 216.5,-635.5 305.5,-635.5 305.5,-670.5"/>
<text text-anchor="middle" x="261" y="-660.1" font-family="Times,serif" font-size="8.00">os/exec.(*Cmd).stdout</text>
<text text-anchor="end" x="297.5" y="-651.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="297.5" y="-642.1" font-family="Times,serif" font-size="8.00">of 4.5 (2.6%)</text>
</g>
<!-- N33&#45;&gt;N75 -->
<g id="edge84" class="edge"><title>N33&#45;&gt;N75</title>
<path fill="none" stroke="black" d="M244.224,-726.939C247.543,-712.51 251.61,-694.827 254.908,-680.486"/>
<polygon fill="black" stroke="black" points="258.322,-681.258 257.153,-670.728 251.5,-679.689 258.322,-681.258"/>
<text text-anchor="middle" x="261" y="-697.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N34&#45;&gt;N7 -->
<g id="edge6" class="edge"><title>N34&#45;&gt;N7</title>
<path fill="none" stroke="black" d="M1058,-1639.9C1058,-1628.28 1058,-1612.51 1058,-1599.14"/>
<polygon fill="black" stroke="black" points="1061.5,-1599.06 1058,-1589.06 1054.5,-1599.06 1061.5,-1599.06"/>
<text text-anchor="middle" x="1070.5" y="-1610.8" font-family="Times,serif" font-size="14.00">13.7</text>
</g>
<!-- N35&#45;&gt;N9 -->
<g id="edge5" class="edge"><title>N35&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1152,-240.904C1152,-229.284 1152,-213.509 1152,-200.141"/>
<polygon fill="black" stroke="black" points="1155.5,-200.061 1152,-190.061 1148.5,-200.061 1155.5,-200.061"/>
<text text-anchor="middle" x="1164.5" y="-211.8" font-family="Times,serif" font-size="14.00">13.2</text>
</g>
<!-- N36 -->
<g id="node37" class="node"><title>N36</title>
<polygon fill="none" stroke="black" points="1494.5,-2038.5 1299.5,-2038.5 1299.5,-2003.5 1494.5,-2003.5 1494.5,-2038.5"/>
<text text-anchor="middle" x="1397" y="-2028.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.ListenAndServe</text>
<text text-anchor="end" x="1486.5" y="-2019.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1486.5" y="-2010.1" font-family="Times,serif" font-size="8.00">of 13.0 (7.6%)</text>
</g>
<!-- N38 -->
<g id="node39" class="node"><title>N38</title>
<polygon fill="none" stroke="black" points="1443.5,-1948 1350.5,-1948 1350.5,-1913 1443.5,-1913 1443.5,-1948"/>
<text text-anchor="middle" x="1397" y="-1937.6" font-family="Times,serif" font-size="8.00">net/http.(*Server).Serve</text>
<text text-anchor="end" x="1435.5" y="-1928.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1435.5" y="-1919.6" font-family="Times,serif" font-size="8.00">of 13.0 (7.6%)</text>
</g>
<!-- N36&#45;&gt;N38 -->
<g id="edge55" class="edge"><title>N36&#45;&gt;N38</title>
<path fill="none" stroke="black" d="M1397,-2003.35C1397,-1990.62 1397,-1972.81 1397,-1958.11"/>
<polygon fill="black" stroke="black" points="1400.5,-1958.07 1397,-1948.07 1393.5,-1958.07 1400.5,-1958.07"/>
<text text-anchor="middle" x="1409.5" y="-1969.8" font-family="Times,serif" font-size="14.00">13.0</text>
</g>
<!-- N37&#45;&gt;N36 -->
<g id="edge21" class="edge"><title>N37&#45;&gt;N36</title>
<path fill="none" stroke="black" d="M1280.26,-2113.78C1303.73,-2095.33 1341.65,-2065.52 1367.87,-2044.9"/>
<polygon fill="black" stroke="black" points="1370.24,-2047.49 1375.94,-2038.56 1365.92,-2041.99 1370.24,-2047.49"/>
<text text-anchor="middle" x="1357.5" y="-2074.8" font-family="Times,serif" font-size="14.00">13.0</text>
</g>
<!-- N39 -->
<g id="node40" class="node"><title>N39</title>
<polygon fill="none" stroke="black" points="1476,-1862 1318,-1862 1318,-1812 1476,-1812 1476,-1862"/>
<text text-anchor="middle" x="1397" y="-1847.84" font-family="Times,serif" font-size="12.70">net/http.(*Server).newConn</text>
<text text-anchor="end" x="1468" y="-1833.84" font-family="Times,serif" font-size="12.70">1.5 (0.9%)</text>
<text text-anchor="end" x="1468" y="-1819.84" font-family="Times,serif" font-size="12.70">of 13.0 (7.6%)</text>
</g>
<!-- N38&#45;&gt;N39 -->
<g id="edge16" class="edge"><title>N38&#45;&gt;N39</title>
<path fill="none" stroke="black" d="M1397,-1912.72C1397,-1901.45 1397,-1886.21 1397,-1872.43"/>
<polygon fill="black" stroke="black" points="1400.5,-1872.26 1397,-1862.26 1393.5,-1872.26 1400.5,-1872.26"/>
<text text-anchor="middle" x="1409.5" y="-1883.8" font-family="Times,serif" font-size="14.00">13.0</text>
</g>
<!-- N44 -->
<g id="node45" class="node"><title>N44</title>
<polygon fill="none" stroke="black" points="1451.5,-1761 1342.5,-1761 1342.5,-1726 1451.5,-1726 1451.5,-1761"/>
<text text-anchor="middle" x="1397" y="-1750.6" font-family="Times,serif" font-size="8.00">net/http.newBufioWriterSize</text>
<text text-anchor="end" x="1443.5" y="-1741.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1443.5" y="-1732.6" font-family="Times,serif" font-size="8.00">of 11.0 (6.5%)</text>
</g>
<!-- N39&#45;&gt;N44 -->
<g id="edge11" class="edge"><title>N39&#45;&gt;N44</title>
<path fill="none" stroke="black" d="M1397,-1811.96C1397,-1799.47 1397,-1784.16 1397,-1771.29"/>
<polygon fill="black" stroke="black" points="1400.5,-1771.17 1397,-1761.17 1393.5,-1771.17 1400.5,-1771.17"/>
<text text-anchor="middle" x="1406" y="-1782.8" font-family="Times,serif" font-size="14.00">7.0</text>
</g>
<!-- N73 -->
<g id="node74" class="node"><title>N73</title>
<polygon fill="none" stroke="black" points="2081.5,-1761 1984.5,-1761 1984.5,-1726 2081.5,-1726 2081.5,-1761"/>
<text text-anchor="middle" x="2033" y="-1750.6" font-family="Times,serif" font-size="8.00">net/http.newBufioReader</text>
<text text-anchor="end" x="2073.5" y="-1741.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2073.5" y="-1732.6" font-family="Times,serif" font-size="8.00">of 4.5 (2.6%)</text>
</g>
<!-- N39&#45;&gt;N73 -->
<g id="edge12" class="edge"><title>N39&#45;&gt;N73</title>
<path fill="none" stroke="black" d="M1476.26,-1824.6C1605.72,-1805.97 1859.57,-1769.45 1974.27,-1752.95"/>
<polygon fill="black" stroke="black" points="1974.86,-1756.4 1984.26,-1751.51 1973.87,-1749.47 1974.86,-1756.4"/>
<text text-anchor="middle" x="1799" y="-1782.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N40 -->
<g id="node41" class="node"><title>N40</title>
<polygon fill="none" stroke="black" points="632.5,-1043 437.5,-1043 437.5,-1008 632.5,-1008 632.5,-1043"/>
<text text-anchor="middle" x="535" y="-1032.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).AddEvent</text>
<text text-anchor="end" x="624.5" y="-1023.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="624.5" y="-1014.6" font-family="Times,serif" font-size="8.00">of 12.7 (7.5%)</text>
</g>
<!-- N40&#45;&gt;N9 -->
<g id="edge39" class="edge"><title>N40&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M632.72,-1009.48C636.527,-1008.97 640.298,-1008.47 644,-1008 723.957,-997.818 996,-1001.1 996,-920.5 996,-920.5 996,-920.5 996,-257.5 996,-208.027 1057.58,-187.562 1103.36,-179.183"/>
<polygon fill="black" stroke="black" points="1104.16,-182.597 1113.44,-177.483 1103,-175.695 1104.16,-182.597"/>
<text text-anchor="middle" x="1008.5" y="-600.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N41 -->
<g id="node42" class="node"><title>N41</title>
<polygon fill="none" stroke="black" points="869.5,-1324 662.5,-1324 662.5,-1289 869.5,-1289 869.5,-1324"/>
<text text-anchor="middle" x="766" y="-1313.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerKill</text>
<text text-anchor="end" x="861.5" y="-1304.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="861.5" y="-1295.6" font-family="Times,serif" font-size="8.00">of 12.7 (7.5%)</text>
</g>
<!-- N42 -->
<g id="node43" class="node"><title>N42</title>
<polygon fill="none" stroke="black" points="646,-1206 452,-1206 452,-1171 646,-1171 646,-1206"/>
<text text-anchor="middle" x="549" y="-1195.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).LogEvent</text>
<text text-anchor="end" x="638" y="-1186.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="638" y="-1177.6" font-family="Times,serif" font-size="8.00">of 12.7 (7.5%)</text>
</g>
<!-- N41&#45;&gt;N42 -->
<g id="edge60" class="edge"><title>N41&#45;&gt;N42</title>
<path fill="none" stroke="black" d="M734.909,-1288.88C696.477,-1268.34 631.009,-1233.34 588.904,-1210.83"/>
<polygon fill="black" stroke="black" points="590.502,-1207.72 580.033,-1206.09 587.202,-1213.89 590.502,-1207.72"/>
<text text-anchor="middle" x="708.5" y="-1243.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N42&#45;&gt;N40 -->
<g id="edge97" class="edge"><title>N42&#45;&gt;N40</title>
<path fill="none" stroke="black" d="M487.362,-1170.78C479.72,-1166.21 472.889,-1160.4 468,-1153 445.453,-1118.89 446.71,-1095.91 468,-1061 470.74,-1056.51 474.272,-1052.58 478.281,-1049.14"/>
<polygon fill="black" stroke="black" points="480.496,-1051.85 486.494,-1043.12 476.358,-1046.21 480.496,-1051.85"/>
<text text-anchor="middle" x="480.5" y="-1103.3" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N43&#45;&gt;N41 -->
<g id="edge47" class="edge"><title>N43&#45;&gt;N41</title>
<path fill="none" stroke="black" d="M808.806,-1394.79C800.664,-1378.19 788.066,-1352.5 778.642,-1333.28"/>
<polygon fill="black" stroke="black" points="781.719,-1331.61 774.174,-1324.17 775.434,-1334.69 781.719,-1331.61"/>
<text text-anchor="middle" x="812.5" y="-1355.8" font-family="Times,serif" font-size="14.00">12.7</text>
</g>
<!-- N44&#45;&gt;N9 -->
<g id="edge48" class="edge"><title>N44&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1451.68,-1742.44C1630.73,-1741.51 2188,-1732.68 2188,-1658.5 2188,-1658.5 2188,-1658.5 2188,-257.5 2188,-207.338 1406.22,-180.938 1200.9,-174.87"/>
<polygon fill="black" stroke="black" points="1200.82,-171.366 1190.72,-174.572 1200.61,-178.363 1200.82,-171.366"/>
<text text-anchor="middle" x="2200.5" y="-915.8" font-family="Times,serif" font-size="14.00">11.0</text>
</g>
<!-- N45 -->
<g id="node46" class="node"><title>N45</title>
<polygon fill="none" stroke="black" points="864,-670.5 792,-670.5 792,-635.5 864,-635.5 864,-670.5"/>
<text text-anchor="middle" x="828" y="-660.1" font-family="Times,serif" font-size="8.00">path/filepath.Join</text>
<text text-anchor="end" x="856" y="-651.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="856" y="-642.1" font-family="Times,serif" font-size="8.00">of 9.5 (5.6%)</text>
</g>
<!-- N48 -->
<g id="node49" class="node"><title>N48</title>
<polygon fill="none" stroke="black" points="909,-576 747,-576 747,-526 909,-526 909,-576"/>
<text text-anchor="middle" x="828" y="-556.64" font-family="Times,serif" font-size="19.20">path/filepath.Clean</text>
<text text-anchor="end" x="901" y="-535.64" font-family="Times,serif" font-size="19.20">8.5 (5.0%)</text>
</g>
<!-- N45&#45;&gt;N48 -->
<g id="edge52" class="edge"><title>N45&#45;&gt;N48</title>
<path fill="none" stroke="black" d="M828,-635.487C828,-622.199 828,-603.072 828,-586.477"/>
<polygon fill="black" stroke="black" points="831.5,-586.024 828,-576.024 824.5,-586.024 831.5,-586.024"/>
<text text-anchor="middle" x="837" y="-600.8" font-family="Times,serif" font-size="14.00">8.5</text>
</g>
<!-- N46&#45;&gt;N9 -->
<g id="edge81" class="edge"><title>N46&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M511.538,-731.456C529.227,-712.659 550,-684.163 550,-654 550,-654 550,-654 550,-257.5 550,-203.484 608.594,-221.092 661,-208 743.741,-187.329 995.95,-177.919 1103.06,-174.776"/>
<polygon fill="black" stroke="black" points="1103.37,-178.268 1113.26,-174.482 1103.17,-171.271 1103.37,-178.268"/>
<text text-anchor="middle" x="559" y="-450.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N46&#45;&gt;N45 -->
<g id="edge3" class="edge"><title>N46&#45;&gt;N45</title>
<path fill="none" stroke="black" d="M563.952,-731.433C631.034,-711.761 726.097,-683.884 781.973,-667.498"/>
<polygon fill="black" stroke="black" points="782.988,-670.847 791.599,-664.675 781.018,-664.13 782.988,-670.847"/>
<text text-anchor="middle" x="698" y="-697.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N56 -->
<g id="node57" class="node"><title>N56</title>
<polygon fill="none" stroke="black" points="809,-990 533,-990 533,-955 809,-955 809,-990"/>
<text text-anchor="middle" x="671" y="-979.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).buildHostnameAndHostsFiles</text>
<text text-anchor="end" x="801" y="-970.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="801" y="-961.6" font-family="Times,serif" font-size="8.00">of 6.0 (3.5%)</text>
</g>
<!-- N47&#45;&gt;N56 -->
<g id="edge37" class="edge"><title>N47&#45;&gt;N56</title>
<path fill="none" stroke="black" d="M630.733,-1089.49C638.549,-1066.97 652.635,-1026.4 661.902,-999.706"/>
<polygon fill="black" stroke="black" points="665.221,-1000.82 665.195,-990.221 658.609,-998.52 665.221,-1000.82"/>
<text text-anchor="middle" x="668" y="-1021.8" font-family="Times,serif" font-size="14.00">6.0</text>
</g>
<!-- N50 -->
<g id="node51" class="node"><title>N50</title>
<polygon fill="none" stroke="black" points="2151.5,-990 1952.5,-990 1952.5,-955 2151.5,-955 2151.5,-990"/>
<text text-anchor="middle" x="2052" y="-979.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).register</text>
<text text-anchor="end" x="2143.5" y="-970.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2143.5" y="-961.6" font-family="Times,serif" font-size="8.00">of 8.0 (4.7%)</text>
</g>
<!-- N49&#45;&gt;N50 -->
<g id="edge66" class="edge"><title>N49&#45;&gt;N50</title>
<path fill="none" stroke="black" d="M2058.13,-1089.49C2056.95,-1067.17 2054.83,-1027.11 2053.42,-1000.41"/>
<polygon fill="black" stroke="black" points="2056.91,-1000.02 2052.88,-990.221 2049.92,-1000.39 2056.91,-1000.02"/>
<text text-anchor="middle" x="2064" y="-1021.8" font-family="Times,serif" font-size="14.00">8.0</text>
</g>
<!-- N51 -->
<g id="node52" class="node"><title>N51</title>
<polygon fill="none" stroke="black" points="2159.5,-884 1720.5,-884 1720.5,-834 2159.5,-834 2159.5,-884"/>
<text text-anchor="middle" x="1940" y="-864.96" font-family="Times,serif" font-size="18.80">github.com/dotcloud/docker/utils.NewWriteBroadcaster</text>
<text text-anchor="end" x="2151.5" y="-843.96" font-family="Times,serif" font-size="18.80">8.0 (4.7%)</text>
</g>
<!-- N50&#45;&gt;N51 -->
<g id="edge69" class="edge"><title>N50&#45;&gt;N51</title>
<path fill="none" stroke="black" d="M2034.99,-954.566C2018.2,-937.854 1992.14,-911.905 1971.55,-891.413"/>
<polygon fill="black" stroke="black" points="1973.8,-888.713 1964.25,-884.138 1968.86,-893.674 1973.8,-888.713"/>
<text text-anchor="middle" x="2024" y="-915.8" font-family="Times,serif" font-size="14.00">8.0</text>
</g>
<!-- N52 -->
<g id="node53" class="node"><title>N52</title>
<polygon fill="none" stroke="black" points="433,-386 333,-386 333,-327 433,-327 433,-386"/>
<text text-anchor="middle" x="383" y="-369.44" font-family="Times,serif" font-size="15.70">os.NewFile</text>
<text text-anchor="end" x="425" y="-352.44" font-family="Times,serif" font-size="15.70">4.0 (2.3%)</text>
<text text-anchor="end" x="425" y="-335.44" font-family="Times,serif" font-size="15.70">of 7.0 (4.1%)</text>
</g>
<!-- N53 -->
<g id="node54" class="node"><title>N53</title>
<polygon fill="none" stroke="black" points="398.5,-579 195.5,-579 195.5,-523 398.5,-523 398.5,-579"/>
<text text-anchor="middle" x="297" y="-563.72" font-family="Times,serif" font-size="14.10">os/exec.(*Cmd).writerDescriptor</text>
<text text-anchor="end" x="390.5" y="-547.72" font-family="Times,serif" font-size="14.10">2.5 (1.5%)</text>
<text text-anchor="end" x="390.5" y="-531.72" font-family="Times,serif" font-size="14.10">of 7.0 (4.1%)</text>
</g>
<!-- N53&#45;&gt;N9 -->
<g id="edge35" class="edge"><title>N53&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M297,-522.707C297,-503.832 297,-478.141 297,-455.5 297,-455.5 297,-455.5 297,-257.5 297,-175.885 922.004,-172.425 1103.27,-173.138"/>
<polygon fill="black" stroke="black" points="1103.31,-176.638 1113.32,-173.184 1103.34,-169.638 1103.31,-176.638"/>
<text text-anchor="middle" x="306" y="-352.8" font-family="Times,serif" font-size="14.00">1.5</text>
</g>
<!-- N74 -->
<g id="node75" class="node"><title>N74</title>
<polygon fill="none" stroke="black" points="412.5,-472 353.5,-472 353.5,-437 412.5,-437 412.5,-472"/>
<text text-anchor="middle" x="383" y="-461.6" font-family="Times,serif" font-size="8.00">os.Pipe</text>
<text text-anchor="end" x="404.5" y="-452.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="404.5" y="-443.6" font-family="Times,serif" font-size="8.00">of 4.5 (2.6%)</text>
</g>
<!-- N53&#45;&gt;N74 -->
<g id="edge80" class="edge"><title>N53&#45;&gt;N74</title>
<path fill="none" stroke="black" d="M321.644,-522.92C333.975,-509.37 348.786,-493.096 360.766,-479.932"/>
<polygon fill="black" stroke="black" points="363.67,-481.941 367.812,-472.189 358.493,-477.229 363.67,-481.941"/>
<text text-anchor="middle" x="360" y="-493.8" font-family="Times,serif" font-size="14.00">2.5</text>
</g>
<!-- N54&#45;&gt;N9 -->
<g id="edge23" class="edge"><title>N54&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1262.74,-240.904C1241.28,-227.846 1211.21,-209.54 1187.81,-195.3"/>
<polygon fill="black" stroke="black" points="1189.57,-192.271 1179.21,-190.061 1185.93,-198.25 1189.57,-192.271"/>
<text text-anchor="middle" x="1239" y="-211.8" font-family="Times,serif" font-size="14.00">6.0</text>
</g>
<!-- N55 -->
<g id="node56" class="node"><title>N55</title>
<polygon fill="none" stroke="black" points="1664,-676 1562,-676 1562,-630 1664,-630 1664,-676"/>
<text text-anchor="middle" x="1613" y="-658.08" font-family="Times,serif" font-size="17.40">concatstring</text>
<text text-anchor="end" x="1656" y="-639.08" font-family="Times,serif" font-size="17.40">6.0 (3.5%)</text>
</g>
<!-- N61 -->
<g id="node62" class="node"><title>N61</title>
<polygon fill="none" stroke="black" points="952.5,-772.5 703.5,-772.5 703.5,-737.5 952.5,-737.5 952.5,-772.5"/>
<text text-anchor="middle" x="828" y="-762.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).getRootResourcePath</text>
<text text-anchor="end" x="944.5" y="-753.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="944.5" y="-744.1" font-family="Times,serif" font-size="8.00">of 5.5 (3.2%)</text>
</g>
<!-- N56&#45;&gt;N61 -->
<g id="edge88" class="edge"><title>N56&#45;&gt;N61</title>
<path fill="none" stroke="black" d="M710.018,-954.891C739.274,-940.414 777.928,-916.607 800,-884 820.601,-853.567 826.352,-810.569 827.791,-782.984"/>
<polygon fill="black" stroke="black" points="831.292,-783.001 828.161,-772.879 824.297,-782.745 831.292,-783.001"/>
<text text-anchor="middle" x="830" y="-855.3" font-family="Times,serif" font-size="14.00">2.0</text>
</g>
<!-- N80 -->
<g id="node81" class="node"><title>N80</title>
<polygon fill="none" stroke="black" points="791.5,-876.5 550.5,-876.5 550.5,-841.5 791.5,-841.5 791.5,-876.5"/>
<text text-anchor="middle" x="671" y="-866.1" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).buildHostnameFile</text>
<text text-anchor="end" x="783.5" y="-857.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="783.5" y="-848.1" font-family="Times,serif" font-size="8.00">of 3.5 (2.1%)</text>
</g>
<!-- N56&#45;&gt;N80 -->
<g id="edge20" class="edge"><title>N56&#45;&gt;N80</title>
<path fill="none" stroke="black" d="M671,-954.566C671,-936.616 671,-908.008 671,-886.954"/>
<polygon fill="black" stroke="black" points="674.5,-886.728 671,-876.728 667.5,-886.729 674.5,-886.728"/>
<text text-anchor="middle" x="680" y="-915.8" font-family="Times,serif" font-size="14.00">3.5</text>
</g>
<!-- N57&#45;&gt;N44 -->
<g id="edge51" class="edge"><title>N57&#45;&gt;N44</title>
<path fill="none" stroke="black" d="M1217.2,-1999C1229.66,-1959.29 1260.78,-1871.83 1309,-1812 1323.2,-1794.38 1342.91,-1778.72 1360.07,-1766.92"/>
<polygon fill="black" stroke="black" points="1362.4,-1769.58 1368.77,-1761.12 1358.51,-1763.75 1362.4,-1769.58"/>
<text text-anchor="middle" x="1274" y="-1883.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N58&#45;&gt;N55 -->
<g id="edge90" class="edge"><title>N58&#45;&gt;N55</title>
<path fill="none" stroke="black" d="M1613,-737.487C1613,-723.613 1613,-703.373 1613,-686.297"/>
<polygon fill="black" stroke="black" points="1616.5,-686.158 1613,-676.158 1609.5,-686.158 1616.5,-686.158"/>
<text text-anchor="middle" x="1622" y="-697.8" font-family="Times,serif" font-size="14.00">6.0</text>
</g>
<!-- N59 -->
<g id="node60" class="node"><title>N59</title>
<polygon fill="none" stroke="black" points="1709.5,-2149 1562.5,-2149 1562.5,-2114 1709.5,-2114 1709.5,-2149"/>
<text text-anchor="middle" x="1636" y="-2138.6" font-family="Times,serif" font-size="8.00">encoding/json.(*decodeState).unmarshal</text>
<text text-anchor="end" x="1701.5" y="-2129.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1701.5" y="-2120.6" font-family="Times,serif" font-size="8.00">of 5.5 (3.2%)</text>
</g>
<!-- N60 -->
<g id="node61" class="node"><title>N60</title>
<polygon fill="none" stroke="black" points="1701.5,-2038.5 1570.5,-2038.5 1570.5,-2003.5 1701.5,-2003.5 1701.5,-2038.5"/>
<text text-anchor="middle" x="1636" y="-2028.1" font-family="Times,serif" font-size="8.00">encoding/json.(*decodeState).value</text>
<text text-anchor="end" x="1693.5" y="-2019.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1693.5" y="-2010.1" font-family="Times,serif" font-size="8.00">of 5.5 (3.2%)</text>
</g>
<!-- N59&#45;&gt;N60 -->
<g id="edge42" class="edge"><title>N59&#45;&gt;N60</title>
<path fill="none" stroke="black" d="M1636,-2113.55C1636,-2096.27 1636,-2069.21 1636,-2048.98"/>
<polygon fill="black" stroke="black" points="1639.5,-2048.83 1636,-2038.83 1632.5,-2048.83 1639.5,-2048.83"/>
<text text-anchor="middle" x="1645" y="-2074.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N71 -->
<g id="node72" class="node"><title>N71</title>
<polygon fill="none" stroke="black" points="1592,-1948 1462,-1948 1462,-1913 1592,-1913 1592,-1948"/>
<text text-anchor="middle" x="1527" y="-1937.6" font-family="Times,serif" font-size="8.00">encoding/json.(*decodeState).array</text>
<text text-anchor="end" x="1584" y="-1928.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1584" y="-1919.6" font-family="Times,serif" font-size="8.00">of 4.5 (2.6%)</text>
</g>
<!-- N60&#45;&gt;N71 -->
<g id="edge65" class="edge"><title>N60&#45;&gt;N71</title>
<path fill="none" stroke="black" d="M1573.84,-2003.36C1562.02,-1997.84 1550.66,-1990.56 1542,-1981 1536.32,-1974.73 1532.79,-1966.37 1530.6,-1958.31"/>
<polygon fill="black" stroke="black" points="1534,-1957.47 1528.47,-1948.43 1527.15,-1958.95 1534,-1957.47"/>
<text text-anchor="middle" x="1551" y="-1969.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N72 -->
<g id="node73" class="node"><title>N72</title>
<polygon fill="none" stroke="black" points="1743.5,-1948 1610.5,-1948 1610.5,-1913 1743.5,-1913 1743.5,-1948"/>
<text text-anchor="middle" x="1677" y="-1937.6" font-family="Times,serif" font-size="8.00">encoding/json.(*decodeState).object</text>
<text text-anchor="end" x="1735.5" y="-1928.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1735.5" y="-1919.6" font-family="Times,serif" font-size="8.00">of 4.5 (2.6%)</text>
</g>
<!-- N60&#45;&gt;N72 -->
<g id="edge93" class="edge"><title>N60&#45;&gt;N72</title>
<path fill="none" stroke="black" d="M1630.96,-2003.1C1628.61,-1992 1627.41,-1977.48 1633,-1966 1634.91,-1962.07 1637.51,-1958.46 1640.5,-1955.17"/>
<polygon fill="black" stroke="black" points="1643.13,-1957.5 1648.02,-1948.1 1638.34,-1952.4 1643.13,-1957.5"/>
<text text-anchor="middle" x="1642" y="-1969.8" font-family="Times,serif" font-size="14.00">8.0</text>
</g>
<!-- N61&#45;&gt;N45 -->
<g id="edge24" class="edge"><title>N61&#45;&gt;N45</title>
<path fill="none" stroke="black" d="M828,-737.487C828,-722.071 828,-698.794 828,-680.732"/>
<polygon fill="black" stroke="black" points="831.5,-680.537 828,-670.537 824.5,-680.538 831.5,-680.537"/>
<text text-anchor="middle" x="837" y="-697.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N62 -->
<g id="node63" class="node"><title>N62</title>
<polygon fill="none" stroke="black" points="145.5,-670.5 68.5,-670.5 68.5,-635.5 145.5,-635.5 145.5,-670.5"/>
<text text-anchor="middle" x="107" y="-660.1" font-family="Times,serif" font-size="8.00">os.(*Process).Wait</text>
<text text-anchor="end" x="137.5" y="-651.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="137.5" y="-642.1" font-family="Times,serif" font-size="8.00">of 5.5 (3.2%)</text>
</g>
<!-- N63 -->
<g id="node64" class="node"><title>N63</title>
<polygon fill="none" stroke="black" points="177.5,-574 36.5,-574 36.5,-528 177.5,-528 177.5,-574"/>
<text text-anchor="middle" x="107" y="-556.4" font-family="Times,serif" font-size="17.00">os.(*Process).wait</text>
<text text-anchor="end" x="169.5" y="-537.4" font-family="Times,serif" font-size="17.00">5.5 (3.2%)</text>
</g>
<!-- N62&#45;&gt;N63 -->
<g id="edge14" class="edge"><title>N62&#45;&gt;N63</title>
<path fill="none" stroke="black" d="M107,-635.487C107,-621.613 107,-601.373 107,-584.297"/>
<polygon fill="black" stroke="black" points="110.5,-584.158 107,-574.158 103.5,-584.158 110.5,-584.158"/>
<text text-anchor="middle" x="116" y="-600.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N64&#45;&gt;N62 -->
<g id="edge76" class="edge"><title>N64&#45;&gt;N62</title>
<path fill="none" stroke="black" d="M107,-737.487C107,-722.071 107,-698.794 107,-680.732"/>
<polygon fill="black" stroke="black" points="110.5,-680.537 107,-670.537 103.5,-680.538 110.5,-680.537"/>
<text text-anchor="middle" x="116" y="-697.8" font-family="Times,serif" font-size="14.00">5.5</text>
</g>
<!-- N65 -->
<g id="node66" class="node"><title>N65</title>
<polygon fill="none" stroke="black" points="1573.5,-573 1354.5,-573 1354.5,-529 1573.5,-529 1573.5,-573"/>
<text text-anchor="middle" x="1464" y="-555.72" font-family="Times,serif" font-size="16.60">encoding/hex.EncodeToString</text>
<text text-anchor="end" x="1565.5" y="-537.72" font-family="Times,serif" font-size="16.60">5.0 (2.9%)</text>
</g>
<!-- N66 -->
<g id="node67" class="node"><title>N66</title>
<polygon fill="none" stroke="black" points="1685,-2286.5 1587,-2286.5 1587,-2251.5 1685,-2251.5 1685,-2286.5"/>
<text text-anchor="middle" x="1636" y="-2276.1" font-family="Times,serif" font-size="8.00">encoding/json.Unmarshal</text>
<text text-anchor="end" x="1677" y="-2267.1" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="1677" y="-2258.1" font-family="Times,serif" font-size="8.00">of 5.0 (2.9%)</text>
</g>
<!-- N66&#45;&gt;N59 -->
<g id="edge10" class="edge"><title>N66&#45;&gt;N59</title>
<path fill="none" stroke="black" d="M1636,-2251.39C1636,-2228.43 1636,-2186.74 1636,-2159.33"/>
<polygon fill="black" stroke="black" points="1639.5,-2159.25 1636,-2149.25 1632.5,-2159.25 1639.5,-2159.25"/>
<text text-anchor="middle" x="1645" y="-2170.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N67&#45;&gt;N9 -->
<g id="edge26" class="edge"><title>N67&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M1735.48,-901.853C1726.69,-897.234 1718.42,-891.385 1712,-884 1689.52,-858.117 1692,-843.783 1692,-809.5 1692,-809.5 1692,-809.5 1692,-257.5 1692,-208.079 1334.29,-183.461 1201.15,-176.01"/>
<polygon fill="black" stroke="black" points="1201.01,-172.497 1190.84,-175.442 1200.63,-179.487 1201.01,-172.497"/>
<text text-anchor="middle" x="1701" y="-547.3" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N68&#45;&gt;N65 -->
<g id="edge2" class="edge"><title>N68&#45;&gt;N65</title>
<path fill="none" stroke="black" d="M1451.48,-635.487C1453.6,-621.338 1456.72,-600.567 1459.31,-583.283"/>
<polygon fill="black" stroke="black" points="1462.82,-583.471 1460.84,-573.062 1455.9,-582.432 1462.82,-583.471"/>
<text text-anchor="middle" x="1465" y="-600.8" font-family="Times,serif" font-size="14.00">5.0</text>
</g>
<!-- N69 -->
<g id="node70" class="node"><title>N69</title>
<polygon fill="none" stroke="black" points="2327.5,-1675 2254.5,-1675 2254.5,-1640 2327.5,-1640 2327.5,-1675"/>
<text text-anchor="middle" x="2291" y="-1664.6" font-family="Times,serif" font-size="8.00">bufio.NewReader</text>
<text text-anchor="end" x="2319.5" y="-1655.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2319.5" y="-1646.6" font-family="Times,serif" font-size="8.00">of 4.5 (2.6%)</text>
</g>
<!-- N70 -->
<g id="node71" class="node"><title>N70</title>
<polygon fill="none" stroke="black" points="2363,-1536 2277,-1536 2277,-1501 2363,-1501 2363,-1536"/>
<text text-anchor="middle" x="2320" y="-1525.6" font-family="Times,serif" font-size="8.00">bufio.NewReaderSize</text>
<text text-anchor="end" x="2355" y="-1516.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2355" y="-1507.6" font-family="Times,serif" font-size="8.00">of 4.5 (2.6%)</text>
</g>
<!-- N69&#45;&gt;N70 -->
<g id="edge71" class="edge"><title>N69&#45;&gt;N70</title>
<path fill="none" stroke="black" d="M2294.5,-1639.97C2299.44,-1616.63 2308.52,-1573.73 2314.41,-1545.93"/>
<polygon fill="black" stroke="black" points="2317.84,-1546.59 2316.49,-1536.08 2310.99,-1545.14 2317.84,-1546.59"/>
<text text-anchor="middle" x="2310" y="-1610.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N70&#45;&gt;N9 -->
<g id="edge9" class="edge"><title>N70&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M2322.58,-1500.98C2325.54,-1480.5 2330,-1444.52 2330,-1413.5 2330,-1413.5 2330,-1413.5 2330,-257.5 2330,-214.167 2287.62,-220.059 2246,-208 2144.91,-178.712 1399.51,-174.278 1200.65,-173.615"/>
<polygon fill="black" stroke="black" points="1200.52,-170.115 1190.5,-173.583 1200.49,-177.115 1200.52,-170.115"/>
<text text-anchor="middle" x="2339" y="-804.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N71&#45;&gt;N60 -->
<g id="edge87" class="edge"><title>N71&#45;&gt;N60</title>
<path fill="none" stroke="black" d="M1547.41,-1948.07C1564.36,-1961.83 1588.66,-1981.56 1607.52,-1996.88"/>
<polygon fill="black" stroke="black" points="1605.53,-1999.77 1615.5,-2003.35 1609.94,-1994.33 1605.53,-1999.77"/>
<text text-anchor="middle" x="1593" y="-1969.8" font-family="Times,serif" font-size="14.00">3.0</text>
</g>
<!-- N72&#45;&gt;N60 -->
<g id="edge34" class="edge"><title>N72&#45;&gt;N60</title>
<path fill="none" stroke="black" d="M1669.81,-1948.07C1665.58,-1957.71 1660.08,-1970.09 1655,-1981 1653.01,-1985.26 1650.87,-1989.77 1648.76,-1994.14"/>
<polygon fill="black" stroke="black" points="1645.5,-1992.84 1644.27,-2003.36 1651.79,-1995.9 1645.5,-1992.84"/>
<text text-anchor="middle" x="1670" y="-1969.8" font-family="Times,serif" font-size="14.00">7.0</text>
</g>
<!-- N73&#45;&gt;N69 -->
<g id="edge95" class="edge"><title>N73&#45;&gt;N69</title>
<path fill="none" stroke="black" d="M2081.8,-1736.58C2116.16,-1731.44 2162.82,-1722.5 2202,-1708 2221.17,-1700.91 2241.17,-1690.13 2257.35,-1680.44"/>
<polygon fill="black" stroke="black" points="2259.21,-1683.4 2265.91,-1675.19 2255.55,-1677.43 2259.21,-1683.4"/>
<text text-anchor="middle" x="2241" y="-1696.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N74&#45;&gt;N52 -->
<g id="edge15" class="edge"><title>N74&#45;&gt;N52</title>
<path fill="none" stroke="black" d="M383,-436.778C383,-425.539 383,-410.247 383,-396.092"/>
<polygon fill="black" stroke="black" points="386.5,-396.059 383,-386.059 379.5,-396.06 386.5,-396.059"/>
<text text-anchor="middle" x="392" y="-407.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N75&#45;&gt;N53 -->
<g id="edge75" class="edge"><title>N75&#45;&gt;N53</title>
<path fill="none" stroke="black" d="M266.945,-635.487C271.509,-622.808 277.988,-604.811 283.762,-588.772"/>
<polygon fill="black" stroke="black" points="287.149,-589.697 287.243,-579.103 280.563,-587.326 287.149,-589.697"/>
<text text-anchor="middle" x="290" y="-600.8" font-family="Times,serif" font-size="14.00">4.5</text>
</g>
<!-- N76 -->
<g id="node77" class="node"><title>N76</title>
<polygon fill="none" stroke="black" points="2302,-472 2216,-472 2216,-437 2302,-437 2302,-472"/>
<text text-anchor="middle" x="2259" y="-461.6" font-family="Times,serif" font-size="8.00">bytes.(*Buffer).Write</text>
<text text-anchor="end" x="2294" y="-452.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2294" y="-443.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.3%)</text>
</g>
<!-- N77 -->
<g id="node78" class="node"><title>N77</title>
<polygon fill="none" stroke="black" points="2301,-374 2217,-374 2217,-339 2301,-339 2301,-374"/>
<text text-anchor="middle" x="2259" y="-363.6" font-family="Times,serif" font-size="8.00">bytes.(*Buffer).grow</text>
<text text-anchor="end" x="2293" y="-354.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2293" y="-345.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.3%)</text>
</g>
<!-- N76&#45;&gt;N77 -->
<g id="edge56" class="edge"><title>N76&#45;&gt;N77</title>
<path fill="none" stroke="black" d="M2259,-436.778C2259,-422.324 2259,-401.168 2259,-384.345"/>
<polygon fill="black" stroke="black" points="2262.5,-384.03 2259,-374.03 2255.5,-384.03 2262.5,-384.03"/>
<text text-anchor="middle" x="2268" y="-407.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N78 -->
<g id="node79" class="node"><title>N78</title>
<polygon fill="none" stroke="black" points="2287.5,-276 2218.5,-276 2218.5,-241 2287.5,-241 2287.5,-276"/>
<text text-anchor="middle" x="2253" y="-265.6" font-family="Times,serif" font-size="8.00">bytes.makeSlice</text>
<text text-anchor="end" x="2279.5" y="-256.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text>
<text text-anchor="end" x="2279.5" y="-247.6" font-family="Times,serif" font-size="8.00">of 4.0 (2.3%)</text>
</g>
<!-- N77&#45;&gt;N78 -->
<g id="edge13" class="edge"><title>N77&#45;&gt;N78</title>
<path fill="none" stroke="black" d="M2257.95,-338.778C2257.05,-324.324 2255.73,-303.168 2254.68,-286.345"/>
<polygon fill="black" stroke="black" points="2258.15,-285.792 2254.03,-276.03 2251.16,-286.229 2258.15,-285.792"/>
<text text-anchor="middle" x="2265" y="-297.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N78&#45;&gt;N9 -->
<g id="edge8" class="edge"><title>N78&#45;&gt;N9</title>
<path fill="none" stroke="black" d="M2241.26,-240.869C2232.05,-229.331 2218.13,-214.85 2202,-208 2155.46,-188.232 1401.5,-176.822 1200.77,-174.125"/>
<polygon fill="black" stroke="black" points="1200.58,-170.622 1190.53,-173.988 1200.49,-177.621 1200.58,-170.622"/>
<text text-anchor="middle" x="2233" y="-211.8" font-family="Times,serif" font-size="14.00">4.0</text>
</g>
<!-- N79&#45;&gt;N58 -->
<g id="edge62" class="edge"><title>N79&#45;&gt;N58</title>
<path fill="none" stroke="black" d="M1740.2,-1089.06C1720.11,-1059.5 1679.23,-996.031 1656,-937 1635.26,-884.296 1622.76,-818.867 1616.94,-782.876"/>
<polygon fill="black" stroke="black" points="1620.35,-782.037 1615.35,-772.698 1613.43,-783.119 1620.35,-782.037"/>
<text text-anchor="middle" x="1665" y="-915.8" font-family="Times,serif" font-size="14.00">2.0</text>
</g>
<!-- N80&#45;&gt;N61 -->
<g id="edge64" class="edge"><title>N80&#45;&gt;N61</title>
<path fill="none" stroke="black" d="M696.574,-841.385C723.032,-824.196 764.505,-797.252 793.775,-778.235"/>
<polygon fill="black" stroke="black" points="795.958,-780.991 802.437,-772.608 792.144,-775.121 795.958,-780.991"/>
<text text-anchor="middle" x="764" y="-804.8" font-family="Times,serif" font-size="14.00">3.5</text>
</g>
</g>
</g></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment