Created
July 4, 2014 01:10
-
-
Save srijs/79fe93c428a434da70e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; 58.5 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 <[email protected]>. 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 1920.6)"> | |
<title>/usr/local/bin/docker; 58.5 MB</title> | |
<polygon fill="white" stroke="none" points="-4,4 -4,-1920.6 2244.99,-1920.6 2244.99,4 -4,4"/> | |
<!-- Legend --> | |
<g id="node1" class="node"><title>Legend</title> | |
<text text-anchor="start" x="784.146" y="-1893.4" font-family="Times,serif" font-size="24.00">/usr/local/bin/docker</text> | |
<text text-anchor="start" x="784.146" y="-1869.4" font-family="Times,serif" font-size="24.00">Total MB: 58.5</text> | |
<text text-anchor="start" x="784.146" y="-1845.4" font-family="Times,serif" font-size="24.00">Focusing on: 58.5</text> | |
<text text-anchor="start" x="784.146" y="-1821.4" font-family="Times,serif" font-size="24.00">Dropped nodes with <= 0.3 abs(MB)</text> | |
<text text-anchor="start" x="784.146" y="-1797.4" font-family="Times,serif" font-size="24.00">Dropped edges with <= 0.1 MB</text> | |
</g> | |
<!-- N1 --> | |
<g id="node2" class="node"><title>N1</title> | |
<polygon fill="none" stroke="black" points="1238.26,-1868.6 1165.06,-1868.6 1165.06,-1836.6 1238.26,-1836.6 1238.26,-1868.6"/> | |
<text text-anchor="middle" x="1201.66" y="-1858.2" font-family="Times,serif" font-size="8.00">runtime.gosched0</text> | |
<text text-anchor="end" x="1230.21" y="-1850.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1230.21" y="-1842.2" font-family="Times,serif" font-size="8.00">of 58.0 (99.1%)</text> | |
</g> | |
<!-- N5 --> | |
<g id="node6" class="node"><title>N5</title> | |
<polygon fill="none" stroke="black" points="1061.81,-1738.6 909.516,-1738.6 909.516,-1706.6 1061.81,-1706.6 1061.81,-1738.6"/> | |
<text text-anchor="middle" x="985.661" y="-1728.2" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/utils.func·001</text> | |
<text text-anchor="end" x="1053.98" y="-1720.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1053.98" y="-1712.2" font-family="Times,serif" font-size="8.00">of 22.8 (39.0%)</text> | |
</g> | |
<!-- N1->N5 --> | |
<g id="edge59" class="edge"><title>N1->N5</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M1194.17,-1836.4C1186.51,-1822.26 1173.37,-1801.49 1156.66,-1788.6 1128.63,-1766.98 1092.59,-1751.87 1060.82,-1741.69"/> | |
<polygon fill="black" stroke="black" stroke-width="2" points="1061.71,-1738.3 1051.12,-1738.69 1059.64,-1744.99 1061.71,-1738.3"/> | |
<text text-anchor="middle" x="1139.91" y="-1759.4" font-family="Times,serif" font-size="14.00">22.8</text> | |
</g> | |
<!-- N9 --> | |
<g id="node10" class="node"><title>N9</title> | |
<polygon fill="none" stroke="black" points="1317.86,-1738.6 1231.46,-1738.6 1231.46,-1706.6 1317.86,-1706.6 1317.86,-1738.6"/> | |
<text text-anchor="middle" x="1274.66" y="-1728.2" font-family="Times,serif" font-size="8.00">net/http.(*conn).serve</text> | |
<text text-anchor="end" x="1309.76" y="-1720.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1309.76" y="-1712.2" font-family="Times,serif" font-size="8.00">of 19.0 (32.5%)</text> | |
</g> | |
<!-- N1->N9 --> | |
<g id="edge63" class="edge"><title>N1->N9</title> | |
<path fill="none" stroke="black" stroke-width="1.94768" d="M1210.32,-1836.41C1222.83,-1814.47 1246.09,-1773.69 1260.95,-1747.64"/> | |
<polygon fill="black" stroke="black" stroke-width="1.94768" points="1264.1,-1749.19 1266.01,-1738.77 1258.02,-1745.72 1264.1,-1749.19"/> | |
<text text-anchor="middle" x="1267.91" y="-1759.4" font-family="Times,serif" font-size="14.00">19.0</text> | |
</g> | |
<!-- N27 --> | |
<g id="node28" class="node"><title>N27</title> | |
<polygon fill="none" stroke="black" points="1234.82,-1688.6 1168.5,-1688.6 1168.5,-1656.6 1234.82,-1656.6 1234.82,-1688.6"/> | |
<text text-anchor="middle" x="1201.66" y="-1678.2" font-family="Times,serif" font-size="8.00">main.func·001</text> | |
<text text-anchor="end" x="1226.99" y="-1670.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1226.99" y="-1662.2" font-family="Times,serif" font-size="8.00">of 12.7 (21.7%)</text> | |
</g> | |
<!-- N1->N27 --> | |
<g id="edge84" class="edge"><title>N1->N27</title> | |
<path fill="none" stroke="black" stroke-width="1.30059" d="M1201.66,-1836.42C1201.66,-1805.82 1201.66,-1736.41 1201.66,-1698.86"/> | |
<polygon fill="black" stroke="black" stroke-width="1.30059" points="1205.16,-1698.74 1201.66,-1688.74 1198.16,-1698.74 1205.16,-1698.74"/> | |
<text text-anchor="middle" x="1213.91" y="-1759.4" font-family="Times,serif" font-size="14.00">12.7</text> | |
</g> | |
<!-- N46 --> | |
<g id="node47" class="node"><title>N46</title> | |
<polygon fill="none" stroke="black" points="1505.63,-1738.6 1335.7,-1738.6 1335.7,-1706.6 1505.63,-1706.6 1505.63,-1738.6"/> | |
<text text-anchor="middle" x="1420.66" y="-1728.2" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.func·008</text> | |
<text text-anchor="end" x="1497.64" y="-1720.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1497.64" y="-1712.2" font-family="Times,serif" font-size="8.00">of 1.0 (1.7%)</text> | |
</g> | |
<!-- N1->N46 --> | |
<g id="edge45" class="edge"><title>N1->N46</title> | |
<path fill="none" stroke="black" d="M1227.64,-1836.41C1266.99,-1813.42 1341.77,-1769.71 1385.81,-1743.97"/> | |
<polygon fill="black" stroke="black" points="1387.85,-1746.83 1394.71,-1738.77 1384.31,-1740.79 1387.85,-1746.83"/> | |
<text text-anchor="middle" x="1371.41" y="-1759.4" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N48 --> | |
<g id="node49" class="node"><title>N48</title> | |
<polygon fill="none" stroke="black" points="1615.85,-1688.6 1451.47,-1688.6 1451.47,-1656.6 1615.85,-1656.6 1615.85,-1688.6"/> | |
<text text-anchor="middle" x="1533.66" y="-1678.2" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.func·005</text> | |
<text text-anchor="end" x="1607.76" y="-1670.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1607.76" y="-1662.2" font-family="Times,serif" font-size="8.00">of 1.0 (1.7%)</text> | |
</g> | |
<!-- N1->N48 --> | |
<g id="edge39" class="edge"><title>N1->N48</title> | |
<path fill="none" stroke="black" d="M1238.36,-1848.89C1303.49,-1842.09 1439.49,-1818.59 1514.66,-1738.6 1524.76,-1727.85 1529.53,-1712.03 1531.76,-1698.68"/> | |
<polygon fill="black" stroke="black" points="1535.24,-1699.02 1533.06,-1688.66 1528.3,-1698.12 1535.24,-1699.02"/> | |
<text text-anchor="middle" x="1505.41" y="-1759.4" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N58 --> | |
<g id="node59" class="node"><title>N58</title> | |
<polygon fill="none" stroke="black" points="1784.85,-1688.6 1620.47,-1688.6 1620.47,-1656.6 1784.85,-1656.6 1784.85,-1688.6"/> | |
<text text-anchor="middle" x="1702.66" y="-1678.2" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.func·003</text> | |
<text text-anchor="end" x="1776.76" y="-1670.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1776.76" y="-1662.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N1->N58 --> | |
<g id="edge22" class="edge"><title>N1->N58</title> | |
<path fill="none" stroke="black" d="M1238.53,-1845.04C1298.39,-1833.75 1419.86,-1808.19 1517.66,-1770.6 1573.21,-1749.25 1633.56,-1715.42 1669.73,-1693.87"/> | |
<polygon fill="black" stroke="black" points="1671.61,-1696.83 1678.39,-1688.68 1668.01,-1690.82 1671.61,-1696.83"/> | |
<text text-anchor="middle" x="1560.41" y="-1759.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N80 --> | |
<g id="node81" class="node"><title>N80</title> | |
<polygon fill="none" stroke="black" points="1818.86,-1738.6 1748.46,-1738.6 1748.46,-1706.6 1818.86,-1706.6 1818.86,-1738.6"/> | |
<text text-anchor="middle" x="1783.66" y="-1728.2" font-family="Times,serif" font-size="8.00">os/exec.func·004</text> | |
<text text-anchor="end" x="1810.76" y="-1720.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1810.76" y="-1712.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N1->N80 --> | |
<g id="edge71" class="edge"><title>N1->N80</title> | |
<path fill="none" stroke="black" d="M1238.43,-1846.67C1314.71,-1836.06 1495.42,-1808.86 1643.66,-1770.6 1675.94,-1762.27 1711.55,-1750.28 1738.78,-1740.49"/> | |
<polygon fill="black" stroke="black" points="1740.2,-1743.7 1748.41,-1736.99 1737.81,-1737.12 1740.2,-1743.7"/> | |
<text text-anchor="middle" x="1698.41" y="-1759.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N2 --> | |
<g id="node3" class="node"><title>N2</title> | |
<polygon fill="none" stroke="black" points="1415.41,-1150 1247.91,-1150 1247.91,-1118 1415.41,-1118 1415.41,-1150"/> | |
<text text-anchor="middle" x="1331.66" y="-1139.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/engine.(*Job).Run</text> | |
<text text-anchor="end" x="1407.54" y="-1131.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1407.54" y="-1123.6" font-family="Times,serif" font-size="8.00">of 31.2 (53.3%)</text> | |
</g> | |
<!-- N11 --> | |
<g id="node12" class="node"><title>N11</title> | |
<polygon fill="none" stroke="black" points="1396.63,-1068 1238.69,-1068 1238.69,-1036 1396.63,-1036 1396.63,-1068"/> | |
<text text-anchor="middle" x="1317.66" y="-1057.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.func·006</text> | |
<text text-anchor="end" x="1388.65" y="-1049.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1388.65" y="-1041.6" font-family="Times,serif" font-size="8.00">of 18.5 (31.6%)</text> | |
</g> | |
<!-- N2->N11 --> | |
<g id="edge48" class="edge"><title>N2->N11</title> | |
<path fill="none" stroke="black" stroke-width="1.89642" d="M1329.03,-1117.95C1327.09,-1106.85 1324.39,-1091.48 1322.12,-1078.47"/> | |
<polygon fill="black" stroke="black" stroke-width="1.89642" points="1325.5,-1077.5 1320.33,-1068.25 1318.61,-1078.71 1325.5,-1077.5"/> | |
<text text-anchor="middle" x="1337.91" y="-1088.8" font-family="Times,serif" font-size="14.00">18.5</text> | |
</g> | |
<!-- N25 --> | |
<g id="node26" class="node"><title>N25</title> | |
<polygon fill="none" stroke="black" points="1627.4,-1068 1465.92,-1068 1465.92,-1036 1627.4,-1036 1627.4,-1068"/> | |
<text text-anchor="middle" x="1546.66" y="-1057.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.InitServer</text> | |
<text text-anchor="end" x="1619.53" y="-1049.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1619.53" y="-1041.6" font-family="Times,serif" font-size="8.00">of 12.7 (21.7%)</text> | |
</g> | |
<!-- N2->N25 --> | |
<g id="edge67" class="edge"><title>N2->N25</title> | |
<path fill="none" stroke="black" stroke-width="1.30059" d="M1372.1,-1117.95C1407.27,-1104.86 1458.4,-1085.84 1496.23,-1071.76"/> | |
<polygon fill="black" stroke="black" stroke-width="1.30059" points="1497.89,-1074.88 1506.04,-1068.12 1495.45,-1068.32 1497.89,-1074.88"/> | |
<text text-anchor="middle" x="1464.91" y="-1088.8" font-family="Times,serif" font-size="14.00">12.7</text> | |
</g> | |
<!-- N3 --> | |
<g id="node4" class="node"><title>N3</title> | |
<polygon fill="none" stroke="black" points="973.841,-1533.4 769.482,-1533.4 769.482,-1501.4 973.841,-1501.4 973.841,-1533.4"/> | |
<text text-anchor="middle" x="871.661" y="-1523" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Container).monitor</text> | |
<text text-anchor="end" x="965.751" y="-1515" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="965.751" y="-1507" font-family="Times,serif" font-size="8.00">of 22.8 (39.0%)</text> | |
</g> | |
<!-- N8 --> | |
<g id="node9" class="node"><title>N8</title> | |
<polygon fill="none" stroke="black" points="620.17,-1446.2 427.153,-1446.2 427.153,-1414.2 620.17,-1414.2 620.17,-1446.2"/> | |
<text text-anchor="middle" x="523.661" y="-1435.8" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).LogEvent</text> | |
<text text-anchor="end" x="612.415" y="-1427.8" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="612.415" y="-1419.8" font-family="Times,serif" font-size="8.00">of 19.8 (33.9%)</text> | |
</g> | |
<!-- N3->N8 --> | |
<g id="edge12" class="edge"><title>N3->N8</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M810.247,-1501.36C750.052,-1486.63 658.352,-1464.18 594.967,-1448.66"/> | |
<polygon fill="black" stroke="black" stroke-width="2" points="595.592,-1445.21 585.046,-1446.23 593.927,-1452.01 595.592,-1445.21"/> | |
<text text-anchor="middle" x="720.911" y="-1467" font-family="Times,serif" font-size="14.00">19.8</text> | |
</g> | |
<!-- N36 --> | |
<g id="node37" class="node"><title>N36</title> | |
<polygon fill="none" stroke="black" points="1136.71,-822 928.614,-822 928.614,-790 1136.71,-790 1136.71,-822"/> | |
<text text-anchor="middle" x="1032.66" y="-811.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.(*TagStore).ImageName</text> | |
<text text-anchor="end" x="1128.68" y="-803.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1128.68" y="-795.6" font-family="Times,serif" font-size="8.00">of 6.5 (11.1%)</text> | |
</g> | |
<!-- N3->N36 --> | |
<g id="edge57" class="edge"><title>N3->N36</title> | |
<path fill="none" stroke="black" d="M871.661,-1501.32C871.661,-1484.29 871.661,-1455.75 871.661,-1431.2 871.661,-1431.2 871.661,-1431.2 871.661,-887 871.661,-856.161 895.645,-837.21 925.099,-825.564"/> | |
<polygon fill="black" stroke="black" points="926.624,-828.734 934.831,-822.034 924.237,-822.154 926.624,-828.734"/> | |
<text text-anchor="middle" x="880.411" y="-1129.8" font-family="Times,serif" font-size="14.00">2.5</text> | |
</g> | |
<!-- N57 --> | |
<g id="node58" class="node"><title>N57</title> | |
<polygon fill="none" stroke="black" points="1090.4,-1446.2 902.923,-1446.2 902.923,-1414.2 1090.4,-1414.2 1090.4,-1446.2"/> | |
<text text-anchor="middle" x="996.661" y="-1435.8" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Run</text> | |
<text text-anchor="end" x="1082.53" y="-1427.8" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1082.53" y="-1419.8" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N3->N57 --> | |
<g id="edge65" class="edge"><title>N3->N57</title> | |
<path fill="none" stroke="black" d="M893.721,-1501.36C913.768,-1487.7 943.544,-1467.4 965.921,-1452.15"/> | |
<polygon fill="black" stroke="black" points="968.11,-1454.9 974.402,-1446.37 964.167,-1449.11 968.11,-1454.9"/> | |
<text text-anchor="middle" x="954.411" y="-1467" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N4 --> | |
<g id="node5" class="node"><title>N4</title> | |
<polygon fill="none" stroke="black" points="1063.85,-1638.6 899.474,-1638.6 899.474,-1606.6 1063.85,-1606.6 1063.85,-1638.6"/> | |
<text text-anchor="middle" x="981.661" y="-1628.2" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.func·015</text> | |
<text text-anchor="end" x="1055.76" y="-1620.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1055.76" y="-1612.2" font-family="Times,serif" font-size="8.00">of 22.8 (39.0%)</text> | |
</g> | |
<!-- N4->N3 --> | |
<g id="edge8" class="edge"><title>N4->N3</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M965.43,-1606.37C946.908,-1588.99 916.449,-1560.42 895.293,-1540.57"/> | |
<polygon fill="black" stroke="black" stroke-width="2" points="897.646,-1537.98 887.959,-1533.69 892.857,-1543.08 897.646,-1537.98"/> | |
<text text-anchor="middle" x="958.911" y="-1568.4" font-family="Times,serif" font-size="14.00">22.8</text> | |
</g> | |
<!-- N5->N4 --> | |
<g id="edge15" class="edge"><title>N5->N4</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M985.036,-1706.29C984.411,-1690.97 983.438,-1667.14 982.698,-1648.99"/> | |
<polygon fill="black" stroke="black" stroke-width="2" points="986.187,-1648.65 982.282,-1638.8 979.193,-1648.94 986.187,-1648.65"/> | |
<text text-anchor="middle" x="996.911" y="-1668.4" font-family="Times,serif" font-size="14.00">22.8</text> | |
</g> | |
<!-- N6 --> | |
<g id="node7" class="node"><title>N6</title> | |
<polygon fill="none" stroke="black" points="2120.69,-476.151 1420.63,-476.151 1420.63,-389.549 2120.69,-389.549 2120.69,-476.151"/> | |
<text text-anchor="middle" x="1770.66" y="-451.12" font-family="Times,serif" font-size="26.10">github.com/dotcloud/docker/pkg/truncindex.(*TruncIndex).addId</text> | |
<text text-anchor="end" x="2112.68" y="-425.02" font-family="Times,serif" font-size="26.10">7.7 (13.1%)</text> | |
<text text-anchor="end" x="2112.68" y="-398.92" font-family="Times,serif" font-size="26.10">of 21.7 (37.1%)</text> | |
</g> | |
<!-- N19 --> | |
<g id="node20" class="node"><title>N19</title> | |
<polygon fill="none" stroke="black" points="1860.6,-339.7 1680.73,-339.7 1680.73,-307.7 1860.6,-307.7 1860.6,-339.7"/> | |
<text text-anchor="middle" x="1770.66" y="-329.3" font-family="Times,serif" font-size="8.00">github.com/tchap/go-patricia/patricia.(*Trie).Insert</text> | |
<text text-anchor="end" x="1852.38" y="-321.3" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1852.38" y="-313.3" font-family="Times,serif" font-size="8.00">of 14.0 (23.9%)</text> | |
</g> | |
<!-- N6->N19 --> | |
<g id="edge18" class="edge"><title>N6->N19</title> | |
<path fill="none" stroke="black" stroke-width="1.43513" d="M1770.66,-389.501C1770.66,-376.066 1770.66,-361.643 1770.66,-349.824"/> | |
<polygon fill="black" stroke="black" stroke-width="1.43513" points="1774.16,-349.803 1770.66,-339.803 1767.16,-349.804 1774.16,-349.803"/> | |
<text text-anchor="middle" x="1782.91" y="-360.5" font-family="Times,serif" font-size="14.00">14.0</text> | |
</g> | |
<!-- N7 --> | |
<g id="node8" class="node"><title>N7</title> | |
<polygon fill="none" stroke="black" points="843.484,-1364.3 -0.161439,-1364.3 -0.161439,-1281.9 843.484,-1281.9 843.484,-1364.3"/> | |
<text text-anchor="middle" x="421.661" y="-1330.52" font-family="Times,serif" font-size="37.10">github.com/dotcloud/docker/server.(*Server).AddEvent</text> | |
<text text-anchor="end" x="835.323" y="-1293.42" font-family="Times,serif" font-size="37.10">19.8 (33.9%)</text> | |
</g> | |
<!-- N8->N7 --> | |
<g id="edge81" class="edge"><title>N8->N7</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M509.047,-1414.14C498.254,-1403.02 482.924,-1387.22 468.11,-1371.96"/> | |
<polygon fill="black" stroke="black" stroke-width="2" points="470.377,-1369.27 460.901,-1364.53 465.354,-1374.15 470.377,-1369.27"/> | |
<text text-anchor="middle" x="503.911" y="-1385" font-family="Times,serif" font-size="14.00">19.8</text> | |
</g> | |
<!-- N14 --> | |
<g id="node15" class="node"><title>N14</title> | |
<polygon fill="none" stroke="black" points="1357.19,-1638.6 1230.13,-1638.6 1230.13,-1606.6 1357.19,-1606.6 1357.19,-1638.6"/> | |
<text text-anchor="middle" x="1293.66" y="-1628.2" font-family="Times,serif" font-size="8.00">net/http.serverHandler.ServeHTTP</text> | |
<text text-anchor="end" x="1349.43" y="-1620.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1349.43" y="-1612.2" font-family="Times,serif" font-size="8.00">of 18.5 (31.6%)</text> | |
</g> | |
<!-- N9->N14 --> | |
<g id="edge54" class="edge"><title>N9->N14</title> | |
<path fill="none" stroke="black" stroke-width="1.89642" d="M1277.63,-1706.29C1280.61,-1690.9 1285.26,-1666.91 1288.79,-1648.73"/> | |
<polygon fill="black" stroke="black" stroke-width="1.89642" points="1292.25,-1649.29 1290.71,-1638.8 1285.37,-1647.96 1292.25,-1649.29"/> | |
<text text-anchor="middle" x="1299.91" y="-1668.4" font-family="Times,serif" font-size="14.00">18.5</text> | |
</g> | |
<!-- N75 --> | |
<g id="node76" class="node"><title>N75</title> | |
<polygon fill="none" stroke="black" points="1447.02,-1588.6 1338.3,-1588.6 1338.3,-1556.6 1447.02,-1556.6 1447.02,-1588.6"/> | |
<text text-anchor="middle" x="1392.66" y="-1578.2" font-family="Times,serif" font-size="8.00">net/http.(*conn).readRequest</text> | |
<text text-anchor="end" x="1439.09" y="-1570.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1439.09" y="-1562.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N9->N75 --> | |
<g id="edge35" class="edge"><title>N9->N75</title> | |
<path fill="none" stroke="black" d="M1296.89,-1706.57C1317.57,-1691.55 1347.93,-1666.7 1366.66,-1638.6 1374.82,-1626.35 1381.08,-1611.15 1385.41,-1598.52"/> | |
<polygon fill="black" stroke="black" points="1388.86,-1599.24 1388.59,-1588.65 1382.19,-1597.09 1388.86,-1599.24"/> | |
<text text-anchor="middle" x="1361.41" y="-1668.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N10 --> | |
<g id="node11" class="node"><title>N10</title> | |
<polygon fill="none" stroke="black" points="1416.63,-1339.1 1246.7,-1339.1 1246.7,-1307.1 1416.63,-1307.1 1416.63,-1339.1"/> | |
<text text-anchor="middle" x="1331.66" y="-1328.7" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.func·004</text> | |
<text text-anchor="end" x="1408.64" y="-1320.7" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1408.64" y="-1312.7" font-family="Times,serif" font-size="8.00">of 18.5 (31.6%)</text> | |
</g> | |
<!-- N15 --> | |
<g id="node16" class="node"><title>N15</title> | |
<polygon fill="none" stroke="black" points="1875.78,-1232 1665.54,-1232 1665.54,-1200 1875.78,-1200 1875.78,-1232"/> | |
<text text-anchor="middle" x="1770.66" y="-1221.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.postContainersCreate</text> | |
<text text-anchor="end" x="1867.97" y="-1213.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1867.97" y="-1205.6" font-family="Times,serif" font-size="8.00">of 17.0 (29.0%)</text> | |
</g> | |
<!-- N10->N15 --> | |
<g id="edge46" class="edge"><title>N10->N15</title> | |
<path fill="none" stroke="black" stroke-width="1.74266" d="M1362.36,-1307C1380.43,-1298.62 1403.93,-1288.6 1425.66,-1282 1470.05,-1268.53 1583.63,-1248.09 1668.43,-1233.74"/> | |
<polygon fill="black" stroke="black" stroke-width="1.74266" points="1669.08,-1237.18 1678.36,-1232.07 1667.91,-1230.28 1669.08,-1237.18"/> | |
<text text-anchor="middle" x="1582.91" y="-1252.8" font-family="Times,serif" font-size="14.00">17.0</text> | |
</g> | |
<!-- N47 --> | |
<g id="node48" class="node"><title>N47</title> | |
<polygon fill="none" stroke="black" points="1434.02,-1232 1229.31,-1232 1229.31,-1200 1434.02,-1200 1434.02,-1232"/> | |
<text text-anchor="middle" x="1331.66" y="-1221.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.postContainersStart</text> | |
<text text-anchor="end" x="1426.09" y="-1213.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1426.09" y="-1205.6" font-family="Times,serif" font-size="8.00">of 1.0 (1.7%)</text> | |
</g> | |
<!-- N10->N47 --> | |
<g id="edge38" class="edge"><title>N10->N47</title> | |
<path fill="none" stroke="black" d="M1331.66,-1307.04C1331.66,-1290.11 1331.66,-1262.33 1331.66,-1242.1"/> | |
<polygon fill="black" stroke="black" points="1335.16,-1242.03 1331.66,-1232.03 1328.16,-1242.03 1335.16,-1242.03"/> | |
<text text-anchor="middle" x="1340.41" y="-1252.8" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N56 --> | |
<g id="node57" class="node"><title>N56</title> | |
<polygon fill="none" stroke="black" points="1647.17,-1232 1452.15,-1232 1452.15,-1200 1647.17,-1200 1647.17,-1232"/> | |
<text text-anchor="middle" x="1549.66" y="-1221.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.deleteContainers</text> | |
<text text-anchor="end" x="1639.42" y="-1213.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1639.42" y="-1205.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N10->N56 --> | |
<g id="edge85" class="edge"><title>N10->N56</title> | |
<path fill="none" stroke="black" d="M1362.9,-1307.04C1401.42,-1288.47 1467,-1256.85 1509.31,-1236.46"/> | |
<polygon fill="black" stroke="black" points="1511,-1239.53 1518.49,-1232.03 1507.96,-1233.22 1511,-1239.53"/> | |
<text text-anchor="middle" x="1488.41" y="-1252.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N17 --> | |
<g id="node18" class="node"><title>N17</title> | |
<polygon fill="none" stroke="black" points="1427.17,-986 1208.16,-986 1208.16,-954 1427.17,-954 1427.17,-986"/> | |
<text text-anchor="middle" x="1317.66" y="-975.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerCreate·fm</text> | |
<text text-anchor="end" x="1419.41" y="-967.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1419.41" y="-959.6" font-family="Times,serif" font-size="8.00">of 17.0 (29.0%)</text> | |
</g> | |
<!-- N11->N17 --> | |
<g id="edge42" class="edge"><title>N11->N17</title> | |
<path fill="none" stroke="black" stroke-width="1.74266" d="M1317.66,-1035.95C1317.66,-1024.85 1317.66,-1009.48 1317.66,-996.472"/> | |
<polygon fill="black" stroke="black" stroke-width="1.74266" points="1321.16,-996.252 1317.66,-986.252 1314.16,-996.252 1321.16,-996.252"/> | |
<text text-anchor="middle" x="1329.91" y="-1006.8" font-family="Times,serif" font-size="14.00">17.0</text> | |
</g> | |
<!-- N50 --> | |
<g id="node51" class="node"><title>N50</title> | |
<polygon fill="none" stroke="black" points="1189.4,-986 975.923,-986 975.923,-954 1189.4,-954 1189.4,-986"/> | |
<text text-anchor="middle" x="1082.66" y="-975.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerStart·fm</text> | |
<text text-anchor="end" x="1181.53" y="-967.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1181.53" y="-959.6" font-family="Times,serif" font-size="8.00">of 1.0 (1.7%)</text> | |
</g> | |
<!-- N11->N50 --> | |
<g id="edge5" class="edge"><title>N11->N50</title> | |
<path fill="none" stroke="black" d="M1273.46,-1035.95C1234.69,-1022.75 1178.18,-1003.52 1136.73,-989.405"/> | |
<polygon fill="black" stroke="black" points="1137.66,-986.025 1127.06,-986.116 1135.4,-992.652 1137.66,-986.025"/> | |
<text text-anchor="middle" x="1223.41" y="-1006.8" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N65 --> | |
<g id="node66" class="node"><title>N65</title> | |
<polygon fill="none" stroke="black" points="1669.62,-986 1445.7,-986 1445.7,-954 1669.62,-954 1669.62,-986"/> | |
<text text-anchor="middle" x="1557.66" y="-975.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.*Server.ContainerDestroy·fm</text> | |
<text text-anchor="end" x="1661.64" y="-967.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1661.64" y="-959.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N11->N65 --> | |
<g id="edge32" class="edge"><title>N11->N65</title> | |
<path fill="none" stroke="black" d="M1362.8,-1035.95C1402.48,-1022.73 1460.35,-1003.44 1502.71,-989.316"/> | |
<polygon fill="black" stroke="black" points="1503.93,-992.598 1512.31,-986.116 1501.72,-985.958 1503.93,-992.598"/> | |
<text text-anchor="middle" x="1461.41" y="-1006.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N12 --> | |
<g id="node13" class="node"><title>N12</title> | |
<polygon fill="none" stroke="black" points="1395.25,-1533.4 1230.08,-1533.4 1230.08,-1501.4 1395.25,-1501.4 1395.25,-1533.4"/> | |
<text text-anchor="middle" x="1312.66" y="-1523" font-family="Times,serif" font-size="8.00">github.com/gorilla/mux.(*Router).ServeHTTP</text> | |
<text text-anchor="end" x="1387.2" y="-1515" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1387.2" y="-1507" font-family="Times,serif" font-size="8.00">of 18.5 (31.6%)</text> | |
</g> | |
<!-- N13 --> | |
<g id="node14" class="node"><title>N13</title> | |
<polygon fill="none" stroke="black" points="1383.08,-1446.2 1258.24,-1446.2 1258.24,-1414.2 1383.08,-1414.2 1383.08,-1446.2"/> | |
<text text-anchor="middle" x="1320.66" y="-1435.8" font-family="Times,serif" font-size="8.00">net/http.HandlerFunc.ServeHTTP</text> | |
<text text-anchor="end" x="1374.87" y="-1427.8" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1374.87" y="-1419.8" font-family="Times,serif" font-size="8.00">of 18.5 (31.6%)</text> | |
</g> | |
<!-- N12->N13 --> | |
<g id="edge47" class="edge"><title>N12->N13</title> | |
<path fill="none" stroke="black" stroke-width="1.89642" d="M1314.09,-1501.17C1315.25,-1488.81 1316.91,-1471.12 1318.27,-1456.62"/> | |
<polygon fill="black" stroke="black" stroke-width="1.89642" points="1321.79,-1456.58 1319.24,-1446.3 1314.82,-1455.93 1321.79,-1456.58"/> | |
<text text-anchor="middle" x="1329.91" y="-1467" font-family="Times,serif" font-size="14.00">18.5</text> | |
</g> | |
<!-- N13->N10 --> | |
<g id="edge55" class="edge"><title>N13->N10</title> | |
<path fill="none" stroke="black" stroke-width="1.89642" d="M1322.24,-1414.14C1324.01,-1397.21 1326.92,-1369.43 1329.03,-1349.2"/> | |
<polygon fill="black" stroke="black" stroke-width="1.89642" points="1332.53,-1349.44 1330.09,-1339.13 1325.57,-1348.71 1332.53,-1349.44"/> | |
<text text-anchor="middle" x="1337.91" y="-1385" font-family="Times,serif" font-size="14.00">18.5</text> | |
</g> | |
<!-- N14->N12 --> | |
<g id="edge43" class="edge"><title>N14->N12</title> | |
<path fill="none" stroke="black" stroke-width="1.89642" d="M1296.28,-1606.35C1298.56,-1593.17 1301.99,-1573.61 1305.16,-1556.6 1305.93,-1552.46 1306.78,-1548.07 1307.61,-1543.8"/> | |
<polygon fill="black" stroke="black" stroke-width="1.89642" points="1311.11,-1544.12 1309.6,-1533.63 1304.24,-1542.77 1311.11,-1544.12"/> | |
<text text-anchor="middle" x="1317.91" y="-1568.4" font-family="Times,serif" font-size="14.00">18.5</text> | |
</g> | |
<!-- N15->N2 --> | |
<g id="edge62" class="edge"><title>N15->N2</title> | |
<path fill="none" stroke="black" stroke-width="1.74266" d="M1688.35,-1200C1613.23,-1186.31 1502.33,-1166.1 1424.18,-1151.86"/> | |
<polygon fill="black" stroke="black" stroke-width="1.74266" points="1424.8,-1148.42 1414.33,-1150.07 1423.55,-1155.3 1424.8,-1148.42"/> | |
<text text-anchor="middle" x="1589.91" y="-1170.8" font-family="Times,serif" font-size="14.00">17.0</text> | |
</g> | |
<!-- N16 --> | |
<g id="node17" class="node"><title>N16</title> | |
<polygon fill="none" stroke="black" points="1425.04,-904 1210.28,-904 1210.28,-872 1425.04,-872 1425.04,-904"/> | |
<text text-anchor="middle" x="1317.66" y="-893.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerCreate</text> | |
<text text-anchor="end" x="1416.85" y="-885.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1416.85" y="-877.6" font-family="Times,serif" font-size="8.00">of 17.0 (29.0%)</text> | |
</g> | |
<!-- N18 --> | |
<g id="node19" class="node"><title>N18</title> | |
<polygon fill="none" stroke="black" points="1415.44,-822 1219.88,-822 1219.88,-790 1415.44,-790 1415.44,-822"/> | |
<text text-anchor="middle" x="1317.66" y="-811.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Create</text> | |
<text text-anchor="end" x="1407.3" y="-803.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1407.3" y="-795.6" font-family="Times,serif" font-size="8.00">of 14.5 (24.8%)</text> | |
</g> | |
<!-- N16->N18 --> | |
<g id="edge80" class="edge"><title>N16->N18</title> | |
<path fill="none" stroke="black" stroke-width="1.48639" d="M1317.66,-871.953C1317.66,-860.849 1317.66,-845.475 1317.66,-832.472"/> | |
<polygon fill="black" stroke="black" stroke-width="1.48639" points="1321.16,-832.252 1317.66,-822.252 1314.16,-832.252 1321.16,-832.252"/> | |
<text text-anchor="middle" x="1329.91" y="-842.8" font-family="Times,serif" font-size="14.00">14.5</text> | |
</g> | |
<!-- N16->N36 --> | |
<g id="edge75" class="edge"><title>N16->N36</title> | |
<path fill="none" stroke="black" d="M1264.06,-871.953C1216.44,-858.586 1146.77,-839.031 1096.33,-824.872"/> | |
<polygon fill="black" stroke="black" points="1097.08,-821.449 1086.51,-822.116 1095.19,-828.188 1097.08,-821.449"/> | |
<text text-anchor="middle" x="1201.41" y="-842.8" font-family="Times,serif" font-size="14.00">2.5</text> | |
</g> | |
<!-- N17->N16 --> | |
<g id="edge53" class="edge"><title>N17->N16</title> | |
<path fill="none" stroke="black" stroke-width="1.74266" d="M1317.66,-953.953C1317.66,-942.849 1317.66,-927.475 1317.66,-914.472"/> | |
<polygon fill="black" stroke="black" stroke-width="1.74266" points="1321.16,-914.252 1317.66,-904.252 1314.16,-914.252 1321.16,-914.252"/> | |
<text text-anchor="middle" x="1329.91" y="-924.8" font-family="Times,serif" font-size="14.00">17.0</text> | |
</g> | |
<!-- N29 --> | |
<g id="node30" class="node"><title>N29</title> | |
<polygon fill="none" stroke="black" points="1525.22,-740 1324.1,-740 1324.1,-708 1525.22,-708 1525.22,-740"/> | |
<text text-anchor="middle" x="1424.66" y="-729.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).Register</text> | |
<text text-anchor="end" x="1517.19" y="-721.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1517.19" y="-713.6" font-family="Times,serif" font-size="8.00">of 11.5 (19.6%)</text> | |
</g> | |
<!-- N18->N29 --> | |
<g id="edge50" class="edge"><title>N18->N29</title> | |
<path fill="none" stroke="black" stroke-width="1.17886" d="M1337.79,-789.953C1354.27,-777.628 1377.79,-760.041 1396.21,-746.275"/> | |
<polygon fill="black" stroke="black" stroke-width="1.17886" points="1398.35,-749.043 1404.26,-740.252 1394.16,-743.437 1398.35,-749.043"/> | |
<text text-anchor="middle" x="1389.66" y="-760.8" font-family="Times,serif" font-size="14.00">11.5</text> | |
</g> | |
<!-- N39 --> | |
<g id="node40" class="node"><title>N39</title> | |
<polygon fill="none" stroke="black" points="1305.44,-740 1085.88,-740 1085.88,-708 1305.44,-708 1305.44,-740"/> | |
<text text-anchor="middle" x="1195.66" y="-729.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).newContainer</text> | |
<text text-anchor="end" x="1297.3" y="-721.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1297.3" y="-713.6" font-family="Times,serif" font-size="8.00">of 3.0 (5.1%)</text> | |
</g> | |
<!-- N18->N39 --> | |
<g id="edge25" class="edge"><title>N18->N39</title> | |
<path fill="none" stroke="black" d="M1294.71,-789.953C1275.75,-777.517 1248.62,-759.724 1227.54,-745.904"/> | |
<polygon fill="black" stroke="black" points="1229.2,-742.809 1218.92,-740.252 1225.36,-748.662 1229.2,-742.809"/> | |
<text text-anchor="middle" x="1273.41" y="-760.8" font-family="Times,serif" font-size="14.00">3.0</text> | |
</g> | |
<!-- N20 --> | |
<g id="node21" class="node"><title>N20</title> | |
<polygon fill="none" stroke="black" points="1919.4,-257.452 1621.92,-257.452 1621.92,-206.448 1919.4,-206.448 1919.4,-257.452"/> | |
<text text-anchor="middle" x="1770.66" y="-242.1" font-family="Times,serif" font-size="14.50">github.com/tchap/go-patricia/patricia.(*Trie).put</text> | |
<text text-anchor="end" x="1911.53" y="-227.6" font-family="Times,serif" font-size="14.50">1.0 (1.7%)</text> | |
<text text-anchor="end" x="1911.53" y="-213.1" font-family="Times,serif" font-size="14.50">of 14.0 (23.9%)</text> | |
</g> | |
<!-- N19->N20 --> | |
<g id="edge7" class="edge"><title>N19->N20</title> | |
<path fill="none" stroke="black" stroke-width="1.43513" d="M1770.66,-307.475C1770.66,-296.635 1770.66,-281.617 1770.66,-267.901"/> | |
<polygon fill="black" stroke="black" stroke-width="1.43513" points="1774.16,-267.757 1770.66,-257.757 1767.16,-267.757 1774.16,-267.757"/> | |
<text text-anchor="middle" x="1782.91" y="-278.5" font-family="Times,serif" font-size="14.00">14.0</text> | |
</g> | |
<!-- N28 --> | |
<g id="node29" class="node"><title>N28</title> | |
<polygon fill="none" stroke="black" points="2063.57,-156.3 1477.75,-156.3 1477.75,-86.8997 2063.57,-86.8997 2063.57,-156.3"/> | |
<text text-anchor="middle" x="1770.66" y="-127.72" font-family="Times,serif" font-size="30.60">github.com/tchap/go-patricia/patricia.NewTrie</text> | |
<text text-anchor="end" x="2055.62" y="-97.12" font-family="Times,serif" font-size="30.60">12.0 (20.5%)</text> | |
</g> | |
<!-- N20->N28 --> | |
<g id="edge82" class="edge"><title>N20->N28</title> | |
<path fill="none" stroke="black" stroke-width="1.23011" d="M1770.66,-206.364C1770.66,-194.622 1770.66,-180.204 1770.66,-166.661"/> | |
<polygon fill="black" stroke="black" stroke-width="1.23011" points="1774.16,-166.534 1770.66,-156.534 1767.16,-166.534 1774.16,-166.534"/> | |
<text text-anchor="middle" x="1782.91" y="-177" font-family="Times,serif" font-size="14.00">12.0</text> | |
</g> | |
<!-- N51 --> | |
<g id="node52" class="node"><title>N51</title> | |
<polygon fill="none" stroke="black" points="1459.6,-137.6 1249.72,-137.6 1249.72,-105.6 1459.6,-105.6 1459.6,-137.6"/> | |
<text text-anchor="middle" x="1354.66" y="-127.2" font-family="Times,serif" font-size="8.00">github.com/tchap/go-patricia/patricia.(*sparseChildList).add</text> | |
<text text-anchor="end" x="1451.63" y="-119.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1451.63" y="-111.2" font-family="Times,serif" font-size="8.00">of 1.0 (1.7%)</text> | |
</g> | |
<!-- N20->N51 --> | |
<g id="edge29" class="edge"><title>N20->N51</title> | |
<path fill="none" stroke="black" d="M1666.59,-206.386C1608.24,-192.313 1534.22,-173.965 1468.66,-156.2 1450.68,-151.328 1431.21,-145.713 1413.52,-140.486"/> | |
<polygon fill="black" stroke="black" points="1414.49,-137.122 1403.91,-137.629 1412.5,-143.832 1414.49,-137.122"/> | |
<text text-anchor="middle" x="1593.41" y="-177" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N21 --> | |
<g id="node22" class="node"><title>N21</title> | |
<polygon fill="none" stroke="black" points="1859.84,-904 1681.48,-904 1681.48,-872 1859.84,-872 1859.84,-904"/> | |
<text text-anchor="middle" x="1770.66" y="-893.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.NewDaemon</text> | |
<text text-anchor="end" x="1851.75" y="-885.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1851.75" y="-877.6" font-family="Times,serif" font-size="8.00">of 12.7 (21.7%)</text> | |
</g> | |
<!-- N22 --> | |
<g id="node23" class="node"><title>N22</title> | |
<polygon fill="none" stroke="black" points="1883.83,-822 1657.49,-822 1657.49,-790 1883.83,-790 1883.83,-822"/> | |
<text text-anchor="middle" x="1770.66" y="-811.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.NewDaemonFromDirectory</text> | |
<text text-anchor="end" x="1875.75" y="-803.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1875.75" y="-795.6" font-family="Times,serif" font-size="8.00">of 12.7 (21.7%)</text> | |
</g> | |
<!-- N21->N22 --> | |
<g id="edge28" class="edge"><title>N21->N22</title> | |
<path fill="none" stroke="black" stroke-width="1.30059" d="M1770.66,-871.953C1770.66,-860.849 1770.66,-845.475 1770.66,-832.472"/> | |
<polygon fill="black" stroke="black" stroke-width="1.30059" points="1774.16,-832.252 1770.66,-822.252 1767.16,-832.252 1774.16,-832.252"/> | |
<text text-anchor="middle" x="1782.91" y="-842.8" font-family="Times,serif" font-size="14.00">12.7</text> | |
</g> | |
<!-- N24 --> | |
<g id="node25" class="node"><title>N24</title> | |
<polygon fill="none" stroke="black" points="1852.62,-740 1688.7,-740 1688.7,-708 1852.62,-708 1852.62,-740"/> | |
<text text-anchor="middle" x="1770.66" y="-729.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.NewGraph</text> | |
<text text-anchor="end" x="1844.64" y="-721.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1844.64" y="-713.6" font-family="Times,serif" font-size="8.00">of 12.7 (21.7%)</text> | |
</g> | |
<!-- N22->N24 --> | |
<g id="edge14" class="edge"><title>N22->N24</title> | |
<path fill="none" stroke="black" stroke-width="1.30059" d="M1770.66,-789.953C1770.66,-778.849 1770.66,-763.475 1770.66,-750.472"/> | |
<polygon fill="black" stroke="black" stroke-width="1.30059" points="1774.16,-750.252 1770.66,-740.252 1767.16,-750.252 1774.16,-750.252"/> | |
<text text-anchor="middle" x="1782.91" y="-760.8" font-family="Times,serif" font-size="14.00">12.7</text> | |
</g> | |
<!-- N23 --> | |
<g id="node24" class="node"><title>N23</title> | |
<polygon fill="none" stroke="black" points="1861.61,-640 1679.71,-640 1679.71,-608 1861.61,-608 1861.61,-640"/> | |
<text text-anchor="middle" x="1770.66" y="-629.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.(*Graph).restore</text> | |
<text text-anchor="end" x="1853.64" y="-621.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1853.64" y="-613.6" font-family="Times,serif" font-size="8.00">of 12.7 (21.7%)</text> | |
</g> | |
<!-- N32 --> | |
<g id="node33" class="node"><title>N32</title> | |
<polygon fill="none" stroke="black" points="1876.39,-558 1664.93,-558 1664.93,-526 1876.39,-526 1876.39,-558"/> | |
<text text-anchor="middle" x="1770.66" y="-547.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/pkg/truncindex.NewTruncIndex</text> | |
<text text-anchor="end" x="1868.27" y="-539.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1868.27" y="-531.6" font-family="Times,serif" font-size="8.00">of 10.2 (17.4%)</text> | |
</g> | |
<!-- N23->N32 --> | |
<g id="edge13" class="edge"><title>N23->N32</title> | |
<path fill="none" stroke="black" stroke-width="1.04431" d="M1770.66,-607.953C1770.66,-596.849 1770.66,-581.475 1770.66,-568.472"/> | |
<polygon fill="black" stroke="black" stroke-width="1.04431" points="1774.16,-568.252 1770.66,-558.252 1767.16,-568.252 1774.16,-568.252"/> | |
<text text-anchor="middle" x="1782.91" y="-578.8" font-family="Times,serif" font-size="14.00">10.2</text> | |
</g> | |
<!-- N41 --> | |
<g id="node42" class="node"><title>N41</title> | |
<polygon fill="none" stroke="black" points="1647.1,-558 1576.22,-558 1576.22,-526 1647.1,-526 1647.1,-558"/> | |
<text text-anchor="middle" x="1611.66" y="-547.6" font-family="Times,serif" font-size="8.00">io/ioutil.ReadDir</text> | |
<text text-anchor="end" x="1638.88" y="-539.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1638.88" y="-531.6" font-family="Times,serif" font-size="8.00">of 2.5 (4.3%)</text> | |
</g> | |
<!-- N23->N41 --> | |
<g id="edge34" class="edge"><title>N23->N41</title> | |
<path fill="none" stroke="black" d="M1740.75,-607.953C1715.3,-595.143 1678.54,-576.649 1650.75,-562.669"/> | |
<polygon fill="black" stroke="black" points="1652.21,-559.484 1641.7,-558.116 1649.06,-565.737 1652.21,-559.484"/> | |
<text text-anchor="middle" x="1709.41" y="-578.8" font-family="Times,serif" font-size="14.00">2.5</text> | |
</g> | |
<!-- N24->N23 --> | |
<g id="edge4" class="edge"><title>N24->N23</title> | |
<path fill="none" stroke="black" stroke-width="1.30059" d="M1770.66,-707.688C1770.66,-692.369 1770.66,-668.537 1770.66,-650.386"/> | |
<polygon fill="black" stroke="black" stroke-width="1.30059" points="1774.16,-650.205 1770.66,-640.205 1767.16,-650.205 1774.16,-650.205"/> | |
<text text-anchor="middle" x="1782.91" y="-669.8" font-family="Times,serif" font-size="14.00">12.7</text> | |
</g> | |
<!-- N26 --> | |
<g id="node27" class="node"><title>N26</title> | |
<polygon fill="none" stroke="black" points="1853.4,-986 1687.92,-986 1687.92,-954 1853.4,-954 1853.4,-986"/> | |
<text text-anchor="middle" x="1770.66" y="-975.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.NewServer</text> | |
<text text-anchor="end" x="1845.53" y="-967.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1845.53" y="-959.6" font-family="Times,serif" font-size="8.00">of 12.7 (21.7%)</text> | |
</g> | |
<!-- N25->N26 --> | |
<g id="edge40" class="edge"><title>N25->N26</title> | |
<path fill="none" stroke="black" stroke-width="1.30059" d="M1588.79,-1035.95C1625.6,-1022.81 1679.16,-1003.68 1718.63,-989.584"/> | |
<polygon fill="black" stroke="black" stroke-width="1.30059" points="1720.1,-992.775 1728.34,-986.116 1717.74,-986.183 1720.1,-992.775"/> | |
<text text-anchor="middle" x="1684.91" y="-1006.8" font-family="Times,serif" font-size="14.00">12.7</text> | |
</g> | |
<!-- N26->N21 --> | |
<g id="edge60" class="edge"><title>N26->N21</title> | |
<path fill="none" stroke="black" stroke-width="1.30059" d="M1770.66,-953.953C1770.66,-942.849 1770.66,-927.475 1770.66,-914.472"/> | |
<polygon fill="black" stroke="black" stroke-width="1.30059" points="1774.16,-914.252 1770.66,-904.252 1767.16,-914.252 1774.16,-914.252"/> | |
<text text-anchor="middle" x="1782.91" y="-924.8" font-family="Times,serif" font-size="14.00">12.7</text> | |
</g> | |
<!-- N27->N2 --> | |
<g id="edge72" class="edge"><title>N27->N2</title> | |
<path fill="none" stroke="black" stroke-width="1.30059" d="M1201.66,-1656.32C1201.66,-1637.04 1201.66,-1602.86 1201.66,-1573.6 1201.66,-1573.6 1201.66,-1573.6 1201.66,-1215 1201.66,-1184.87 1227.3,-1165.72 1255.81,-1153.75"/> | |
<polygon fill="black" stroke="black" stroke-width="1.30059" points="1257.1,-1157 1265.14,-1150.11 1254.55,-1150.48 1257.1,-1157"/> | |
<text text-anchor="middle" x="1213.91" y="-1426" font-family="Times,serif" font-size="14.00">12.7</text> | |
</g> | |
<!-- N30 --> | |
<g id="node31" class="node"><title>N30</title> | |
<polygon fill="none" stroke="black" points="1545.05,-640 1346.27,-640 1346.27,-608 1545.05,-608 1545.05,-640"/> | |
<text text-anchor="middle" x="1445.66" y="-629.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).register</text> | |
<text text-anchor="end" x="1536.86" y="-621.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1536.86" y="-613.6" font-family="Times,serif" font-size="8.00">of 11.5 (19.6%)</text> | |
</g> | |
<!-- N29->N30 --> | |
<g id="edge58" class="edge"><title>N29->N30</title> | |
<path fill="none" stroke="black" stroke-width="1.17886" d="M1427.94,-707.688C1431.24,-692.297 1436.38,-668.313 1440.28,-650.131"/> | |
<polygon fill="black" stroke="black" stroke-width="1.17886" points="1443.73,-650.716 1442.4,-640.205 1436.89,-649.25 1443.73,-650.716"/> | |
<text text-anchor="middle" x="1450.66" y="-669.8" font-family="Times,serif" font-size="14.00">11.5</text> | |
</g> | |
<!-- N31 --> | |
<g id="node32" class="node"><title>N31</title> | |
<polygon fill="none" stroke="black" points="1558.39,-558 1336.93,-558 1336.93,-526 1558.39,-526 1558.39,-558"/> | |
<text text-anchor="middle" x="1447.66" y="-547.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/pkg/truncindex.(*TruncIndex).Add</text> | |
<text text-anchor="end" x="1550.27" y="-539.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1550.27" y="-531.6" font-family="Times,serif" font-size="8.00">of 11.5 (19.6%)</text> | |
</g> | |
<!-- N30->N31 --> | |
<g id="edge21" class="edge"><title>N30->N31</title> | |
<path fill="none" stroke="black" stroke-width="1.17886" d="M1446.04,-607.953C1446.32,-596.849 1446.7,-581.475 1447.02,-568.472"/> | |
<polygon fill="black" stroke="black" stroke-width="1.17886" points="1450.53,-568.336 1447.28,-558.252 1443.53,-568.161 1450.53,-568.336"/> | |
<text text-anchor="middle" x="1459.66" y="-578.8" font-family="Times,serif" font-size="14.00">11.5</text> | |
</g> | |
<!-- N31->N6 --> | |
<g id="edge61" class="edge"><title>N31->N6</title> | |
<path fill="none" stroke="black" stroke-width="1.17886" d="M1453.16,-525.979C1457.81,-515.406 1465.51,-501.798 1476.67,-494 1484.18,-488.758 1495.16,-483.821 1508.53,-479.206"/> | |
<polygon fill="black" stroke="black" stroke-width="1.17886" points="1509.73,-482.495 1518.15,-476.062 1507.56,-475.841 1509.73,-482.495"/> | |
<text text-anchor="middle" x="1489.66" y="-496.8" font-family="Times,serif" font-size="14.00">11.5</text> | |
</g> | |
<!-- N32->N6 --> | |
<g id="edge30" class="edge"><title>N32->N6</title> | |
<path fill="none" stroke="black" stroke-width="1.04431" d="M1770.66,-525.648C1770.66,-515.217 1770.66,-500.754 1770.66,-486.389"/> | |
<polygon fill="black" stroke="black" stroke-width="1.04431" points="1774.16,-486.006 1770.66,-476.006 1767.16,-486.006 1774.16,-486.006"/> | |
<text text-anchor="middle" x="1782.91" y="-496.8" font-family="Times,serif" font-size="14.00">10.2</text> | |
</g> | |
<!-- N33 --> | |
<g id="node34" class="node"><title>N33</title> | |
<polygon fill="none" stroke="black" points="1108.05,-153.3 957.274,-153.3 957.274,-89.8997 1108.05,-89.8997 1108.05,-153.3"/> | |
<text text-anchor="middle" x="1032.66" y="-127.12" font-family="Times,serif" font-size="27.60">concatstring</text> | |
<text text-anchor="end" x="1100.1" y="-99.52" font-family="Times,serif" font-size="27.60">9.0 (15.4%)</text> | |
</g> | |
<!-- N34 --> | |
<g id="node35" class="node"><title>N34</title> | |
<polygon fill="none" stroke="black" points="1073.64,-247.95 991.681,-247.95 991.681,-215.95 1073.64,-215.95 1073.64,-247.95"/> | |
<text text-anchor="middle" x="1032.66" y="-237.55" font-family="Times,serif" font-size="8.00">runtime.concatstring</text> | |
<text text-anchor="end" x="1065.65" y="-229.55" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1065.65" y="-221.55" font-family="Times,serif" font-size="8.00">of 9.0 (15.4%)</text> | |
</g> | |
<!-- N34->N33 --> | |
<g id="edge77" class="edge"><title>N34->N33</title> | |
<path fill="none" stroke="black" d="M1032.66,-215.884C1032.66,-202.406 1032.66,-182.012 1032.66,-163.726"/> | |
<polygon fill="black" stroke="black" points="1036.16,-163.558 1032.66,-153.558 1029.16,-163.558 1036.16,-163.558"/> | |
<text text-anchor="middle" x="1041.41" y="-177" font-family="Times,serif" font-size="14.00">9.0</text> | |
</g> | |
<!-- N35 --> | |
<g id="node36" class="node"><title>N35</title> | |
<polygon fill="none" stroke="black" points="1125.9,-690 939.427,-690 939.427,-658 1125.9,-658 1125.9,-690"/> | |
<text text-anchor="middle" x="1032.66" y="-679.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/graph.(*TagStore).ByID</text> | |
<text text-anchor="end" x="1118.03" y="-671.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1118.03" y="-663.6" font-family="Times,serif" font-size="8.00">of 6.5 (11.1%)</text> | |
</g> | |
<!-- N35->N34 --> | |
<g id="edge66" class="edge"><title>N35->N34</title> | |
<path fill="none" stroke="black" d="M1032.66,-657.882C1032.66,-640.175 1032.66,-609.958 1032.66,-584 1032.66,-584 1032.66,-584 1032.66,-322.7 1032.66,-301.022 1032.66,-276.399 1032.66,-258.434"/> | |
<polygon fill="black" stroke="black" points="1036.16,-258.195 1032.66,-248.195 1029.16,-258.195 1036.16,-258.195"/> | |
<text text-anchor="middle" x="1041.41" y="-496.8" font-family="Times,serif" font-size="14.00">6.5</text> | |
</g> | |
<!-- N36->N35 --> | |
<g id="edge16" class="edge"><title>N36->N35</title> | |
<path fill="none" stroke="black" d="M1032.66,-789.833C1032.66,-767.817 1032.66,-726.738 1032.66,-700.148"/> | |
<polygon fill="black" stroke="black" points="1036.16,-700.07 1032.66,-690.07 1029.16,-700.071 1036.16,-700.07"/> | |
<text text-anchor="middle" x="1041.41" y="-760.8" font-family="Times,serif" font-size="14.00">6.5</text> | |
</g> | |
<!-- N37 --> | |
<g id="node38" class="node"><title>N37</title> | |
<polygon fill="none" stroke="black" points="1310.61,-455.952 1060.71,-455.952 1060.71,-409.748 1310.61,-409.748 1310.61,-455.952"/> | |
<text text-anchor="middle" x="1185.66" y="-436.71" font-family="Times,serif" font-size="19.30">encoding/hex.EncodeToString</text> | |
<text text-anchor="end" x="1302.63" y="-417.41" font-family="Times,serif" font-size="19.30">3.0 (5.1%)</text> | |
</g> | |
<!-- N38 --> | |
<g id="node39" class="node"><title>N38</title> | |
<polygon fill="none" stroke="black" points="1306.2,-640 1065.13,-640 1065.13,-608 1306.2,-608 1306.2,-640"/> | |
<text text-anchor="middle" x="1185.66" y="-629.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon.(*Daemon).generateIdAndName</text> | |
<text text-anchor="end" x="1298.18" y="-621.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1298.18" y="-613.6" font-family="Times,serif" font-size="8.00">of 3.0 (5.1%)</text> | |
</g> | |
<!-- N40 --> | |
<g id="node41" class="node"><title>N40</title> | |
<polygon fill="none" stroke="black" points="1280.01,-558 1091.31,-558 1091.31,-526 1280.01,-526 1280.01,-558"/> | |
<text text-anchor="middle" x="1185.66" y="-547.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/utils.GenerateRandomID</text> | |
<text text-anchor="end" x="1272.09" y="-539.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1272.09" y="-531.6" font-family="Times,serif" font-size="8.00">of 3.0 (5.1%)</text> | |
</g> | |
<!-- N38->N40 --> | |
<g id="edge73" class="edge"><title>N38->N40</title> | |
<path fill="none" stroke="black" d="M1185.66,-607.953C1185.66,-596.849 1185.66,-581.475 1185.66,-568.472"/> | |
<polygon fill="black" stroke="black" points="1189.16,-568.252 1185.66,-558.252 1182.16,-568.252 1189.16,-568.252"/> | |
<text text-anchor="middle" x="1194.41" y="-578.8" font-family="Times,serif" font-size="14.00">3.0</text> | |
</g> | |
<!-- N39->N38 --> | |
<g id="edge41" class="edge"><title>N39->N38</title> | |
<path fill="none" stroke="black" d="M1194.1,-707.688C1192.54,-692.369 1190.1,-668.537 1188.25,-650.386"/> | |
<polygon fill="black" stroke="black" points="1191.71,-649.798 1187.21,-640.205 1184.75,-650.509 1191.71,-649.798"/> | |
<text text-anchor="middle" x="1201.41" y="-669.8" font-family="Times,serif" font-size="14.00">3.0</text> | |
</g> | |
<!-- N40->N37 --> | |
<g id="edge3" class="edge"><title>N40->N37</title> | |
<path fill="none" stroke="black" d="M1185.66,-525.648C1185.66,-510.246 1185.66,-486.049 1185.66,-466.364"/> | |
<polygon fill="black" stroke="black" points="1189.16,-466.265 1185.66,-456.265 1182.16,-466.265 1189.16,-466.265"/> | |
<text text-anchor="middle" x="1194.41" y="-496.8" font-family="Times,serif" font-size="14.00">3.0</text> | |
</g> | |
<!-- N42 --> | |
<g id="node43" class="node"><title>N42</title> | |
<polygon fill="none" stroke="black" points="1402.87,-448.85 1328.45,-448.85 1328.45,-416.85 1402.87,-416.85 1402.87,-448.85"/> | |
<text text-anchor="middle" x="1365.66" y="-438.45" font-family="Times,serif" font-size="8.00">os.(*File).Readdir</text> | |
<text text-anchor="end" x="1394.77" y="-430.45" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1394.77" y="-422.45" font-family="Times,serif" font-size="8.00">of 2.5 (4.3%)</text> | |
</g> | |
<!-- N41->N42 --> | |
<g id="edge19" class="edge"><title>N41->N42</title> | |
<path fill="none" stroke="black" d="M1581.91,-525.787C1560.81,-515.537 1531.58,-502.403 1504.66,-494 1464.47,-481.457 1449.26,-494.934 1411.66,-476 1401.94,-471.104 1392.76,-463.556 1385.2,-456.193"/> | |
<polygon fill="black" stroke="black" points="1387.69,-453.735 1378.21,-448.997 1382.67,-458.61 1387.69,-453.735"/> | |
<text text-anchor="middle" x="1550.41" y="-496.8" font-family="Times,serif" font-size="14.00">2.5</text> | |
</g> | |
<!-- N43 --> | |
<g id="node44" class="node"><title>N43</title> | |
<polygon fill="none" stroke="black" points="1226.2,-339.7 1155.12,-339.7 1155.12,-307.7 1226.2,-307.7 1226.2,-339.7"/> | |
<text text-anchor="middle" x="1190.66" y="-329.3" font-family="Times,serif" font-size="8.00">os.(*File).readdir</text> | |
<text text-anchor="end" x="1218.43" y="-321.3" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1218.43" y="-313.3" font-family="Times,serif" font-size="8.00">of 2.5 (4.3%)</text> | |
</g> | |
<!-- N42->N43 --> | |
<g id="edge2" class="edge"><title>N42->N43</title> | |
<path fill="none" stroke="black" d="M1351.22,-416.683C1342.57,-408.115 1331.07,-397.577 1319.66,-389.7 1293.4,-371.57 1261.38,-355.405 1235.8,-343.729"/> | |
<polygon fill="black" stroke="black" points="1236.9,-340.385 1226.35,-339.48 1234.03,-346.771 1236.9,-340.385"/> | |
<text text-anchor="middle" x="1298.41" y="-360.5" font-family="Times,serif" font-size="14.00">2.5</text> | |
</g> | |
<!-- N43->N34 --> | |
<g id="edge11" class="edge"><title>N43->N34</title> | |
<path fill="none" stroke="black" d="M1164.22,-307.678C1137.9,-292.728 1097.34,-269.69 1068.21,-253.146"/> | |
<polygon fill="black" stroke="black" points="1069.62,-249.917 1059.19,-248.021 1066.16,-256.004 1069.62,-249.917"/> | |
<text text-anchor="middle" x="1139.41" y="-278.5" font-family="Times,serif" font-size="14.00">2.5</text> | |
</g> | |
<!-- N44 --> | |
<g id="node45" class="node"><title>N44</title> | |
<polygon fill="none" stroke="black" points="1852.24,-1538.8 1763.08,-1538.8 1763.08,-1496 1852.24,-1496 1852.24,-1538.8"/> | |
<text text-anchor="middle" x="1807.66" y="-1520.84" font-family="Times,serif" font-size="17.20">io.Copy</text> | |
<text text-anchor="end" x="1844.2" y="-1503.64" font-family="Times,serif" font-size="17.20">2.0 (3.4%)</text> | |
</g> | |
<!-- N45 --> | |
<g id="node46" class="node"><title>N45</title> | |
<polygon fill="none" stroke="black" points="1607.4,-1638.6 1413.92,-1638.6 1413.92,-1606.6 1607.4,-1606.6 1607.4,-1638.6"/> | |
<text text-anchor="middle" x="1510.66" y="-1628.2" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.ListenAndServe</text> | |
<text text-anchor="end" x="1599.53" y="-1620.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1599.53" y="-1612.2" font-family="Times,serif" font-size="8.00">of 1.0 (1.7%)</text> | |
</g> | |
<!-- N55 --> | |
<g id="node56" class="node"><title>N55</title> | |
<polygon fill="none" stroke="black" points="1744.78,-1533.4 1562.55,-1533.4 1562.55,-1501.4 1744.78,-1501.4 1744.78,-1533.4"/> | |
<text text-anchor="middle" x="1653.66" y="-1523" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/api/server.createRouter</text> | |
<text text-anchor="end" x="1736.97" y="-1515" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1736.97" y="-1507" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N45->N55 --> | |
<g id="edge31" class="edge"><title>N45->N55</title> | |
<path fill="none" stroke="black" d="M1531.45,-1606.59C1556.02,-1588.86 1597.05,-1559.25 1624.72,-1539.29"/> | |
<polygon fill="black" stroke="black" points="1626.78,-1542.11 1632.84,-1533.42 1622.69,-1536.44 1626.78,-1542.11"/> | |
<text text-anchor="middle" x="1608.41" y="-1568.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N73 --> | |
<g id="node74" class="node"><title>N73</title> | |
<polygon fill="none" stroke="black" points="1544.02,-1533.4 1451.3,-1533.4 1451.3,-1501.4 1544.02,-1501.4 1544.02,-1533.4"/> | |
<text text-anchor="middle" x="1497.66" y="-1523" font-family="Times,serif" font-size="8.00">net/http.(*Server).Serve</text> | |
<text text-anchor="end" x="1536.09" y="-1515" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1536.09" y="-1507" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N45->N73 --> | |
<g id="edge52" class="edge"><title>N45->N73</title> | |
<path fill="none" stroke="black" d="M1508.74,-1606.37C1506.67,-1589.91 1503.33,-1563.4 1500.86,-1543.77"/> | |
<polygon fill="black" stroke="black" points="1504.31,-1543.17 1499.59,-1533.69 1497.36,-1544.05 1504.31,-1543.17"/> | |
<text text-anchor="middle" x="1515.41" y="-1568.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N46->N45 --> | |
<g id="edge33" class="edge"><title>N46->N45</title> | |
<path fill="none" stroke="black" d="M1417.43,-1706.37C1415.31,-1692.1 1414.62,-1670.89 1425.16,-1656.6 1428.73,-1651.76 1433.11,-1647.63 1437.99,-1644.11"/> | |
<polygon fill="black" stroke="black" points="1439.97,-1647 1446.6,-1638.73 1436.26,-1641.06 1439.97,-1647"/> | |
<text text-anchor="middle" x="1434.41" y="-1668.4" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N47->N2 --> | |
<g id="edge9" class="edge"><title>N47->N2</title> | |
<path fill="none" stroke="black" d="M1331.66,-1199.95C1331.66,-1188.85 1331.66,-1173.48 1331.66,-1160.47"/> | |
<polygon fill="black" stroke="black" points="1335.16,-1160.25 1331.66,-1150.25 1328.16,-1160.25 1335.16,-1160.25"/> | |
<text text-anchor="middle" x="1340.41" y="-1170.8" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N48->N44 --> | |
<g id="edge56" class="edge"><title>N48->N44</title> | |
<path fill="none" stroke="black" d="M1576.12,-1656.45C1589.33,-1651.27 1603.8,-1645.13 1616.66,-1638.6 1672.44,-1610.26 1732.96,-1570.5 1770.59,-1544.6"/> | |
<polygon fill="black" stroke="black" points="1772.96,-1547.22 1779.19,-1538.65 1768.97,-1541.46 1772.96,-1547.22"/> | |
<text text-anchor="middle" x="1684.41" y="-1618.4" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N49 --> | |
<g id="node50" class="node"><title>N49</title> | |
<polygon fill="none" stroke="black" points="1155.78,-904 947.544,-904 947.544,-872 1155.78,-872 1155.78,-904"/> | |
<text text-anchor="middle" x="1051.66" y="-893.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerStart</text> | |
<text text-anchor="end" x="1147.97" y="-885.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1147.97" y="-877.6" font-family="Times,serif" font-size="8.00">of 1.0 (1.7%)</text> | |
</g> | |
<!-- N49->N36 --> | |
<g id="edge24" class="edge"><title>N49->N36</title> | |
<path fill="none" stroke="black" d="M1048.09,-871.953C1045.42,-860.738 1041.73,-845.167 1038.62,-832.082"/> | |
<polygon fill="black" stroke="black" points="1042,-831.173 1036.28,-822.252 1035.19,-832.79 1042,-831.173"/> | |
<text text-anchor="middle" x="1052.41" y="-842.8" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N50->N49 --> | |
<g id="edge70" class="edge"><title>N50->N49</title> | |
<path fill="none" stroke="black" d="M1076.83,-953.953C1072.44,-942.627 1066.33,-926.858 1061.23,-913.694"/> | |
<polygon fill="black" stroke="black" points="1064.45,-912.312 1057.57,-904.252 1057.92,-914.841 1064.45,-912.312"/> | |
<text text-anchor="middle" x="1078.41" y="-924.8" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N52 --> | |
<g id="node53" class="node"><title>N52</title> | |
<polygon fill="none" stroke="black" points="1529.87,-37 1179.45,-37 1179.45,-0 1529.87,-0 1529.87,-37"/> | |
<text text-anchor="middle" x="1354.66" y="-21.4" font-family="Times,serif" font-size="14.50">github.com/tchap/go-patricia/patricia.newDenseChildList</text> | |
<text text-anchor="end" x="1521.77" y="-6.9" font-family="Times,serif" font-size="14.50">1.0 (1.7%)</text> | |
</g> | |
<!-- N51->N52 --> | |
<g id="edge64" class="edge"><title>N51->N52</title> | |
<path fill="none" stroke="black" d="M1354.66,-105.245C1354.66,-89.8429 1354.66,-65.7866 1354.66,-47.0698"/> | |
<polygon fill="black" stroke="black" points="1358.16,-47.0417 1354.66,-37.0417 1351.16,-47.0417 1358.16,-47.0417"/> | |
<text text-anchor="middle" x="1363.41" y="-57.8" font-family="Times,serif" font-size="14.00">1.0</text> | |
</g> | |
<!-- N53 --> | |
<g id="node54" class="node"><title>N53</title> | |
<polygon fill="none" stroke="black" points="1616.71,-1341.6 1434.62,-1341.6 1434.62,-1304.6 1616.71,-1304.6 1616.71,-1341.6"/> | |
<text text-anchor="middle" x="1525.66" y="-1326" font-family="Times,serif" font-size="14.50">net/http.newBufioWriterSize</text> | |
<text text-anchor="end" x="1608.93" y="-1311.5" font-family="Times,serif" font-size="14.50">1.0 (1.7%)</text> | |
</g> | |
<!-- N54 --> | |
<g id="node55" class="node"><title>N54</title> | |
<polygon fill="none" stroke="black" points="1093.22,-1068 910.099,-1068 910.099,-1036 1093.22,-1036 1093.22,-1068"/> | |
<text text-anchor="middle" x="1001.66" y="-1057.6" font-family="Times,serif" font-size="8.00">github.com/docker/libcontainer/apparmor.IsEnabled</text> | |
<text text-anchor="end" x="1085.19" y="-1049.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1085.19" y="-1041.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N78 --> | |
<g id="node79" class="node"><title>N78</title> | |
<polygon fill="none" stroke="black" points="957.819,-986 899.504,-986 899.504,-954 957.819,-954 957.819,-986"/> | |
<text text-anchor="middle" x="928.661" y="-975.6" font-family="Times,serif" font-size="8.00">os.Getenv</text> | |
<text text-anchor="end" x="949.99" y="-967.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="949.99" y="-959.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N54->N78 --> | |
<g id="edge49" class="edge"><title>N54->N78</title> | |
<path fill="none" stroke="black" d="M987.931,-1035.95C977.09,-1024.07 961.787,-1007.3 949.446,-993.778"/> | |
<polygon fill="black" stroke="black" points="951.905,-991.28 942.579,-986.252 946.734,-995.998 951.905,-991.28"/> | |
<text text-anchor="middle" x="978.411" y="-1006.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N69 --> | |
<g id="node70" class="node"><title>N69</title> | |
<polygon fill="none" stroke="black" points="1733.26,-1446.2 1592.07,-1446.2 1592.07,-1414.2 1733.26,-1414.2 1733.26,-1446.2"/> | |
<text text-anchor="middle" x="1662.66" y="-1435.8" font-family="Times,serif" font-size="8.00">github.com/gorilla/mux.(*Router).Path</text> | |
<text text-anchor="end" x="1725.21" y="-1427.8" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1725.21" y="-1419.8" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N55->N69 --> | |
<g id="edge36" class="edge"><title>N55->N69</title> | |
<path fill="none" stroke="black" d="M1655.27,-1501.17C1656.58,-1488.81 1658.44,-1471.12 1659.98,-1456.62"/> | |
<polygon fill="black" stroke="black" points="1663.5,-1456.61 1661.07,-1446.3 1656.54,-1455.88 1663.5,-1456.61"/> | |
<text text-anchor="middle" x="1668.41" y="-1467" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N56->N2 --> | |
<g id="edge10" class="edge"><title>N56->N2</title> | |
<path fill="none" stroke="black" d="M1508.66,-1199.95C1472.84,-1186.81 1420.72,-1167.68 1382.3,-1153.58"/> | |
<polygon fill="black" stroke="black" points="1383.45,-1150.28 1372.85,-1150.12 1381.03,-1156.85 1383.45,-1150.28"/> | |
<text text-anchor="middle" x="1463.41" y="-1170.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N61 --> | |
<g id="node62" class="node"><title>N61</title> | |
<polygon fill="none" stroke="black" points="1147.65,-1339.1 909.677,-1339.1 909.677,-1307.1 1147.65,-1307.1 1147.65,-1339.1"/> | |
<text text-anchor="middle" x="1028.66" y="-1328.7" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon/execdriver/native.(*driver).Run</text> | |
<text text-anchor="end" x="1139.4" y="-1320.7" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1139.4" y="-1312.7" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N57->N61 --> | |
<g id="edge78" class="edge"><title>N57->N61</title> | |
<path fill="none" stroke="black" d="M1001.25,-1414.14C1006.43,-1397.13 1014.94,-1369.17 1021.1,-1348.92"/> | |
<polygon fill="black" stroke="black" points="1024.52,-1349.72 1024.09,-1339.13 1017.82,-1347.68 1024.52,-1349.72"/> | |
<text text-anchor="middle" x="1020.41" y="-1385" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N58->N44 --> | |
<g id="edge86" class="edge"><title>N58->N44</title> | |
<path fill="none" stroke="black" d="M1712.6,-1656.57C1721.37,-1643.36 1734.52,-1623.64 1746.16,-1606.6 1759.79,-1586.65 1775.36,-1564.32 1787.42,-1547.13"/> | |
<polygon fill="black" stroke="black" points="1790.5,-1548.84 1793.38,-1538.64 1784.77,-1544.81 1790.5,-1548.84"/> | |
<text text-anchor="middle" x="1754.41" y="-1618.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N59 --> | |
<g id="node60" class="node"><title>N59</title> | |
<polygon fill="none" stroke="black" points="2067.78,-1638.6 1873.55,-1638.6 1873.55,-1606.6 2067.78,-1606.6 2067.78,-1638.6"/> | |
<text text-anchor="middle" x="1970.66" y="-1628.2" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon/execdriver/lxc.init</text> | |
<text text-anchor="end" x="2059.97" y="-1620.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="2059.97" y="-1612.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N60 --> | |
<g id="node61" class="node"><title>N60</title> | |
<polygon fill="none" stroke="black" points="2070.78,-1533.4 1870.55,-1533.4 1870.55,-1501.4 2070.78,-1501.4 2070.78,-1533.4"/> | |
<text text-anchor="middle" x="1970.66" y="-1523" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon/execdriver/lxc.init·2</text> | |
<text text-anchor="end" x="2062.97" y="-1515" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="2062.97" y="-1507" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N59->N60 --> | |
<g id="edge74" class="edge"><title>N59->N60</title> | |
<path fill="none" stroke="black" d="M1970.66,-1606.37C1970.66,-1589.91 1970.66,-1563.4 1970.66,-1543.77"/> | |
<polygon fill="black" stroke="black" points="1974.16,-1543.69 1970.66,-1533.69 1967.16,-1543.69 1974.16,-1543.69"/> | |
<text text-anchor="middle" x="1979.41" y="-1568.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N62 --> | |
<g id="node63" class="node"><title>N62</title> | |
<polygon fill="none" stroke="black" points="1173.95,-1232 899.376,-1232 899.376,-1200 1173.95,-1200 1173.95,-1232"/> | |
<text text-anchor="middle" x="1036.66" y="-1221.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon/execdriver/native.(*driver).createContainer</text> | |
<text text-anchor="end" x="1166.05" y="-1213.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1166.05" y="-1205.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N61->N62 --> | |
<g id="edge17" class="edge"><title>N61->N62</title> | |
<path fill="none" stroke="black" d="M1029.81,-1307.04C1031.1,-1290.11 1033.21,-1262.33 1034.75,-1242.1"/> | |
<polygon fill="black" stroke="black" points="1038.25,-1242.27 1035.52,-1232.03 1031.27,-1241.74 1038.25,-1242.27"/> | |
<text text-anchor="middle" x="1043.41" y="-1252.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N63 --> | |
<g id="node64" class="node"><title>N63</title> | |
<polygon fill="none" stroke="black" points="1148.75,-1150 910.571,-1150 910.571,-1118 1148.75,-1118 1148.75,-1150"/> | |
<text text-anchor="middle" x="1029.66" y="-1139.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/daemon/execdriver/native/template.New</text> | |
<text text-anchor="end" x="1140.96" y="-1131.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1140.96" y="-1123.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N62->N63 --> | |
<g id="edge83" class="edge"><title>N62->N63</title> | |
<path fill="none" stroke="black" d="M1035.34,-1199.95C1034.37,-1188.85 1033.03,-1173.48 1031.89,-1160.47"/> | |
<polygon fill="black" stroke="black" points="1035.35,-1159.91 1031,-1150.25 1028.38,-1160.52 1035.35,-1159.91"/> | |
<text text-anchor="middle" x="1042.41" y="-1170.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N63->N54 --> | |
<g id="edge1" class="edge"><title>N63->N54</title> | |
<path fill="none" stroke="black" d="M1024.39,-1117.95C1020.43,-1106.63 1014.91,-1090.86 1010.3,-1077.69"/> | |
<polygon fill="black" stroke="black" points="1013.61,-1076.53 1007,-1068.25 1007,-1078.85 1013.61,-1076.53"/> | |
<text text-anchor="middle" x="1026.41" y="-1088.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N64 --> | |
<g id="node65" class="node"><title>N64</title> | |
<polygon fill="none" stroke="black" points="1663,-904 1444.33,-904 1444.33,-872 1663,-872 1663,-904"/> | |
<text text-anchor="middle" x="1553.66" y="-893.6" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/server.(*Server).ContainerDestroy</text> | |
<text text-anchor="end" x="1655.08" y="-885.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1655.08" y="-877.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N64->N36 --> | |
<g id="edge68" class="edge"><title>N64->N36</title> | |
<path fill="none" stroke="black" d="M1495.74,-871.996C1454.21,-861.708 1396.8,-848.443 1345.66,-840 1280.17,-829.187 1206.36,-821.206 1146.87,-815.803"/> | |
<polygon fill="black" stroke="black" points="1146.96,-812.298 1136.69,-814.891 1146.34,-819.27 1146.96,-812.298"/> | |
<text text-anchor="middle" x="1424.41" y="-842.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N65->N64 --> | |
<g id="edge69" class="edge"><title>N65->N64</title> | |
<path fill="none" stroke="black" d="M1556.91,-953.953C1556.35,-942.849 1555.59,-927.475 1554.93,-914.472"/> | |
<polygon fill="black" stroke="black" points="1558.42,-914.065 1554.42,-904.252 1551.43,-914.414 1558.42,-914.065"/> | |
<text text-anchor="middle" x="1565.41" y="-924.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N66 --> | |
<g id="node67" class="node"><title>N66</title> | |
<polygon fill="none" stroke="black" points="2041.87,-1738.6 1899.45,-1738.6 1899.45,-1706.6 2041.87,-1706.6 2041.87,-1738.6"/> | |
<text text-anchor="middle" x="1970.66" y="-1728.2" font-family="Times,serif" font-size="8.00">github.com/dotcloud/docker/sysinit.init</text> | |
<text text-anchor="end" x="2033.77" y="-1720.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="2033.77" y="-1712.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N66->N59 --> | |
<g id="edge76" class="edge"><title>N66->N59</title> | |
<path fill="none" stroke="black" d="M1970.66,-1706.29C1970.66,-1690.97 1970.66,-1667.14 1970.66,-1648.99"/> | |
<polygon fill="black" stroke="black" points="1974.16,-1648.8 1970.66,-1638.8 1967.16,-1648.81 1974.16,-1648.8"/> | |
<text text-anchor="middle" x="1979.41" y="-1668.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N67 --> | |
<g id="node68" class="node"><title>N67</title> | |
<polygon fill="none" stroke="black" points="1830.09,-1339.1 1691.23,-1339.1 1691.23,-1307.1 1830.09,-1307.1 1830.09,-1339.1"/> | |
<text text-anchor="middle" x="1760.66" y="-1328.7" font-family="Times,serif" font-size="8.00">github.com/gorilla/mux.(*Route).Path</text> | |
<text text-anchor="end" x="1821.88" y="-1320.7" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1821.88" y="-1312.7" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N68 --> | |
<g id="node69" class="node"><title>N68</title> | |
<polygon fill="none" stroke="black" points="2081.01,-1232 1894.31,-1232 1894.31,-1200 2081.01,-1200 2081.01,-1232"/> | |
<text text-anchor="middle" x="1987.66" y="-1221.6" font-family="Times,serif" font-size="8.00">github.com/gorilla/mux.(*Route).addRegexpMatcher</text> | |
<text text-anchor="end" x="2073.09" y="-1213.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="2073.09" y="-1205.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N67->N68 --> | |
<g id="edge26" class="edge"><title>N67->N68</title> | |
<path fill="none" stroke="black" d="M1793.18,-1307.04C1833.39,-1288.43 1901.87,-1256.72 1945.92,-1236.33"/> | |
<polygon fill="black" stroke="black" points="1947.59,-1239.41 1955.2,-1232.03 1944.65,-1233.06 1947.59,-1239.41"/> | |
<text text-anchor="middle" x="1922.41" y="-1252.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N70 --> | |
<g id="node71" class="node"><title>N70</title> | |
<polygon fill="none" stroke="black" points="2062.81,-1150 1912.52,-1150 1912.52,-1118 2062.81,-1118 2062.81,-1150"/> | |
<text text-anchor="middle" x="1987.66" y="-1139.6" font-family="Times,serif" font-size="8.00">github.com/gorilla/mux.newRouteRegexp</text> | |
<text text-anchor="end" x="2054.98" y="-1131.6" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="2054.98" y="-1123.6" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N68->N70 --> | |
<g id="edge37" class="edge"><title>N68->N70</title> | |
<path fill="none" stroke="black" d="M1987.66,-1199.95C1987.66,-1188.85 1987.66,-1173.48 1987.66,-1160.47"/> | |
<polygon fill="black" stroke="black" points="1991.16,-1160.25 1987.66,-1150.25 1984.16,-1160.25 1991.16,-1160.25"/> | |
<text text-anchor="middle" x="1996.41" y="-1170.8" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N69->N67 --> | |
<g id="edge6" class="edge"><title>N69->N67</title> | |
<path fill="none" stroke="black" d="M1676.7,-1414.14C1693.22,-1396.43 1720.8,-1366.85 1739.82,-1346.45"/> | |
<polygon fill="black" stroke="black" points="1742.39,-1348.83 1746.65,-1339.13 1737.27,-1344.06 1742.39,-1348.83"/> | |
<text text-anchor="middle" x="1714.41" y="-1385" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N71 --> | |
<g id="node72" class="node"><title>N71</title> | |
<polygon fill="none" stroke="black" points="2076.82,-1868.6 2018.5,-1868.6 2018.5,-1836.6 2076.82,-1836.6 2076.82,-1868.6"/> | |
<text text-anchor="middle" x="2047.66" y="-1858.2" font-family="Times,serif" font-size="8.00">handoffp</text> | |
<text text-anchor="end" x="2068.99" y="-1850.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="2068.99" y="-1842.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N72 --> | |
<g id="node73" class="node"><title>N72</title> | |
<polygon fill="none" stroke="black" points="1999.82,-1868.6 1941.5,-1868.6 1941.5,-1836.6 1999.82,-1836.6 1999.82,-1868.6"/> | |
<text text-anchor="middle" x="1970.66" y="-1858.2" font-family="Times,serif" font-size="8.00">main.init</text> | |
<text text-anchor="end" x="1991.99" y="-1850.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1991.99" y="-1842.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N72->N66 --> | |
<g id="edge23" class="edge"><title>N72->N66</title> | |
<path fill="none" stroke="black" d="M1970.66,-1836.41C1970.66,-1814.86 1970.66,-1775.11 1970.66,-1749.02"/> | |
<polygon fill="black" stroke="black" points="1974.16,-1748.77 1970.66,-1738.77 1967.16,-1748.77 1974.16,-1748.77"/> | |
<text text-anchor="middle" x="1979.41" y="-1759.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N74 --> | |
<g id="node75" class="node"><title>N74</title> | |
<polygon fill="none" stroke="black" points="1568.47,-1446.2 1462.85,-1446.2 1462.85,-1414.2 1568.47,-1414.2 1568.47,-1446.2"/> | |
<text text-anchor="middle" x="1515.66" y="-1435.8" font-family="Times,serif" font-size="8.00">net/http.(*Server).newConn</text> | |
<text text-anchor="end" x="1560.32" y="-1427.8" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1560.32" y="-1419.8" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N73->N74 --> | |
<g id="edge27" class="edge"><title>N73->N74</title> | |
<path fill="none" stroke="black" d="M1500.88,-1501.17C1503.52,-1488.69 1507.3,-1470.78 1510.38,-1456.2"/> | |
<polygon fill="black" stroke="black" points="1513.83,-1456.81 1512.47,-1446.3 1506.98,-1455.36 1513.83,-1456.81"/> | |
<text text-anchor="middle" x="1517.41" y="-1467" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N74->N53 --> | |
<g id="edge20" class="edge"><title>N74->N53</title> | |
<path fill="none" stroke="black" d="M1517.09,-1414.14C1518.63,-1397.98 1521.11,-1371.93 1523.01,-1352"/> | |
<polygon fill="black" stroke="black" points="1526.5,-1352.23 1523.96,-1341.94 1519.53,-1351.57 1526.5,-1352.23"/> | |
<text text-anchor="middle" x="1529.41" y="-1385" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N75->N53 --> | |
<g id="edge51" class="edge"><title>N75->N53</title> | |
<path fill="none" stroke="black" d="M1398.27,-1556.36C1411.9,-1519.41 1446.21,-1427.16 1453.66,-1414.2 1467.25,-1390.57 1486.75,-1366.59 1502.03,-1349.32"/> | |
<polygon fill="black" stroke="black" points="1504.64,-1351.65 1508.72,-1341.88 1499.43,-1346.97 1504.64,-1351.65"/> | |
<text text-anchor="middle" x="1442.41" y="-1467" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N76 --> | |
<g id="node77" class="node"><title>N76</title> | |
<polygon fill="none" stroke="black" points="2164.2,-1869.3 2095.12,-1869.3 2095.12,-1835.9 2164.2,-1835.9 2164.2,-1869.3"/> | |
<text text-anchor="middle" x="2129.66" y="-1855.12" font-family="Times,serif" font-size="12.60">newdefer</text> | |
<text text-anchor="end" x="2156.43" y="-1842.52" font-family="Times,serif" font-size="12.60">0.5 (0.9%)</text> | |
</g> | |
<!-- N77 --> | |
<g id="node78" class="node"><title>N77</title> | |
<polygon fill="none" stroke="black" points="2240.82,-1868.6 2182.5,-1868.6 2182.5,-1836.6 2240.82,-1836.6 2240.82,-1868.6"/> | |
<text text-anchor="middle" x="2211.66" y="-1858.2" font-family="Times,serif" font-size="8.00">newm</text> | |
<text text-anchor="end" x="2232.99" y="-1850.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="2232.99" y="-1842.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N79 --> | |
<g id="node80" class="node"><title>N79</title> | |
<polygon fill="none" stroke="black" points="1842.86,-1638.6 1772.46,-1638.6 1772.46,-1606.6 1842.86,-1606.6 1842.86,-1638.6"/> | |
<text text-anchor="middle" x="1807.66" y="-1628.2" font-family="Times,serif" font-size="8.00">os/exec.func·003</text> | |
<text text-anchor="end" x="1834.76" y="-1620.2" font-family="Times,serif" font-size="8.00">0.0 (0.0%)</text> | |
<text text-anchor="end" x="1834.76" y="-1612.2" font-family="Times,serif" font-size="8.00">of 0.5 (0.9%)</text> | |
</g> | |
<!-- N79->N44 --> | |
<g id="edge44" class="edge"><title>N79->N44</title> | |
<path fill="none" stroke="black" d="M1807.66,-1606.37C1807.66,-1591.3 1807.66,-1567.82 1807.66,-1548.9"/> | |
<polygon fill="black" stroke="black" points="1811.16,-1548.67 1807.66,-1538.67 1804.16,-1548.67 1811.16,-1548.67"/> | |
<text text-anchor="middle" x="1816.41" y="-1568.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
<!-- N80->N79 --> | |
<g id="edge79" class="edge"><title>N80->N79</title> | |
<path fill="none" stroke="black" d="M1787.41,-1706.29C1791.18,-1690.9 1797.05,-1666.91 1801.51,-1648.73"/> | |
<polygon fill="black" stroke="black" points="1804.96,-1649.35 1803.94,-1638.8 1798.16,-1647.69 1804.96,-1649.35"/> | |
<text text-anchor="middle" x="1807.41" y="-1668.4" font-family="Times,serif" font-size="14.00">0.5</text> | |
</g> | |
</g> | |
</g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment