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
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment