Page MenuHomeFreeBSD
Authored By
cperciva
Oct 14 2021, 12:44 AM
Size
132 KB
Referenced Files
None
Subscribers
None

tslog.svg

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="230" onload="init(evt)" viewBox="0 0 1200 230" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="230.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Chart</text>
<text text-anchor="" x="10.00" y="213" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="213" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>137 /etc/rc.d/random (2,763,620,406 samples, 7.54%)</title><rect x="313.8" y="133" width="89.0" height="15.0" fill="rgb(243,213,38)" rx="2" ry="2" />
<text text-anchor="" x="316.81" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >137 /etc/r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>206 /sbin/ifconfig (4,610,586 samples, 0.01%)</title><rect x="417.7" y="117" width="0.2" height="15.0" fill="rgb(252,5,18)" rx="2" ry="2" />
<text text-anchor="" x="420.71" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>725 /bin/ps (9,328,908 samples, 0.03%)</title><rect x="1153.7" y="101" width="0.3" height="15.0" fill="rgb(213,115,32)" rx="2" ry="2" />
<text text-anchor="" x="1156.71" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH uart (5,235,448 samples, 0.01%)</title><rect x="262.9" y="85" width="0.2" height="15.0" fill="rgb(236,36,54)" rx="2" ry="2" />
<text text-anchor="" x="265.95" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>764 kldload (6,227,716 samples, 0.02%)</title><rect x="1155.5" y="117" width="0.2" height="15.0" fill="rgb(235,227,12)" rx="2" ry="2" />
<text text-anchor="" x="1158.46" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>113 /etc/rc.d/adjkerntz (4,008,058 samples, 0.01%)</title><rect x="311.8" y="133" width="0.1" height="15.0" fill="rgb(229,134,47)" rx="2" ry="2" />
<text text-anchor="" x="314.77" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>48 /etc/rc.d/swap (6,246,502 samples, 0.02%)</title><rect x="285.5" y="133" width="0.2" height="15.0" fill="rgb(227,198,32)" rx="2" ry="2" />
<text text-anchor="" x="288.45" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>820 /usr/sbin/sshd (278,166,854 samples, 0.76%)</title><rect x="1167.7" y="117" width="8.9" height="15.0" fill="rgb(254,18,8)" rx="2" ry="2" />
<text text-anchor="" x="1170.68" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>240 /etc/rc.d/netif (7,378,852 samples, 0.02%)</title><rect x="419.5" y="101" width="0.2" height="15.0" fill="rgb(239,10,23)" rx="2" ry="2" />
<text text-anchor="" x="422.50" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>506 /etc/rc.d/power_profile (22,606,698 samples, 0.06%)</title><rect x="1137.5" y="85" width="0.7" height="15.0" fill="rgb(217,111,1)" rx="2" ry="2" />
<text text-anchor="" x="1140.50" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>234 /etc/rc.d/netif (8,129,768 samples, 0.02%)</title><rect x="419.2" y="117" width="0.2" height="15.0" fill="rgb(253,171,23)" rx="2" ry="2" />
<text text-anchor="" x="422.18" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT sysctl (5,491,962 samples, 0.01%)</title><rect x="46.5" y="133" width="0.2" height="15.0" fill="rgb(243,219,4)" rx="2" ry="2" />
<text text-anchor="" x="49.52" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>42 /etc/rc.d/hostid (13,199,584 samples, 0.04%)</title><rect x="284.9" y="117" width="0.4" height="15.0" fill="rgb(240,69,4)" rx="2" ry="2" />
<text text-anchor="" x="287.89" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>1 /sbin/init (28,421,636,103 samples, 77.58%)</title><rect x="274.6" y="165" width="915.4" height="15.0" fill="rgb(223,95,1)" rx="2" ry="2" />
<text text-anchor="" x="277.56" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >1 /sbin/init</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>872 ssh-keygen (11,859,228 samples, 0.03%)</title><rect x="1188.6" y="117" width="0.3" height="15.0" fill="rgb(210,136,50)" rx="2" ry="2" />
<text text-anchor="" x="1191.55" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>75 /etc/rc.d/tmp (8,537,150 samples, 0.02%)</title><rect x="305.6" y="117" width="0.2" height="15.0" fill="rgb(205,80,13)" rx="2" ry="2" />
<text text-anchor="" x="308.57" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH atrtc (11,518,868 samples, 0.03%)</title><rect x="251.1" y="85" width="0.4" height="15.0" fill="rgb(224,104,29)" rx="2" ry="2" />
<text text-anchor="" x="254.14" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_list (7,320,880 samples, 0.02%)</title><rect x="16.1" y="133" width="0.3" height="15.0" fill="rgb(244,178,35)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>95 /usr/local/etc/rc.d/dev_aws_disk (17,918,786 samples, 0.05%)</title><rect x="309.4" y="133" width="0.6" height="15.0" fill="rgb(230,136,9)" rx="2" ry="2" />
<text text-anchor="" x="312.38" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>177 ls (4,351,840 samples, 0.01%)</title><rect x="403.0" y="117" width="0.2" height="15.0" fill="rgb(206,30,5)" rx="2" ry="2" />
<text text-anchor="" x="406.03" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (3,916,110 samples, 0.01%)</title><rect x="251.0" y="85" width="0.1" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="254.02" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT vt_early_cons (4,106,352 samples, 0.01%)</title><rect x="264.8" y="133" width="0.2" height="15.0" fill="rgb(239,204,38)" rx="2" ry="2" />
<text text-anchor="" x="267.83" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>51 /etc/rc.d/fsck (470,090,716 samples, 1.28%)</title><rect x="285.7" y="133" width="15.1" height="15.0" fill="rgb(208,184,25)" rx="2" ry="2" />
<text text-anchor="" x="288.68" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>123 /usr/sbin/ip6addrctl (3,189,289 samples, 0.01%)</title><rect x="312.9" y="117" width="0.1" height="15.0" fill="rgb(206,117,51)" rx="2" ry="2" />
<text text-anchor="" x="315.91" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>176 /etc/rc.d/mixer (5,720,820 samples, 0.02%)</title><rect x="403.0" y="133" width="0.2" height="15.0" fill="rgb(231,227,9)" rx="2" ry="2" />
<text text-anchor="" x="405.99" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>842 /etc/rc.d/sysctl (25,300,582 samples, 0.07%)</title><rect x="1186.1" y="117" width="0.9" height="15.0" fill="rgb(209,173,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.15" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kvprintf (105,650,240 samples, 0.29%)</title><rect x="12.7" y="149" width="3.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="15.74" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>446 /sbin/ifconfig (3,441,028 samples, 0.01%)</title><rect x="1123.5" y="85" width="0.2" height="15.0" fill="rgb(247,220,14)" rx="2" ry="2" />
<text text-anchor="" x="1126.55" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>252 /sbin/ifconfig (7,673,888 samples, 0.02%)</title><rect x="420.3" y="117" width="0.2" height="15.0" fill="rgb(229,224,8)" rx="2" ry="2" />
<text text-anchor="" x="423.28" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>466 /etc/rc.d/devmatch (4,651,974 samples, 0.01%)</title><rect x="1131.7" y="85" width="0.1" height="15.0" fill="rgb(209,57,0)" rx="2" ry="2" />
<text text-anchor="" x="1134.69" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>543 rcorder (8,099,100 samples, 0.02%)</title><rect x="1140.7" y="101" width="0.3" height="15.0" fill="rgb(236,129,24)" rx="2" ry="2" />
<text text-anchor="" x="1143.71" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>448 /usr/libexec/hyperv/hyperv_vfattach (14,846,784 samples, 0.04%)</title><rect x="1123.7" y="101" width="0.5" height="15.0" fill="rgb(226,145,18)" rx="2" ry="2" />
<text text-anchor="" x="1126.73" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT tsc_tc (40,224,844 samples, 0.11%)</title><rect x="247.6" y="133" width="1.3" height="15.0" fill="rgb(231,98,51)" rx="2" ry="2" />
<text text-anchor="" x="250.63" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>181 /etc/rc.d/devmatch (14,354,464 samples, 0.04%)</title><rect x="403.2" y="117" width="0.5" height="15.0" fill="rgb(218,151,4)" rx="2" ry="2" />
<text text-anchor="" x="406.23" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>760 /etc/rc.d/ntpd (327,563,116 samples, 0.89%)</title><rect x="1155.0" y="133" width="10.6" height="15.0" fill="rgb(208,189,6)" rx="2" ry="2" />
<text text-anchor="" x="1158.03" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>121 /usr/sbin/ip6addrctl (6,126,036 samples, 0.02%)</title><rect x="312.6" y="117" width="0.2" height="15.0" fill="rgb(211,17,32)" rx="2" ry="2" />
<text text-anchor="" x="315.64" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_sleep (18,154,834 samples, 0.05%)</title><rect x="274.0" y="133" width="0.6" height="15.0" fill="rgb(116,116,235)" rx="2" ry="2" />
<text text-anchor="" x="276.97" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>867 ssh-keygen (19,305,892 samples, 0.05%)</title><rect x="1187.6" y="117" width="0.6" height="15.0" fill="rgb(222,126,0)" rx="2" ry="2" />
<text text-anchor="" x="1190.59" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>615 /usr/sbin/newsyslog (21,386,674 samples, 0.06%)</title><rect x="1145.6" y="117" width="0.7" height="15.0" fill="rgb(234,81,20)" rx="2" ry="2" />
<text text-anchor="" x="1148.62" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>198 /sbin/ifconfig (46,347,042 samples, 0.13%)</title><rect x="416.0" y="117" width="1.5" height="15.0" fill="rgb(235,27,44)" rx="2" ry="2" />
<text text-anchor="" x="418.97" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (6,952,458 samples, 0.02%)</title><rect x="150.0" y="117" width="0.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="153.00" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>367 /etc/rc.d/netif (7,375,574 samples, 0.02%)</title><rect x="717.0" y="101" width="0.2" height="15.0" fill="rgb(205,29,32)" rx="2" ry="2" />
<text text-anchor="" x="719.98" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>108 /sbin/ldconfig (3,309,744 samples, 0.01%)</title><rect x="311.2" y="117" width="0.1" height="15.0" fill="rgb(211,54,44)" rx="2" ry="2" />
<text text-anchor="" x="314.18" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>52 fsck (467,903,400 samples, 1.28%)</title><rect x="285.7" y="117" width="15.1" height="15.0" fill="rgb(213,120,42)" rx="2" ry="2" />
<text text-anchor="" x="288.75" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>69 /etc/rc.d/mdconfig (6,527,262 samples, 0.02%)</title><rect x="302.1" y="101" width="0.2" height="15.0" fill="rgb(224,63,33)" rx="2" ry="2" />
<text text-anchor="" x="305.07" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>841 /etc/rc.d/securelevel (26,483,042 samples, 0.07%)</title><rect x="1186.1" y="133" width="0.9" height="15.0" fill="rgb(214,108,50)" rx="2" ry="2" />
<text text-anchor="" x="1189.15" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT random_devicemodule (5,386,456 samples, 0.01%)</title><rect x="249.0" y="133" width="0.1" height="15.0" fill="rgb(251,5,16)" rx="2" ry="2" />
<text text-anchor="" x="251.96" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>863 logger (6,538,647 samples, 0.02%)</title><rect x="1187.4" y="117" width="0.2" height="15.0" fill="rgb(217,38,26)" rx="2" ry="2" />
<text text-anchor="" x="1190.38" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>62 rm (3,594,570 samples, 0.01%)</title><rect x="301.7" y="101" width="0.2" height="15.0" fill="rgb(222,121,0)" rx="2" ry="2" />
<text text-anchor="" x="304.74" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>572 /etc/rc.d/defaultroute (6,746,230 samples, 0.02%)</title><rect x="1143.2" y="117" width="0.2" height="15.0" fill="rgb(212,218,44)" rx="2" ry="2" />
<text text-anchor="" x="1146.18" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>55 fsck_msdosfs (4,341,872 samples, 0.01%)</title><rect x="295.6" y="101" width="0.1" height="15.0" fill="rgb(223,162,3)" rx="2" ry="2" />
<text text-anchor="" x="298.55" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>255 /sbin/ifconfig (5,082,340 samples, 0.01%)</title><rect x="420.6" y="117" width="0.1" height="15.0" fill="rgb(226,19,18)" rx="2" ry="2" />
<text text-anchor="" x="423.57" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>90 find (4,271,878 samples, 0.01%)</title><rect x="307.8" y="117" width="0.2" height="15.0" fill="rgb(206,147,28)" rx="2" ry="2" />
<text text-anchor="" x="310.84" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>71 /etc/rc.d/mountcritlocal (102,218,866 samples, 0.28%)</title><rect x="302.3" y="133" width="3.3" height="15.0" fill="rgb(216,202,18)" rx="2" ry="2" />
<text text-anchor="" x="305.28" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH acpi (371,660,904 samples, 1.01%)</title><rect x="251.1" y="101" width="12.0" height="15.0" fill="rgb(217,145,53)" rx="2" ry="2" />
<text text-anchor="" x="254.14" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>385 /bin/ps (31,661,908 samples, 0.09%)</title><rect x="922.8" y="85" width="1.0" height="15.0" fill="rgb(238,70,27)" rx="2" ry="2" />
<text text-anchor="" x="925.77" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read (20,128,990 samples, 0.05%)</title><rect x="10.7" y="149" width="0.6" height="15.0" fill="rgb(245,91,21)" rx="2" ry="2" />
<text text-anchor="" x="13.68" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>877 ssh-keygen (11,956,682 samples, 0.03%)</title><rect x="1189.0" y="117" width="0.4" height="15.0" fill="rgb(249,80,38)" rx="2" ry="2" />
<text text-anchor="" x="1191.99" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>369 /etc/rc.d/netif (8,131,272 samples, 0.02%)</title><rect x="717.2" y="117" width="0.3" height="15.0" fill="rgb(230,123,37)" rx="2" ry="2" />
<text text-anchor="" x="720.22" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>194 /etc/rc.d/netif (15,777,340,432 samples, 43.07%)</title><rect x="415.6" y="133" width="508.2" height="15.0" fill="rgb(250,88,20)" rx="2" ry="2" />
<text text-anchor="" x="418.65" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >194 /etc/rc.d/netif</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>707 find (3,215,242 samples, 0.01%)</title><rect x="1151.3" y="117" width="0.1" height="15.0" fill="rgb(207,123,25)" rx="2" ry="2" />
<text text-anchor="" x="1154.32" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>insert_font (22,465,148 samples, 0.06%)</title><rect x="16.4" y="133" width="0.7" height="15.0" fill="rgb(233,211,16)" rx="2" ry="2" />
<text text-anchor="" x="19.38" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>115 /etc/rc.d/hostname (15,668,286 samples, 0.04%)</title><rect x="311.9" y="133" width="0.5" height="15.0" fill="rgb(248,201,42)" rx="2" ry="2" />
<text text-anchor="" x="314.90" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>381 /sbin/ifconfig (21,472,240 samples, 0.06%)</title><rect x="921.7" y="117" width="0.7" height="15.0" fill="rgb(224,23,10)" rx="2" ry="2" />
<text text-anchor="" x="924.69" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>370 /etc/rc.d/netif (7,355,772 samples, 0.02%)</title><rect x="717.2" y="101" width="0.3" height="15.0" fill="rgb(208,189,45)" rx="2" ry="2" />
<text text-anchor="" x="720.25" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>277 /sbin/rtsol (8,861,053,284 samples, 24.19%)</title><rect x="424.3" y="117" width="285.4" height="15.0" fill="rgb(251,136,21)" rx="2" ry="2" />
<text text-anchor="" x="427.33" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >277 /sbin/rtsol</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>581 /etc/rc.d/ipfw_netflow (3,938,280 samples, 0.01%)</title><rect x="1143.5" y="133" width="0.1" height="15.0" fill="rgb(227,23,43)" rx="2" ry="2" />
<text text-anchor="" x="1146.51" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>74 /etc/rc.d/tmp (18,730,288 samples, 0.05%)</title><rect x="305.6" y="133" width="0.6" height="15.0" fill="rgb(209,108,20)" rx="2" ry="2" />
<text text-anchor="" x="308.57" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DELAY (93,606,206 samples, 0.26%)</title><rect x="147.0" y="117" width="3.0" height="15.0" fill="rgb(135,135,251)" rx="2" ry="2" />
<text text-anchor="" x="149.98" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>169 fsync (11,314,952 samples, 0.03%)</title><rect x="402.5" y="117" width="0.3" height="15.0" fill="rgb(246,203,21)" rx="2" ry="2" />
<text text-anchor="" x="405.46" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>384 /etc/rc.d/ipfilter (33,951,860 samples, 0.09%)</title><rect x="922.7" y="101" width="1.1" height="15.0" fill="rgb(248,179,21)" rx="2" ry="2" />
<text text-anchor="" x="925.73" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>182 devmatch (13,311,648 samples, 0.04%)</title><rect x="403.2" y="101" width="0.5" height="15.0" fill="rgb(216,99,45)" rx="2" ry="2" />
<text text-anchor="" x="406.25" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (5,372,434 samples, 0.01%)</title><rect x="249.0" y="117" width="0.1" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="251.96" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nvme_ctrlr_start_config_hook (6,391,164 samples, 0.02%)</title><rect x="264.6" y="101" width="0.2" height="15.0" fill="rgb(211,107,22)" rx="2" ry="2" />
<text text-anchor="" x="267.62" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (3,309,548 samples, 0.01%)</title><rect x="263.0" y="69" width="0.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="266.01" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (10,749,616 samples, 0.03%)</title><rect x="42.9" y="117" width="0.3" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="45.90" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>454 /etc/rc.d/devmatch (4,605,462 samples, 0.01%)</title><rect x="1125.0" y="85" width="0.1" height="15.0" fill="rgb(225,150,29)" rx="2" ry="2" />
<text text-anchor="" x="1127.97" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>243 /etc/rc.d/netif (7,339,158 samples, 0.02%)</title><rect x="419.8" y="101" width="0.2" height="15.0" fill="rgb(253,77,51)" rx="2" ry="2" />
<text text-anchor="" x="422.76" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>515 /usr/local/sbin/ebsnvme-id (3,563,940 samples, 0.01%)</title><rect x="1138.8" y="85" width="0.1" height="15.0" fill="rgb(213,55,53)" rx="2" ry="2" />
<text text-anchor="" x="1141.82" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>119 /etc/rc.d/ip6addrctl (18,879,748 samples, 0.05%)</title><rect x="312.4" y="133" width="0.6" height="15.0" fill="rgb(246,157,7)" rx="2" ry="2" />
<text text-anchor="" x="315.40" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>418 /sbin/devd (639,138,572 samples, 1.74%)</title><rect x="1119.6" y="117" width="20.6" height="15.0" fill="rgb(221,77,45)" rx="2" ry="2" />
<text text-anchor="" x="1122.58" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>144 dd (297,256,656 samples, 0.81%)</title><rect x="333.1" y="117" width="9.6" height="15.0" fill="rgb(242,101,35)" rx="2" ry="2" />
<text text-anchor="" x="336.11" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DELAY (3,151,766 samples, 0.01%)</title><rect x="261.5" y="37" width="0.1" height="15.0" fill="rgb(137,137,253)" rx="2" ry="2" />
<text text-anchor="" x="264.53" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>501 logger (5,452,678 samples, 0.01%)</title><rect x="1137.3" y="85" width="0.1" height="15.0" fill="rgb(243,185,50)" rx="2" ry="2" />
<text text-anchor="" x="1140.26" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>457 /etc/rc.d/devmatch (28,579,308 samples, 0.08%)</title><rect x="1130.0" y="101" width="0.9" height="15.0" fill="rgb(207,135,52)" rx="2" ry="2" />
<text text-anchor="" x="1133.00" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>569 /etc/rc.d/bridge (3,760,704 samples, 0.01%)</title><rect x="1142.8" y="133" width="0.2" height="15.0" fill="rgb(253,149,32)" rx="2" ry="2" />
<text text-anchor="" x="1145.84" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>73 mount_msdosfs (96,678,884 samples, 0.26%)</title><rect x="302.5" y="101" width="3.1" height="15.0" fill="rgb(229,13,43)" rx="2" ry="2" />
<text text-anchor="" x="305.46" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>835 /etc/rc.d/cron (11,921,312 samples, 0.03%)</title><rect x="1185.6" y="133" width="0.4" height="15.0" fill="rgb(209,70,47)" rx="2" ry="2" />
<text text-anchor="" x="1188.58" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (3,656,158 samples, 0.01%)</title><rect x="263.4" y="117" width="0.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="266.40" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (27,569,994 samples, 0.08%)</title><rect x="254.4" y="85" width="0.9" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text text-anchor="" x="257.40" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (5,308,260 samples, 0.01%)</title><rect x="254.0" y="69" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="256.98" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>239 /etc/rc.d/netif (8,137,848 samples, 0.02%)</title><rect x="419.5" y="117" width="0.2" height="15.0" fill="rgb(248,88,31)" rx="2" ry="2" />
<text text-anchor="" x="422.48" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>768 _su (237,604,582 samples, 0.65%)</title><rect x="1157.9" y="101" width="7.7" height="15.0" fill="rgb(246,61,38)" rx="2" ry="2" />
<text text-anchor="" x="1160.93" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>614 /etc/rc.d/newsyslog (23,737,410 samples, 0.06%)</title><rect x="1145.5" y="133" width="0.8" height="15.0" fill="rgb(207,84,7)" rx="2" ry="2" />
<text text-anchor="" x="1148.54" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>435 devmatch (3,882,242 samples, 0.01%)</title><rect x="1121.9" y="69" width="0.1" height="15.0" fill="rgb(215,213,28)" rx="2" ry="2" />
<text text-anchor="" x="1124.91" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>278 /sbin/rtsol (5,080,042 samples, 0.01%)</title><rect x="424.3" y="101" width="0.2" height="15.0" fill="rgb(226,158,29)" rx="2" ry="2" />
<text text-anchor="" x="427.33" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>777 /etc/rc.d/rtadvd (4,081,184 samples, 0.01%)</title><rect x="1165.7" y="133" width="0.1" height="15.0" fill="rgb(243,187,29)" rx="2" ry="2" />
<text text-anchor="" x="1168.72" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (14,950,936 samples, 0.04%)</title><rect x="43.4" y="117" width="0.4" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="46.36" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>106 cat (5,070,352 samples, 0.01%)</title><rect x="310.1" y="101" width="0.2" height="15.0" fill="rgb(212,9,11)" rx="2" ry="2" />
<text text-anchor="" x="313.11" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>460 /etc/rc.d/devmatch (4,612,578 samples, 0.01%)</title><rect x="1130.8" y="85" width="0.1" height="15.0" fill="rgb(236,59,52)" rx="2" ry="2" />
<text text-anchor="" x="1133.77" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>619 gpart (22,521,638 samples, 0.06%)</title><rect x="1146.4" y="117" width="0.8" height="15.0" fill="rgb(209,32,49)" rx="2" ry="2" />
<text text-anchor="" x="1149.45" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>24 /etc/rc (28,421,636,102 samples, 77.58%)</title><rect x="274.6" y="149" width="915.4" height="15.0" fill="rgb(211,206,27)" rx="2" ry="2" />
<text text-anchor="" x="277.56" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >24 /etc/rc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>efipart_readwrite (35,445,338 samples, 0.10%)</title><rect x="11.5" y="133" width="1.2" height="15.0" fill="rgb(222,161,45)" rx="2" ry="2" />
<text text-anchor="" x="14.54" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>508 awk (20,319,647 samples, 0.06%)</title><rect x="1137.6" y="69" width="0.6" height="15.0" fill="rgb(232,38,18)" rx="2" ry="2" />
<text text-anchor="" x="1140.57" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (36,635,346,408 samples, 100%)</title><rect x="10.0" y="181" width="1180.0" height="15.0" fill="rgb(229,25,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>608 mktemp (3,831,212 samples, 0.01%)</title><rect x="1144.7" y="117" width="0.1" height="15.0" fill="rgb(246,227,5)" rx="2" ry="2" />
<text text-anchor="" x="1147.68" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>422 /etc/rc.d/devmatch (7,802,924 samples, 0.02%)</title><rect x="1120.6" y="85" width="0.3" height="15.0" fill="rgb(252,92,26)" rx="2" ry="2" />
<text text-anchor="" x="1123.65" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>125 /etc/rc.d/netoptions (23,257,654 samples, 0.06%)</title><rect x="313.0" y="133" width="0.8" height="15.0" fill="rgb(239,39,39)" rx="2" ry="2" />
<text text-anchor="" x="316.04" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>600 /etc/rc.d/mountcritremote (7,042,716 samples, 0.02%)</title><rect x="1144.1" y="133" width="0.2" height="15.0" fill="rgb(221,113,18)" rx="2" ry="2" />
<text text-anchor="" x="1147.09" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>235 /etc/rc.d/netif (7,351,974 samples, 0.02%)</title><rect x="419.2" y="101" width="0.2" height="15.0" fill="rgb(245,75,46)" rx="2" ry="2" />
<text text-anchor="" x="422.20" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH isab (3,638,918 samples, 0.01%)</title><rect x="259.0" y="53" width="0.1" height="15.0" fill="rgb(241,31,48)" rx="2" ry="2" />
<text text-anchor="" x="261.96" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>265 /etc/rc.d/netif (7,449,676 samples, 0.02%)</title><rect x="421.3" y="101" width="0.3" height="15.0" fill="rgb(210,27,31)" rx="2" ry="2" />
<text text-anchor="" x="424.32" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT ena_rss_init (3,679,388 samples, 0.01%)</title><rect x="264.3" y="133" width="0.2" height="15.0" fill="rgb(227,73,25)" rx="2" ry="2" />
<text text-anchor="" x="267.33" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>467 devmatch (3,839,464 samples, 0.01%)</title><rect x="1131.7" y="69" width="0.1" height="15.0" fill="rgb(245,47,40)" rx="2" ry="2" />
<text text-anchor="" x="1134.72" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>292 /sbin/dhclient (179,590,242 samples, 0.49%)</title><rect x="710.9" y="101" width="5.7" height="15.0" fill="rgb(251,176,3)" rx="2" ry="2" />
<text text-anchor="" x="713.86" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>827 /usr/sbin/sendmail (20,892,994 samples, 0.06%)</title><rect x="1184.5" y="117" width="0.7" height="15.0" fill="rgb(220,56,27)" rx="2" ry="2" />
<text text-anchor="" x="1187.53" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>162 dirname (3,654,472 samples, 0.01%)</title><rect x="401.6" y="117" width="0.1" height="15.0" fill="rgb(220,181,9)" rx="2" ry="2" />
<text text-anchor="" x="404.60" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>380 /sbin/ifconfig (19,203,158 samples, 0.05%)</title><rect x="921.1" y="117" width="0.6" height="15.0" fill="rgb(242,106,27)" rx="2" ry="2" />
<text text-anchor="" x="924.07" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>93 rcorder (8,107,622 samples, 0.02%)</title><rect x="309.1" y="133" width="0.2" height="15.0" fill="rgb(233,39,23)" rx="2" ry="2" />
<text text-anchor="" x="312.09" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>184 devctl (7,388,014 samples, 0.02%)</title><rect x="403.7" y="117" width="0.2" height="15.0" fill="rgb(247,163,35)" rx="2" ry="2" />
<text text-anchor="" x="406.69" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>216 /etc/rc.d/netif (8,107,338 samples, 0.02%)</title><rect x="418.3" y="117" width="0.3" height="15.0" fill="rgb(211,167,9)" rx="2" ry="2" />
<text text-anchor="" x="421.32" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>484 /etc/rc.d/devmatch (4,531,818 samples, 0.01%)</title><rect x="1134.4" y="85" width="0.2" height="15.0" fill="rgb(240,89,48)" rx="2" ry="2" />
<text text-anchor="" x="1137.45" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (6,265,480 samples, 0.02%)</title><rect x="150.3" y="117" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="153.27" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>249 /sbin/ifconfig (5,459,566 samples, 0.01%)</title><rect x="420.1" y="117" width="0.1" height="15.0" fill="rgb(248,73,34)" rx="2" ry="2" />
<text text-anchor="" x="423.06" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>431 /etc/rc.d/devmatch (28,617,452 samples, 0.08%)</title><rect x="1121.1" y="101" width="0.9" height="15.0" fill="rgb(252,77,54)" rx="2" ry="2" />
<text text-anchor="" x="1124.11" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>853 /usr/local/etc/rc.d/ec2_loghostkey (85,028,680 samples, 0.23%)</title><rect x="1187.1" y="133" width="2.8" height="15.0" fill="rgb(237,158,39)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>88 rm (4,184,000 samples, 0.01%)</title><rect x="306.6" y="117" width="0.2" height="15.0" fill="rgb(229,96,11)" rx="2" ry="2" />
<text text-anchor="" x="309.65" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH attimer (9,564,262 samples, 0.03%)</title><rect x="263.5" y="117" width="0.3" height="15.0" fill="rgb(218,158,16)" rx="2" ry="2" />
<text text-anchor="" x="266.52" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_PROBE uart (30,844,254 samples, 0.08%)</title><rect x="262.0" y="85" width="0.9" height="15.0" fill="rgb(224,146,39)" rx="2" ry="2" />
<text text-anchor="" x="264.95" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>823 /etc/rc.d/sendmail (244,138,310 samples, 0.67%)</title><rect x="1177.3" y="133" width="7.9" height="15.0" fill="rgb(224,186,19)" rx="2" ry="2" />
<text text-anchor="" x="1180.34" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_mountroot (253,240,680 samples, 0.69%)</title><rect x="265.7" y="133" width="8.2" height="15.0" fill="rgb(231,168,11)" rx="2" ry="2" />
<text text-anchor="" x="268.71" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DELAY (3,000,133,524 samples, 8.19%)</title><rect x="47.5" y="117" width="96.6" height="15.0" fill="rgb(104,104,225)" rx="2" ry="2" />
<text text-anchor="" x="50.47" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >DELAY</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>40 /etc/rc.d/hostid (37,431,238 samples, 0.10%)</title><rect x="284.2" y="133" width="1.2" height="15.0" fill="rgb(207,81,52)" rx="2" ry="2" />
<text text-anchor="" x="287.22" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (10,385,364 samples, 0.03%)</title><rect x="39.1" y="133" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="42.12" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (4,549,720 samples, 0.01%)</title><rect x="264.1" y="117" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="267.11" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hammer_time (35,038,540 samples, 0.10%)</title><rect x="38.3" y="149" width="1.2" height="15.0" fill="rgb(223,180,18)" rx="2" ry="2" />
<text text-anchor="" x="41.32" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>724 /etc/rc.d/syslogd (11,774,760 samples, 0.03%)</title><rect x="1153.7" y="117" width="0.4" height="15.0" fill="rgb(220,188,39)" rx="2" ry="2" />
<text text-anchor="" x="1156.67" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>30 rcorder (269,568,772 samples, 0.74%)</title><rect x="275.1" y="133" width="8.6" height="15.0" fill="rgb(226,43,8)" rx="2" ry="2" />
<text text-anchor="" x="278.07" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT configure2 (447,540,932 samples, 1.22%)</title><rect x="249.4" y="133" width="14.4" height="15.0" fill="rgb(214,120,54)" rx="2" ry="2" />
<text text-anchor="" x="252.42" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>495 /etc/rc.d/dhclient (9,221,430 samples, 0.03%)</title><rect x="1136.1" y="85" width="0.3" height="15.0" fill="rgb(226,71,34)" rx="2" ry="2" />
<text text-anchor="" x="1139.15" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>836 /usr/sbin/cron (9,838,770 samples, 0.03%)</title><rect x="1185.6" y="117" width="0.4" height="15.0" fill="rgb(236,43,51)" rx="2" ry="2" />
<text text-anchor="" x="1188.65" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>89 find (26,095,818 samples, 0.07%)</title><rect x="307.0" y="117" width="0.8" height="15.0" fill="rgb(206,85,24)" rx="2" ry="2" />
<text text-anchor="" x="310.00" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>378 sleep (3,099,878,174 samples, 8.46%)</title><rect x="717.6" y="117" width="99.8" height="15.0" fill="rgb(107,107,227)" rx="2" ry="2" />
<text text-anchor="" x="720.60" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >378 sleep</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>163 fsync (14,548,374 samples, 0.04%)</title><rect x="401.7" y="117" width="0.5" height="15.0" fill="rgb(210,228,9)" rx="2" ry="2" />
<text text-anchor="" x="404.72" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH smbios (5,132,966 samples, 0.01%)</title><rect x="251.0" y="101" width="0.1" height="15.0" fill="rgb(210,139,20)" rx="2" ry="2" />
<text text-anchor="" x="253.98" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>197 sed (7,765,800 samples, 0.02%)</title><rect x="415.7" y="101" width="0.3" height="15.0" fill="rgb(243,135,46)" rx="2" ry="2" />
<text text-anchor="" x="418.72" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>522 /usr/local/etc/rc.d/dev_aws_disk (30,116,672 samples, 0.08%)</title><rect x="1139.2" y="101" width="1.0" height="15.0" fill="rgb(253,122,9)" rx="2" ry="2" />
<text text-anchor="" x="1142.19" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>148 dd (297,238,042 samples, 0.81%)</title><rect x="353.1" y="117" width="9.6" height="15.0" fill="rgb(211,80,46)" rx="2" ry="2" />
<text text-anchor="" x="356.11" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>189 devctl (18,813,424 samples, 0.05%)</title><rect x="405.2" y="117" width="0.6" height="15.0" fill="rgb(246,214,28)" rx="2" ry="2" />
<text text-anchor="" x="408.23" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH ena (42,239,016 samples, 0.12%)</title><rect x="260.6" y="53" width="1.3" height="15.0" fill="rgb(234,146,31)" rx="2" ry="2" />
<text text-anchor="" x="263.59" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>33 /etc/rc.d/sysctl (5,167,830 samples, 0.01%)</title><rect x="283.9" y="133" width="0.1" height="15.0" fill="rgb(241,209,0)" rx="2" ry="2" />
<text text-anchor="" x="286.86" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>883 logger (6,757,989 samples, 0.02%)</title><rect x="1189.4" y="117" width="0.3" height="15.0" fill="rgb(218,170,39)" rx="2" ry="2" />
<text text-anchor="" x="1192.44" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>87 /etc/rc.d/cleanvar (41,239,936 samples, 0.11%)</title><rect x="306.6" y="133" width="1.4" height="15.0" fill="rgb(227,67,15)" rx="2" ry="2" />
<text text-anchor="" x="309.65" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_PROBE acpi_timer (5,333,834 samples, 0.01%)</title><rect x="254.0" y="85" width="0.2" height="15.0" fill="rgb(220,90,29)" rx="2" ry="2" />
<text text-anchor="" x="256.98" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>389 /etc/rc.d/rtsold (6,053,087,280 samples, 16.52%)</title><rect x="923.9" y="133" width="195.0" height="15.0" fill="rgb(251,168,8)" rx="2" ry="2" />
<text text-anchor="" x="926.89" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >389 /etc/rc.d/rtsold</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>606 /sbin/dmesg (8,207,492 samples, 0.02%)</title><rect x="1144.4" y="117" width="0.3" height="15.0" fill="rgb(235,56,4)" rx="2" ry="2" />
<text text-anchor="" x="1147.41" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT apic_setup_io (3,003,660,440 samples, 8.20%)</title><rect x="150.6" y="133" width="96.8" height="15.0" fill="rgb(230,217,0)" rx="2" ry="2" />
<text text-anchor="" x="153.61" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >SYSINIT api..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>222 /etc/rc.d/netif (7,418,536 samples, 0.02%)</title><rect x="418.6" y="101" width="0.3" height="15.0" fill="rgb(216,83,51)" rx="2" ry="2" />
<text text-anchor="" x="421.63" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>544 xargs (7,943,925 samples, 0.02%)</title><rect x="1141.0" y="101" width="0.3" height="15.0" fill="rgb(235,31,17)" rx="2" ry="2" />
<text text-anchor="" x="1144.00" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>276 /sbin/ifconfig (5,457,082 samples, 0.01%)</title><rect x="422.8" y="117" width="0.1" height="15.0" fill="rgb(247,79,52)" rx="2" ry="2" />
<text text-anchor="" x="425.75" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>832 /etc/rc.d/syscons (10,024,112 samples, 0.03%)</title><rect x="1185.3" y="133" width="0.3" height="15.0" fill="rgb(210,211,51)" rx="2" ry="2" />
<text text-anchor="" x="1188.26" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (9,817,182 samples, 0.03%)</title><rect x="261.6" y="37" width="0.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="264.63" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>630 /etc/rc.d/mdconfig2 (8,742,518 samples, 0.02%)</title><rect x="1147.3" y="117" width="0.3" height="15.0" fill="rgb(223,211,31)" rx="2" ry="2" />
<text text-anchor="" x="1150.31" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>530 ln (3,706,166 samples, 0.01%)</title><rect x="1140.0" y="85" width="0.2" height="15.0" fill="rgb(218,193,39)" rx="2" ry="2" />
<text text-anchor="" x="1143.04" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>188 kldload (31,426,004 samples, 0.09%)</title><rect x="404.2" y="117" width="1.0" height="15.0" fill="rgb(209,117,41)" rx="2" ry="2" />
<text text-anchor="" x="407.22" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>633 /etc/rc.d/devfs (100,404,230 samples, 0.27%)</title><rect x="1147.6" y="133" width="3.2" height="15.0" fill="rgb(206,178,5)" rx="2" ry="2" />
<text text-anchor="" x="1150.59" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>475 /etc/rc.d/devmatch (28,378,692 samples, 0.08%)</title><rect x="1132.8" y="101" width="0.9" height="15.0" fill="rgb(211,133,38)" rx="2" ry="2" />
<text text-anchor="" x="1135.77" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>513 /usr/local/etc/rc.d/dev_aws_disk (24,777,012 samples, 0.07%)</title><rect x="1138.4" y="101" width="0.8" height="15.0" fill="rgb(249,148,15)" rx="2" ry="2" />
<text text-anchor="" x="1141.40" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>26 /sbin/sysctl (3,417,530 samples, 0.01%)</title><rect x="274.7" y="133" width="0.2" height="15.0" fill="rgb(238,71,6)" rx="2" ry="2" />
<text text-anchor="" x="277.74" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>140 dd (294,045,372 samples, 0.80%)</title><rect x="313.9" y="117" width="9.5" height="15.0" fill="rgb(234,174,23)" rx="2" ry="2" />
<text text-anchor="" x="316.95" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>709 /etc/rc.d/os-release (17,861,978 samples, 0.05%)</title><rect x="1151.5" y="133" width="0.5" height="15.0" fill="rgb(251,174,34)" rx="2" ry="2" />
<text text-anchor="" x="1154.45" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>797 /usr/local/etc/rc.d/git_daemon (3,610,484 samples, 0.01%)</title><rect x="1166.7" y="133" width="0.1" height="15.0" fill="rgb(234,60,47)" rx="2" ry="2" />
<text text-anchor="" x="1169.65" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>411 /etc/rc.d/static_ndp (4,132,928 samples, 0.01%)</title><rect x="1118.9" y="133" width="0.1" height="15.0" fill="rgb(230,171,5)" rx="2" ry="2" />
<text text-anchor="" x="1121.86" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>888 logger (6,192,233 samples, 0.02%)</title><rect x="1189.7" y="117" width="0.2" height="15.0" fill="rgb(232,50,48)" rx="2" ry="2" />
<text text-anchor="" x="1192.67" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>160 chflags (3,168,730 samples, 0.01%)</title><rect x="401.4" y="101" width="0.1" height="15.0" fill="rgb(244,7,25)" rx="2" ry="2" />
<text text-anchor="" x="404.41" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>413 /etc/rc.d/ppp (7,293,456 samples, 0.02%)</title><rect x="1119.1" y="133" width="0.3" height="15.0" fill="rgb(231,163,34)" rx="2" ry="2" />
<text text-anchor="" x="1122.12" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_init (274,665,650 samples, 0.75%)</title><rect x="265.7" y="149" width="8.9" height="15.0" fill="rgb(247,211,23)" rx="2" ry="2" />
<text text-anchor="" x="268.71" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>609 uname (3,726,524 samples, 0.01%)</title><rect x="1145.0" y="117" width="0.1" height="15.0" fill="rgb(244,131,9)" rx="2" ry="2" />
<text text-anchor="" x="1148.02" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (5,024,914 samples, 0.01%)</title><rect x="251.4" y="69" width="0.1" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="254.35" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (6,273,708 samples, 0.02%)</title><rect x="249.4" y="85" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="252.42" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>interp_init (658,342,648 samples, 1.80%)</title><rect x="17.1" y="133" width="21.2" height="15.0" fill="rgb(240,5,28)" rx="2" ry="2" />
<text text-anchor="" x="20.12" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>716 /etc/rc.d/syslogd (65,147,844 samples, 0.18%)</title><rect x="1152.1" y="133" width="2.1" height="15.0" fill="rgb(246,18,4)" rx="2" ry="2" />
<text text-anchor="" x="1155.05" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH nvme (11,106,838 samples, 0.03%)</title><rect x="260.2" y="53" width="0.4" height="15.0" fill="rgb(246,169,18)" rx="2" ry="2" />
<text text-anchor="" x="263.23" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (3,933,872 samples, 0.01%)</title><rect x="146.8" y="117" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="149.84" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>472 /etc/rc.d/devmatch (4,787,850 samples, 0.01%)</title><rect x="1132.6" y="85" width="0.2" height="15.0" fill="rgb(236,43,37)" rx="2" ry="2" />
<text text-anchor="" x="1135.62" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mi_startup (6,917,654,976 samples, 18.88%)</title><rect x="42.9" y="149" width="222.8" height="15.0" fill="rgb(240,168,0)" rx="2" ry="2" />
<text text-anchor="" x="45.87" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mi_startup</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cons_probe (5,888,088 samples, 0.02%)</title><rect x="10.0" y="149" width="0.2" height="15.0" fill="rgb(250,20,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH hpet (34,720,830 samples, 0.09%)</title><rect x="251.5" y="85" width="1.1" height="15.0" fill="rgb(228,180,32)" rx="2" ry="2" />
<text text-anchor="" x="254.52" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (3,527,752 samples, 0.01%)</title><rect x="43.2" y="117" width="0.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="46.24" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>98 rm (6,886,712 samples, 0.02%)</title><rect x="309.6" y="117" width="0.2" height="15.0" fill="rgb(222,109,18)" rx="2" ry="2" />
<text text-anchor="" x="312.59" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>761 grep (10,330,048 samples, 0.03%)</title><rect x="1155.0" y="117" width="0.4" height="15.0" fill="rgb(237,48,50)" rx="2" ry="2" />
<text text-anchor="" x="1158.03" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read (546,666,212 samples, 1.49%)</title><rect x="18.7" y="117" width="17.6" height="15.0" fill="rgb(253,49,34)" rx="2" ry="2" />
<text text-anchor="" x="21.71" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>78 mkdir (4,986,954 samples, 0.01%)</title><rect x="305.9" y="117" width="0.2" height="15.0" fill="rgb(215,117,39)" rx="2" ry="2" />
<text text-anchor="" x="308.90" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kernel (7,334,394,741 samples, 20.02%)</title><rect x="38.3" y="165" width="236.3" height="15.0" fill="rgb(215,164,6)" rx="2" ry="2" />
<text text-anchor="" x="41.32" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kernel</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>285 /etc/rc.d/dhclient (213,232,074 samples, 0.58%)</title><rect x="709.8" y="117" width="6.8" height="15.0" fill="rgb(224,76,32)" rx="2" ry="2" />
<text text-anchor="" x="712.78" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>542 /etc/rc.d/routing (16,761,504 samples, 0.05%)</title><rect x="1140.7" y="117" width="0.6" height="15.0" fill="rgb(206,48,4)" rx="2" ry="2" />
<text text-anchor="" x="1143.71" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>efipart_readwrite (521,743,186 samples, 1.42%)</title><rect x="18.7" y="101" width="16.8" height="15.0" fill="rgb(210,147,14)" rx="2" ry="2" />
<text text-anchor="" x="21.71" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>848 /etc/rc.d/bgfsck (4,021,846 samples, 0.01%)</title><rect x="1187.0" y="133" width="0.1" height="15.0" fill="rgb(211,106,5)" rx="2" ry="2" />
<text text-anchor="" x="1190.00" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>469 /etc/rc.d/devmatch (28,804,770 samples, 0.08%)</title><rect x="1131.8" y="101" width="1.0" height="15.0" fill="rgb(254,57,44)" rx="2" ry="2" />
<text text-anchor="" x="1134.84" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>481 /etc/rc.d/devmatch (28,318,860 samples, 0.08%)</title><rect x="1133.7" y="101" width="0.9" height="15.0" fill="rgb(211,35,54)" rx="2" ry="2" />
<text text-anchor="" x="1136.68" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>443 /etc/pccard_ether (23,751,376 samples, 0.06%)</title><rect x="1123.0" y="101" width="0.7" height="15.0" fill="rgb(209,60,25)" rx="2" ry="2" />
<text text-anchor="" x="1125.96" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>710 freebsd-version (4,091,742 samples, 0.01%)</title><rect x="1151.5" y="117" width="0.1" height="15.0" fill="rgb(253,13,25)" rx="2" ry="2" />
<text text-anchor="" x="1154.45" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>366 /etc/rc.d/netif (8,242,844 samples, 0.02%)</title><rect x="717.0" y="117" width="0.2" height="15.0" fill="rgb(220,179,25)" rx="2" ry="2" />
<text text-anchor="" x="719.96" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoload_font (30,344,374 samples, 0.08%)</title><rect x="16.1" y="149" width="1.0" height="15.0" fill="rgb(214,193,53)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>478 /etc/rc.d/devmatch (4,583,504 samples, 0.01%)</title><rect x="1133.5" y="85" width="0.2" height="15.0" fill="rgb(221,85,38)" rx="2" ry="2" />
<text text-anchor="" x="1136.54" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>766 stat (4,113,372 samples, 0.01%)</title><rect x="1155.7" y="117" width="0.1" height="15.0" fill="rgb(229,12,51)" rx="2" ry="2" />
<text text-anchor="" x="1158.70" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>open (35,478,558 samples, 0.10%)</title><rect x="36.3" y="117" width="1.2" height="15.0" fill="rgb(253,221,11)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>44 /sbin/md5 (12,232,681 samples, 0.03%)</title><rect x="284.9" y="101" width="0.4" height="15.0" fill="rgb(223,22,29)" rx="2" ry="2" />
<text text-anchor="" x="287.92" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT intr_config_hooks (11,534,482 samples, 0.03%)</title><rect x="264.5" y="133" width="0.3" height="15.0" fill="rgb(249,47,7)" rx="2" ry="2" />
<text text-anchor="" x="267.46" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT vm_mem (83,150,350 samples, 0.23%)</title><rect x="43.8" y="133" width="2.7" height="15.0" fill="rgb(231,155,14)" rx="2" ry="2" />
<text text-anchor="" x="46.84" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>test_tsc (33,784,074 samples, 0.09%)</title><rect x="247.6" y="117" width="1.1" height="15.0" fill="rgb(247,94,40)" rx="2" ry="2" />
<text text-anchor="" x="250.63" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH efirtc (7,402,596 samples, 0.02%)</title><rect x="249.9" y="101" width="0.2" height="15.0" fill="rgb(207,172,5)" rx="2" ry="2" />
<text text-anchor="" x="252.89" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>154 dd (297,312,398 samples, 0.81%)</title><rect x="382.0" y="117" width="9.6" height="15.0" fill="rgb(251,45,35)" rx="2" ry="2" />
<text text-anchor="" x="385.01" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>twiddle (4,365,420 samples, 0.01%)</title><rect x="36.2" y="101" width="0.1" height="15.0" fill="rgb(243,149,21)" rx="2" ry="2" />
<text text-anchor="" x="39.18" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH pci (194,127,496 samples, 0.53%)</title><rect x="255.7" y="69" width="6.2" height="15.0" fill="rgb(227,9,50)" rx="2" ry="2" />
<text text-anchor="" x="258.70" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (28,301,864 samples, 0.08%)</title><rect x="259.3" y="53" width="0.9" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="262.32" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>59 mount (13,435,034 samples, 0.04%)</title><rect x="300.8" y="117" width="0.5" height="15.0" fill="rgb(212,119,4)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT kbdmuxmodule (3,903,208 samples, 0.01%)</title><rect x="249.2" y="133" width="0.1" height="15.0" fill="rgb(236,82,7)" rx="2" ry="2" />
<text text-anchor="" x="252.16" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT rdrandmodule (6,273,908 samples, 0.02%)</title><rect x="150.3" y="133" width="0.2" height="15.0" fill="rgb(208,214,50)" rx="2" ry="2" />
<text text-anchor="" x="153.27" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>807 /etc/rc.d/sshd (319,905,882 samples, 0.87%)</title><rect x="1167.0" y="133" width="10.3" height="15.0" fill="rgb(208,0,5)" rx="2" ry="2" />
<text text-anchor="" x="1170.04" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>92 grep (34,140,176 samples, 0.09%)</title><rect x="308.0" y="133" width="1.1" height="15.0" fill="rgb(236,165,41)" rx="2" ry="2" />
<text text-anchor="" x="310.99" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>54 fsck_ufs (148,986,716 samples, 0.41%)</title><rect x="286.2" y="101" width="4.8" height="15.0" fill="rgb(210,30,48)" rx="2" ry="2" />
<text text-anchor="" x="289.23" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>712 cat (5,027,924 samples, 0.01%)</title><rect x="1151.7" y="117" width="0.2" height="15.0" fill="rgb(249,4,20)" rx="2" ry="2" />
<text text-anchor="" x="1154.75" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>629 /etc/rc.d/mdconfig2 (10,731,278 samples, 0.03%)</title><rect x="1147.2" y="133" width="0.4" height="15.0" fill="rgb(214,45,54)" rx="2" ry="2" />
<text text-anchor="" x="1150.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>interact (658,343,456 samples, 1.80%)</title><rect x="17.1" y="149" width="21.2" height="15.0" fill="rgb(209,189,51)" rx="2" ry="2" />
<text text-anchor="" x="20.12" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>61 /sbin/nextboot (8,011,228 samples, 0.02%)</title><rect x="301.6" y="117" width="0.3" height="15.0" fill="rgb(217,74,43)" rx="2" ry="2" />
<text text-anchor="" x="304.59" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (16,273,334 samples, 0.04%)</title><rect x="250.5" y="101" width="0.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="253.45" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>72 mount (99,424,888 samples, 0.27%)</title><rect x="302.4" y="117" width="3.2" height="15.0" fill="rgb(241,217,46)" rx="2" ry="2" />
<text text-anchor="" x="305.37" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>498 /etc/rc.d/power_profile (60,549,458 samples, 0.17%)</title><rect x="1136.4" y="101" width="2.0" height="15.0" fill="rgb(250,26,44)" rx="2" ry="2" />
<text text-anchor="" x="1139.45" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>434 /etc/rc.d/devmatch (4,632,454 samples, 0.01%)</title><rect x="1121.9" y="85" width="0.1" height="15.0" fill="rgb(208,126,20)" rx="2" ry="2" />
<text text-anchor="" x="1124.88" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>440 /etc/rc.d/devmatch (4,647,374 samples, 0.01%)</title><rect x="1122.8" y="85" width="0.2" height="15.0" fill="rgb(205,128,51)" rx="2" ry="2" />
<text text-anchor="" x="1125.81" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>efipart_readwrite (14,701,904 samples, 0.04%)</title><rect x="16.4" y="85" width="0.4" height="15.0" fill="rgb(211,217,25)" rx="2" ry="2" />
<text text-anchor="" x="19.38" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>419 /etc/rc.d/devmatch (47,639,750 samples, 0.13%)</title><rect x="1119.6" y="101" width="1.5" height="15.0" fill="rgb(226,10,18)" rx="2" ry="2" />
<text text-anchor="" x="1122.58" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>414 /usr/bin/id (5,671,538 samples, 0.02%)</title><rect x="1119.2" y="117" width="0.2" height="15.0" fill="rgb(214,77,50)" rx="2" ry="2" />
<text text-anchor="" x="1122.17" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH pcib (205,149,340 samples, 0.56%)</title><rect x="255.3" y="85" width="6.6" height="15.0" fill="rgb(243,136,43)" rx="2" ry="2" />
<text text-anchor="" x="258.34" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>efipart_readwrite (27,699,120 samples, 0.08%)</title><rect x="36.6" y="101" width="0.9" height="15.0" fill="rgb(253,154,38)" rx="2" ry="2" />
<text text-anchor="" x="39.57" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>195 /etc/rc.d/netif (10,020,194 samples, 0.03%)</title><rect x="415.6" y="117" width="0.4" height="15.0" fill="rgb(206,189,10)" rx="2" ry="2" />
<text text-anchor="" x="418.65" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>509 /etc/rc.d/power_profile (3,746,946 samples, 0.01%)</title><rect x="1138.2" y="85" width="0.1" height="15.0" fill="rgb(244,21,4)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>84 /bin/mkdir (5,623,734 samples, 0.02%)</title><rect x="306.3" y="117" width="0.1" height="15.0" fill="rgb(231,29,19)" rx="2" ry="2" />
<text text-anchor="" x="309.25" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>53 fsck_ufs (14,922,560 samples, 0.04%)</title><rect x="285.7" y="101" width="0.5" height="15.0" fill="rgb(236,63,32)" rx="2" ry="2" />
<text text-anchor="" x="288.75" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>104 find (4,877,250 samples, 0.01%)</title><rect x="310.0" y="117" width="0.1" height="15.0" fill="rgb(228,121,27)" rx="2" ry="2" />
<text text-anchor="" x="312.96" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>455 devmatch (3,813,018 samples, 0.01%)</title><rect x="1125.0" y="69" width="0.1" height="15.0" fill="rgb(215,222,49)" rx="2" ry="2" />
<text text-anchor="" x="1127.99" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_sleep (239,309,284 samples, 0.65%)</title><rect x="265.9" y="101" width="7.8" height="15.0" fill="rgb(117,117,236)" rx="2" ry="2" />
<text text-anchor="" x="268.94" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>821 /usr/sbin/sshd (21,950,900 samples, 0.06%)</title><rect x="1176.6" y="117" width="0.7" height="15.0" fill="rgb(227,141,49)" rx="2" ry="2" />
<text text-anchor="" x="1179.64" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>187 tr (3,585,908 samples, 0.01%)</title><rect x="404.0" y="101" width="0.1" height="15.0" fill="rgb(210,51,25)" rx="2" ry="2" />
<text text-anchor="" x="406.99" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>open (3,405,834 samples, 0.01%)</title><rect x="16.9" y="101" width="0.1" height="15.0" fill="rgb(244,185,46)" rx="2" ry="2" />
<text text-anchor="" x="19.90" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>272 /sbin/ifconfig (33,154,306 samples, 0.09%)</title><rect x="421.6" y="117" width="1.1" height="15.0" fill="rgb(211,189,10)" rx="2" ry="2" />
<text text-anchor="" x="424.64" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>77 sha256 (3,677,937 samples, 0.01%)</title><rect x="305.7" y="101" width="0.1" height="15.0" fill="rgb(214,20,19)" rx="2" ry="2" />
<text text-anchor="" x="308.73" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>532 /etc/rc.d/stf (4,250,306 samples, 0.01%)</title><rect x="1140.2" y="133" width="0.1" height="15.0" fill="rgb(225,143,41)" rx="2" ry="2" />
<text text-anchor="" x="1143.16" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT cpu (3,084,828,494 samples, 8.42%)</title><rect x="47.5" y="133" width="99.3" height="15.0" fill="rgb(244,106,38)" rx="2" ry="2" />
<text text-anchor="" x="50.47" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >SYSINIT cpu</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>open (21,476,504 samples, 0.06%)</title><rect x="16.4" y="117" width="0.7" height="15.0" fill="rgb(253,191,48)" rx="2" ry="2" />
<text text-anchor="" x="19.38" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>441 devmatch (3,825,008 samples, 0.01%)</title><rect x="1122.8" y="69" width="0.2" height="15.0" fill="rgb(217,168,36)" rx="2" ry="2" />
<text text-anchor="" x="1125.83" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>291 install (12,133,236 samples, 0.03%)</title><rect x="710.5" y="101" width="0.4" height="15.0" fill="rgb(223,20,44)" rx="2" ry="2" />
<text text-anchor="" x="713.47" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>396 sleep (6,038,835,690 samples, 16.48%)</title><rect x="924.3" y="117" width="194.6" height="15.0" fill="rgb(113,113,233)" rx="2" ry="2" />
<text text-anchor="" x="927.35" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >396 sleep</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>770 /usr/sbin/ntpd (157,317,932 samples, 0.43%)</title><rect x="1160.5" y="85" width="5.1" height="15.0" fill="rgb(238,57,53)" rx="2" ry="2" />
<text text-anchor="" x="1163.52" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>786 /etc/rc.d/mountlate (8,500,738 samples, 0.02%)</title><rect x="1166.2" y="133" width="0.3" height="15.0" fill="rgb(238,166,41)" rx="2" ry="2" />
<text text-anchor="" x="1169.22" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>loader (879,315,564 samples, 2.40%)</title><rect x="10.0" y="165" width="28.3" height="15.0" fill="rgb(208,25,46)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>217 /etc/rc.d/netif (7,330,264 samples, 0.02%)</title><rect x="418.3" y="101" width="0.3" height="15.0" fill="rgb(244,6,32)" rx="2" ry="2" />
<text text-anchor="" x="421.34" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>463 /etc/rc.d/devmatch (28,667,934 samples, 0.08%)</title><rect x="1130.9" y="101" width="0.9" height="15.0" fill="rgb(248,69,17)" rx="2" ry="2" />
<text text-anchor="" x="1133.92" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>492 /etc/rc.d/dhclient (35,540,212 samples, 0.10%)</title><rect x="1135.3" y="101" width="1.1" height="15.0" fill="rgb(220,46,20)" rx="2" ry="2" />
<text text-anchor="" x="1138.30" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>open (3,144,500 samples, 0.01%)</title><rect x="16.1" y="117" width="0.1" height="15.0" fill="rgb(244,64,53)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH nexus (425,195,808 samples, 1.16%)</title><rect x="249.4" y="117" width="13.7" height="15.0" fill="rgb(245,181,33)" rx="2" ry="2" />
<text text-anchor="" x="252.42" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT vfs (6,638,528 samples, 0.02%)</title><rect x="263.8" y="133" width="0.3" height="15.0" fill="rgb(222,184,30)" rx="2" ry="2" />
<text text-anchor="" x="266.84" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>721 /usr/sbin/syslogd (35,064,496 samples, 0.10%)</title><rect x="1152.5" y="117" width="1.1" height="15.0" fill="rgb(214,130,45)" rx="2" ry="2" />
<text text-anchor="" x="1155.49" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>68 /etc/rc.d/mdconfig (7,357,324 samples, 0.02%)</title><rect x="302.0" y="117" width="0.3" height="15.0" fill="rgb(241,225,18)" rx="2" ry="2" />
<text text-anchor="" x="305.04" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>THREAD g_event (244,274,103 samples, 0.67%)</title><rect x="265.8" y="117" width="7.9" height="15.0" fill="rgb(223,45,38)" rx="2" ry="2" />
<text text-anchor="" x="268.78" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>779 /etc/rc.d/utx (7,024,522 samples, 0.02%)</title><rect x="1165.9" y="133" width="0.2" height="15.0" fill="rgb(225,26,23)" rx="2" ry="2" />
<text text-anchor="" x="1168.87" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (6,425,938 samples, 0.02%)</title><rect x="248.7" y="117" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="251.72" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>892 date (4,083,544 samples, 0.01%)</title><rect x="1189.9" y="133" width="0.1" height="15.0" fill="rgb(211,27,48)" rx="2" ry="2" />
<text text-anchor="" x="1192.87" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>423 devmatch (6,740,798 samples, 0.02%)</title><rect x="1120.7" y="69" width="0.2" height="15.0" fill="rgb(206,133,31)" rx="2" ry="2" />
<text text-anchor="" x="1123.67" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH kvmclock (13,055,818 samples, 0.04%)</title><rect x="249.4" y="101" width="0.4" height="15.0" fill="rgb(214,148,49)" rx="2" ry="2" />
<text text-anchor="" x="252.42" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>437 /etc/rc.d/devmatch (28,764,820 samples, 0.08%)</title><rect x="1122.0" y="101" width="1.0" height="15.0" fill="rgb(232,122,6)" rx="2" ry="2" />
<text text-anchor="" x="1125.03" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>67 /etc/rc.d/mdconfig (9,103,740 samples, 0.02%)</title><rect x="302.0" y="133" width="0.3" height="15.0" fill="rgb(251,157,31)" rx="2" ry="2" />
<text text-anchor="" x="304.99" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>107 sort (3,581,657 samples, 0.01%)</title><rect x="310.3" y="101" width="0.1" height="15.0" fill="rgb(250,159,26)" rx="2" ry="2" />
<text text-anchor="" x="313.30" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>105 /etc/rc.d/ldconfig (9,386,498 samples, 0.03%)</title><rect x="310.1" y="117" width="0.3" height="15.0" fill="rgb(214,206,24)" rx="2" ry="2" />
<text text-anchor="" x="313.11" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>213 /sbin/ifconfig (4,275,736 samples, 0.01%)</title><rect x="418.2" y="117" width="0.1" height="15.0" fill="rgb(242,123,5)" rx="2" ry="2" />
<text text-anchor="" x="421.15" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>631 /etc/rc.d/mdconfig2 (7,961,106 samples, 0.02%)</title><rect x="1147.3" y="101" width="0.3" height="15.0" fill="rgb(240,40,13)" rx="2" ry="2" />
<text text-anchor="" x="1150.33" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>142 dd (297,208,506 samples, 0.81%)</title><rect x="323.5" y="117" width="9.6" height="15.0" fill="rgb(252,25,26)" rx="2" ry="2" />
<text text-anchor="" x="326.48" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>180 /etc/rc.d/devmatch (80,958,532 samples, 0.22%)</title><rect x="403.2" y="133" width="2.6" height="15.0" fill="rgb(230,38,49)" rx="2" ry="2" />
<text text-anchor="" x="406.23" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>150 dd (297,357,094 samples, 0.81%)</title><rect x="362.7" y="117" width="9.6" height="15.0" fill="rgb(207,171,54)" rx="2" ry="2" />
<text text-anchor="" x="365.74" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>844 /etc/rc.d/sysctl (12,681,928 samples, 0.03%)</title><rect x="1186.5" y="101" width="0.4" height="15.0" fill="rgb(215,132,51)" rx="2" ry="2" />
<text text-anchor="" x="1189.50" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>417 /etc/rc.d/devd (643,228,840 samples, 1.76%)</title><rect x="1119.4" y="133" width="20.8" height="15.0" fill="rgb(229,37,14)" rx="2" ry="2" />
<text text-anchor="" x="1122.45" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>360 /etc/rc.d/netif (8,466,320 samples, 0.02%)</title><rect x="716.6" y="117" width="0.3" height="15.0" fill="rgb(237,83,49)" rx="2" ry="2" />
<text text-anchor="" x="719.64" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>156 dd (297,284,046 samples, 0.81%)</title><rect x="391.6" y="117" width="9.6" height="15.0" fill="rgb(218,201,18)" rx="2" ry="2" />
<text text-anchor="" x="394.64" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>221 /etc/rc.d/netif (8,180,438 samples, 0.02%)</title><rect x="418.6" y="117" width="0.3" height="15.0" fill="rgb(247,149,6)" rx="2" ry="2" />
<text text-anchor="" x="421.61" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>487 /etc/pccard_ether (21,894,052 samples, 0.06%)</title><rect x="1134.6" y="101" width="0.7" height="15.0" fill="rgb(206,100,24)" rx="2" ry="2" />
<text text-anchor="" x="1137.60" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>479 devmatch (3,791,160 samples, 0.01%)</title><rect x="1133.6" y="69" width="0.1" height="15.0" fill="rgb(222,138,39)" rx="2" ry="2" />
<text text-anchor="" x="1136.56" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>706 /etc/rc.d/virecover (6,338,426 samples, 0.02%)</title><rect x="1151.2" y="133" width="0.2" height="15.0" fill="rgb(215,134,51)" rx="2" ry="2" />
<text text-anchor="" x="1154.22" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT trademark (3,528,024 samples, 0.01%)</title><rect x="43.2" y="133" width="0.2" height="15.0" fill="rgb(227,68,20)" rx="2" ry="2" />
<text text-anchor="" x="46.24" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>152 dd (297,222,566 samples, 0.81%)</title><rect x="372.4" y="117" width="9.6" height="15.0" fill="rgb(209,229,46)" rx="2" ry="2" />
<text text-anchor="" x="375.38" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>242 /etc/rc.d/netif (8,159,698 samples, 0.02%)</title><rect x="419.7" y="117" width="0.3" height="15.0" fill="rgb(233,113,33)" rx="2" ry="2" />
<text text-anchor="" x="422.74" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>788 /sbin/nextboot (4,274,170 samples, 0.01%)</title><rect x="1166.4" y="117" width="0.1" height="15.0" fill="rgb(254,32,23)" rx="2" ry="2" />
<text text-anchor="" x="1169.36" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>25 stty (5,670,832 samples, 0.02%)</title><rect x="274.6" y="133" width="0.1" height="15.0" fill="rgb(219,10,2)" rx="2" ry="2" />
<text text-anchor="" x="277.56" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT start_aps (7,231,922 samples, 0.02%)</title><rect x="247.4" y="133" width="0.2" height="15.0" fill="rgb(227,94,37)" rx="2" ry="2" />
<text text-anchor="" x="250.39" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>767 su (293,981,458 samples, 0.80%)</title><rect x="1156.1" y="117" width="9.5" height="15.0" fill="rgb(230,166,32)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>845 /bin/ps (9,717,776 samples, 0.03%)</title><rect x="1186.5" y="85" width="0.4" height="15.0" fill="rgb(205,59,22)" rx="2" ry="2" />
<text text-anchor="" x="1189.54" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>60 umount (5,844,076 samples, 0.02%)</title><rect x="301.4" y="117" width="0.2" height="15.0" fill="rgb(254,211,25)" rx="2" ry="2" />
<text text-anchor="" x="304.41" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>496 /bin/ps (7,826,074 samples, 0.02%)</title><rect x="1136.2" y="69" width="0.2" height="15.0" fill="rgb(248,191,11)" rx="2" ry="2" />
<text text-anchor="" x="1139.19" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>824 /usr/sbin/sendmail (214,168,650 samples, 0.58%)</title><rect x="1177.6" y="117" width="6.9" height="15.0" fill="rgb(215,42,0)" rx="2" ry="2" />
<text text-anchor="" x="1180.64" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>516 /usr/local/etc/rc.d/dev_aws_disk (4,203,908 samples, 0.01%)</title><rect x="1138.9" y="85" width="0.2" height="15.0" fill="rgb(239,57,50)" rx="2" ry="2" />
<text text-anchor="" x="1141.93" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>158 dd (3,324,104 samples, 0.01%)</title><rect x="401.3" y="117" width="0.1" height="15.0" fill="rgb(248,227,25)" rx="2" ry="2" />
<text text-anchor="" x="404.28" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>704 rm (8,254,320 samples, 0.02%)</title><rect x="1150.9" y="117" width="0.3" height="15.0" fill="rgb(217,174,6)" rx="2" ry="2" />
<text text-anchor="" x="1153.91" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>473 devmatch (3,935,048 samples, 0.01%)</title><rect x="1132.6" y="69" width="0.2" height="15.0" fill="rgb(220,157,40)" rx="2" ry="2" />
<text text-anchor="" x="1135.64" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>382 /etc/rc.d/ipfilter (44,788,062 samples, 0.12%)</title><rect x="922.4" y="117" width="1.4" height="15.0" fill="rgb(250,122,10)" rx="2" ry="2" />
<text text-anchor="" x="925.38" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>703 /etc/rc.d/cleartmp (12,227,060 samples, 0.03%)</title><rect x="1150.8" y="133" width="0.4" height="15.0" fill="rgb(238,12,47)" rx="2" ry="2" />
<text text-anchor="" x="1153.83" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT announce (10,749,950 samples, 0.03%)</title><rect x="42.9" y="133" width="0.3" height="15.0" fill="rgb(221,20,37)" rx="2" ry="2" />
<text text-anchor="" x="45.90" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>361 /etc/rc.d/netif (7,626,620 samples, 0.02%)</title><rect x="716.7" y="101" width="0.2" height="15.0" fill="rgb(218,134,34)" rx="2" ry="2" />
<text text-anchor="" x="719.67" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>96 ln (3,287,238 samples, 0.01%)</title><rect x="309.4" y="117" width="0.1" height="15.0" fill="rgb(219,199,15)" rx="2" ry="2" />
<text text-anchor="" x="312.38" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT timecounter (4,554,322 samples, 0.01%)</title><rect x="264.1" y="133" width="0.2" height="15.0" fill="rgb(217,185,51)" rx="2" ry="2" />
<text text-anchor="" x="267.11" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>83 /etc/rc.d/var (10,807,258 samples, 0.03%)</title><rect x="306.3" y="133" width="0.3" height="15.0" fill="rgb(252,4,18)" rx="2" ry="2" />
<text text-anchor="" x="309.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>34 /sbin/sysctl (3,592,022 samples, 0.01%)</title><rect x="283.9" y="117" width="0.1" height="15.0" fill="rgb(240,224,33)" rx="2" ry="2" />
<text text-anchor="" x="286.91" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>834 vidcontrol (4,085,412 samples, 0.01%)</title><rect x="1185.5" y="117" width="0.1" height="15.0" fill="rgb(243,19,13)" rx="2" ry="2" />
<text text-anchor="" x="1188.45" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DELAY (3,000,093,766 samples, 8.19%)</title><rect x="150.7" y="117" width="96.7" height="15.0" fill="rgb(125,125,242)" rx="2" ry="2" />
<text text-anchor="" x="153.72" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >DELAY</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_sleep (3,181,508 samples, 0.01%)</title><rect x="273.8" y="117" width="0.1" height="15.0" fill="rgb(118,118,236)" rx="2" ry="2" />
<text text-anchor="" x="276.77" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>efipart_readwrite (19,959,198 samples, 0.05%)</title><rect x="10.7" y="133" width="0.6" height="15.0" fill="rgb(213,47,8)" rx="2" ry="2" />
<text text-anchor="" x="13.68" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (5,325,136 samples, 0.01%)</title><rect x="263.5" y="101" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="266.52" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>111 /etc/rc.d/kldxref (12,256,538 samples, 0.03%)</title><rect x="311.4" y="133" width="0.4" height="15.0" fill="rgb(253,23,7)" rx="2" ry="2" />
<text text-anchor="" x="314.37" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>390 /usr/sbin/rtsold (9,679,272 samples, 0.03%)</title><rect x="923.9" y="117" width="0.3" height="15.0" fill="rgb(252,190,2)" rx="2" ry="2" />
<text text-anchor="" x="926.89" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>735 /etc/rc.d/localpkg (6,181,438 samples, 0.02%)</title><rect x="1154.3" y="133" width="0.2" height="15.0" fill="rgb(206,141,47)" rx="2" ry="2" />
<text text-anchor="" x="1157.34" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>103 /etc/rc.d/ldconfig (43,982,334 samples, 0.12%)</title><rect x="310.0" y="133" width="1.4" height="15.0" fill="rgb(215,219,45)" rx="2" ry="2" />
<text text-anchor="" x="312.96" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>264 /etc/rc.d/netif (8,234,652 samples, 0.02%)</title><rect x="421.3" y="117" width="0.3" height="15.0" fill="rgb(217,174,5)" rx="2" ry="2" />
<text text-anchor="" x="424.30" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (31,330,964 samples, 0.09%)</title><rect x="251.6" y="69" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="254.62" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>159 /etc/rc.d/random (3,838,876 samples, 0.01%)</title><rect x="401.4" y="117" width="0.1" height="15.0" fill="rgb(215,93,33)" rx="2" ry="2" />
<text text-anchor="" x="404.39" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>607 /etc/rc.d/motd (26,948,990 samples, 0.07%)</title><rect x="1144.7" y="133" width="0.8" height="15.0" fill="rgb(229,18,29)" rx="2" ry="2" />
<text text-anchor="" x="1147.68" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>611 cat (6,290,936 samples, 0.02%)</title><rect x="1145.2" y="117" width="0.2" height="15.0" fill="rgb(235,201,4)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>604 /etc/rc.d/dmesg (11,217,936 samples, 0.03%)</title><rect x="1144.3" y="133" width="0.4" height="15.0" fill="rgb(241,154,28)" rx="2" ry="2" />
<text text-anchor="" x="1147.32" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>490 /sbin/ifconfig (3,261,706 samples, 0.01%)</title><rect x="1135.1" y="85" width="0.1" height="15.0" fill="rgb(234,158,50)" rx="2" ry="2" />
<text text-anchor="" x="1138.12" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (3,845,574 samples, 0.01%)</title><rect x="249.2" y="117" width="0.1" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="252.17" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>529 ln (7,174,600 samples, 0.02%)</title><rect x="1139.8" y="85" width="0.2" height="15.0" fill="rgb(251,161,28)" rx="2" ry="2" />
<text text-anchor="" x="1142.81" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT apic_setup_local (4,079,192 samples, 0.01%)</title><rect x="146.8" y="133" width="0.2" height="15.0" fill="rgb(239,115,19)" rx="2" ry="2" />
<text text-anchor="" x="149.83" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>379 sleep (3,217,227,672 samples, 8.78%)</title><rect x="817.4" y="117" width="103.7" height="15.0" fill="rgb(113,113,233)" rx="2" ry="2" />
<text text-anchor="" x="820.45" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >379 sleep</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>79 rmdir (3,653,326 samples, 0.01%)</title><rect x="306.1" y="117" width="0.1" height="15.0" fill="rgb(254,41,29)" rx="2" ry="2" />
<text text-anchor="" x="309.06" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_vprintf (54,355,026 samples, 0.15%)</title><rect x="144.1" y="117" width="1.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="147.11" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>260 /etc/rc.d/netif (7,380,600 samples, 0.02%)</title><rect x="421.0" y="101" width="0.3" height="15.0" fill="rgb(250,58,44)" rx="2" ry="2" />
<text text-anchor="" x="424.03" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT init (21,857,922 samples, 0.06%)</title><rect x="265.0" y="133" width="0.7" height="15.0" fill="rgb(239,52,27)" rx="2" ry="2" />
<text text-anchor="" x="267.96" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>461 devmatch (3,809,976 samples, 0.01%)</title><rect x="1130.8" y="69" width="0.1" height="15.0" fill="rgb(250,109,2)" rx="2" ry="2" />
<text text-anchor="" x="1133.79" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>256 /sbin/ifconfig (7,403,094 samples, 0.02%)</title><rect x="420.7" y="117" width="0.3" height="15.0" fill="rgb(235,46,18)" rx="2" ry="2" />
<text text-anchor="" x="423.74" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>open (43,798,540 samples, 0.12%)</title><rect x="11.3" y="149" width="1.4" height="15.0" fill="rgb(232,169,20)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>56 fsck_msdosfs (159,176,314 samples, 0.43%)</title><rect x="295.7" y="101" width="5.1" height="15.0" fill="rgb(240,156,34)" rx="2" ry="2" />
<text text-anchor="" x="298.69" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>296 /sbin/dhclient-script (7,706,452 samples, 0.02%)</title><rect x="710.9" y="85" width="0.3" height="15.0" fill="rgb(217,164,35)" rx="2" ry="2" />
<text text-anchor="" x="713.93" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DEVICE_ATTACH vgapci (3,800,026 samples, 0.01%)</title><rect x="259.2" y="53" width="0.1" height="15.0" fill="rgb(251,8,29)" rx="2" ry="2" />
<text text-anchor="" x="262.20" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>164 dd (3,526,432 samples, 0.01%)</title><rect x="402.2" y="117" width="0.1" height="15.0" fill="rgb(245,117,44)" rx="2" ry="2" />
<text text-anchor="" x="405.19" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>185 /etc/rc.d/devmatch (5,573,748 samples, 0.02%)</title><rect x="403.9" y="117" width="0.2" height="15.0" fill="rgb(235,100,12)" rx="2" ry="2" />
<text text-anchor="" x="406.93" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT version (14,951,760 samples, 0.04%)</title><rect x="43.4" y="133" width="0.4" height="15.0" fill="rgb(247,161,40)" rx="2" ry="2" />
<text text-anchor="" x="46.36" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>855 logger (6,917,249 samples, 0.02%)</title><rect x="1187.1" y="117" width="0.3" height="15.0" fill="rgb(223,13,23)" rx="2" ry="2" />
<text text-anchor="" x="1190.14" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>634 expr (6,891,494 samples, 0.02%)</title><rect x="1147.6" y="117" width="0.2" height="15.0" fill="rgb(243,70,2)" rx="2" ry="2" />
<text text-anchor="" x="1150.59" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>485 devmatch (3,778,220 samples, 0.01%)</title><rect x="1134.5" y="69" width="0.1" height="15.0" fill="rgb(228,206,27)" rx="2" ry="2" />
<text text-anchor="" x="1137.47" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>28 kenv (3,463,868 samples, 0.01%)</title><rect x="274.9" y="133" width="0.1" height="15.0" fill="rgb(217,11,39)" rx="2" ry="2" />
<text text-anchor="" x="277.90" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>780 utx (4,569,936 samples, 0.01%)</title><rect x="1166.0" y="117" width="0.1" height="15.0" fill="rgb(226,200,34)" rx="2" ry="2" />
<text text-anchor="" x="1168.95" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>146 dd (297,262,118 samples, 0.81%)</title><rect x="342.7" y="117" width="9.6" height="15.0" fill="rgb(232,96,23)" rx="2" ry="2" />
<text text-anchor="" x="345.75" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>451 /etc/rc.d/devmatch (28,436,920 samples, 0.08%)</title><rect x="1124.2" y="101" width="0.9" height="15.0" fill="rgb(217,38,39)" rx="2" ry="2" />
<text text-anchor="" x="1127.20" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>545 grep (7,663,838 samples, 0.02%)</title><rect x="1141.0" y="85" width="0.2" height="15.0" fill="rgb(245,11,38)" rx="2" ry="2" />
<text text-anchor="" x="1144.00" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>790 /etc/rc.d/nscd (4,785,952 samples, 0.01%)</title><rect x="1166.5" y="133" width="0.2" height="15.0" fill="rgb(226,135,30)" rx="2" ry="2" />
<text text-anchor="" x="1169.50" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSINIT cpu_mp (101,138,134 samples, 0.28%)</title><rect x="147.0" y="133" width="3.2" height="15.0" fill="rgb(224,98,36)" rx="2" ry="2" />
<text text-anchor="" x="149.97" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>41 cat (14,557,578 samples, 0.04%)</title><rect x="284.2" y="117" width="0.5" height="15.0" fill="rgb(218,165,15)" rx="2" ry="2" />
<text text-anchor="" x="287.22" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>618 /etc/rc.d/gptboot (25,583,984 samples, 0.07%)</title><rect x="1146.4" y="133" width="0.8" height="15.0" fill="rgb(205,214,6)" rx="2" ry="2" />
<text text-anchor="" x="1149.39" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>209 /sbin/ifconfig (4,615,650 samples, 0.01%)</title><rect x="417.9" y="117" width="0.2" height="15.0" fill="rgb(225,165,47)" rx="2" ry="2" />
<text text-anchor="" x="420.90" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read (14,878,550 samples, 0.04%)</title><rect x="16.4" y="101" width="0.5" height="15.0" fill="rgb(209,211,40)" rx="2" ry="2" />
<text text-anchor="" x="19.38" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>58 /etc/rc.d/root (31,131,282 samples, 0.08%)</title><rect x="300.8" y="133" width="1.1" height="15.0" fill="rgb(221,85,11)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>49 /sbin/swapon (5,229,622 samples, 0.01%)</title><rect x="285.5" y="117" width="0.2" height="15.0" fill="rgb(221,190,14)" rx="2" ry="2" />
<text text-anchor="" x="288.49" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>76 dd (4,116,776 samples, 0.01%)</title><rect x="305.6" y="101" width="0.1" height="15.0" fill="rgb(228,226,7)" rx="2" ry="2" />
<text text-anchor="" x="308.57" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>279 /sbin/rtsol (4,768,464 samples, 0.01%)</title><rect x="424.3" y="85" width="0.2" height="15.0" fill="rgb(205,172,37)" rx="2" ry="2" />
<text text-anchor="" x="427.34" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>568 /etc/rc.d/ipfw (4,136,394 samples, 0.01%)</title><rect x="1142.7" y="133" width="0.1" height="15.0" fill="rgb(238,90,5)" rx="2" ry="2" />
<text text-anchor="" x="1145.70" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>201 /etc/rc.d/netif (4,931,322 samples, 0.01%)</title><rect x="417.5" y="117" width="0.2" height="15.0" fill="rgb(226,138,33)" rx="2" ry="2" />
<text text-anchor="" x="420.50" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>259 /etc/rc.d/netif (8,159,596 samples, 0.02%)</title><rect x="421.0" y="117" width="0.3" height="15.0" fill="rgb(214,116,33)" rx="2" ry="2" />
<text text-anchor="" x="424.01" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_interrupt_driven_config_hooks (11,532,306 samples, 0.03%)</title><rect x="264.5" y="117" width="0.3" height="15.0" fill="rgb(249,98,24)" rx="2" ry="2" />
<text text-anchor="" x="267.46" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kvprintf (26,791,462 samples, 0.07%)</title><rect x="37.5" y="117" width="0.8" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="40.46" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>412 /etc/rc.d/static_arp (3,973,088 samples, 0.01%)</title><rect x="1119.0" y="133" width="0.1" height="15.0" fill="rgb(210,148,6)" rx="2" ry="2" />
<text text-anchor="" x="1121.99" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>570 /etc/rc.d/defaultroute (16,292,866 samples, 0.04%)</title><rect x="1143.0" y="133" width="0.5" height="15.0" fill="rgb(245,163,13)" rx="2" ry="2" />
<text text-anchor="" x="1145.96" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>533 /etc/rc.d/routing (73,771,054 samples, 0.20%)</title><rect x="1140.3" y="133" width="2.4" height="15.0" fill="rgb(221,30,43)" rx="2" ry="2" />
<text text-anchor="" x="1143.30" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>

File Metadata

Mime Type
image/svg+xml
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4123758
Default Alt Text
tslog.svg (132 KB)

Event Timeline