github.com/Aestek/consul@v1.2.4-0.20190309222502-b2c31e33971a/bench/results-0.7.1.svg (about) 1 <?xml version="1.0" standalone="no"?> 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> 3 <svg version="1.1" width="1200" height="658" onload="init(evt)" viewBox="0 0 1200 658" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> 4 <!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> 5 <defs > 6 <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > 7 <stop stop-color="#eeeeee" offset="5%" /> 8 <stop stop-color="#eeeeb0" offset="95%" /> 9 </linearGradient> 10 </defs> 11 <style type="text/css"> 12 .func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } 13 </style> 14 <script type="text/ecmascript"> 15 <![CDATA[ 16 var details, searchbtn, matchedtxt, svg; 17 function init(evt) { 18 details = document.getElementById("details").firstChild; 19 searchbtn = document.getElementById("search"); 20 matchedtxt = document.getElementById("matched"); 21 svg = document.getElementsByTagName("svg")[0]; 22 searching = 0; 23 } 24 25 // mouse-over for info 26 function s(node) { // show 27 info = g_to_text(node); 28 details.nodeValue = "Function: " + info; 29 } 30 function c() { // clear 31 details.nodeValue = ' '; 32 } 33 34 // ctrl-F for search 35 window.addEventListener("keydown",function (e) { 36 if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { 37 e.preventDefault(); 38 search_prompt(); 39 } 40 }) 41 42 // functions 43 function find_child(parent, name, attr) { 44 var children = parent.childNodes; 45 for (var i=0; i<children.length;i++) { 46 if (children[i].tagName == name) 47 return (attr != undefined) ? children[i].attributes[attr].value : children[i]; 48 } 49 return; 50 } 51 function orig_save(e, attr, val) { 52 if (e.attributes["_orig_"+attr] != undefined) return; 53 if (e.attributes[attr] == undefined) return; 54 if (val == undefined) val = e.attributes[attr].value; 55 e.setAttribute("_orig_"+attr, val); 56 } 57 function orig_load(e, attr) { 58 if (e.attributes["_orig_"+attr] == undefined) return; 59 e.attributes[attr].value = e.attributes["_orig_"+attr].value; 60 e.removeAttribute("_orig_"+attr); 61 } 62 function g_to_text(e) { 63 var text = find_child(e, "title").firstChild.nodeValue; 64 return (text) 65 } 66 function g_to_func(e) { 67 var func = g_to_text(e); 68 if (func != null) 69 func = func.replace(/ .*/, ""); 70 return (func); 71 } 72 function update_text(e) { 73 var r = find_child(e, "rect"); 74 var t = find_child(e, "text"); 75 var w = parseFloat(r.attributes["width"].value) -3; 76 var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); 77 t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; 78 79 // Smaller than this size won't fit anything 80 if (w < 2*12*0.59) { 81 t.textContent = ""; 82 return; 83 } 84 85 t.textContent = txt; 86 // Fit in full text width 87 if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) 88 return; 89 90 for (var x=txt.length-2; x>0; x--) { 91 if (t.getSubStringLength(0, x+2) <= w) { 92 t.textContent = txt.substring(0,x) + ".."; 93 return; 94 } 95 } 96 t.textContent = ""; 97 } 98 99 // zoom 100 function zoom_reset(e) { 101 if (e.attributes != undefined) { 102 orig_load(e, "x"); 103 orig_load(e, "width"); 104 } 105 if (e.childNodes == undefined) return; 106 for(var i=0, c=e.childNodes; i<c.length; i++) { 107 zoom_reset(c[i]); 108 } 109 } 110 function zoom_child(e, x, ratio) { 111 if (e.attributes != undefined) { 112 if (e.attributes["x"] != undefined) { 113 orig_save(e, "x"); 114 e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; 115 if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3; 116 } 117 if (e.attributes["width"] != undefined) { 118 orig_save(e, "width"); 119 e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio; 120 } 121 } 122 123 if (e.childNodes == undefined) return; 124 for(var i=0, c=e.childNodes; i<c.length; i++) { 125 zoom_child(c[i], x-10, ratio); 126 } 127 } 128 function zoom_parent(e) { 129 if (e.attributes) { 130 if (e.attributes["x"] != undefined) { 131 orig_save(e, "x"); 132 e.attributes["x"].value = 10; 133 } 134 if (e.attributes["width"] != undefined) { 135 orig_save(e, "width"); 136 e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2); 137 } 138 } 139 if (e.childNodes == undefined) return; 140 for(var i=0, c=e.childNodes; i<c.length; i++) { 141 zoom_parent(c[i]); 142 } 143 } 144 function zoom(node) { 145 var attr = find_child(node, "rect").attributes; 146 var width = parseFloat(attr["width"].value); 147 var xmin = parseFloat(attr["x"].value); 148 var xmax = parseFloat(xmin + width); 149 var ymin = parseFloat(attr["y"].value); 150 var ratio = (svg.width.baseVal.value - 2*10) / width; 151 152 // XXX: Workaround for JavaScript float issues (fix me) 153 var fudge = 0.0001; 154 155 var unzoombtn = document.getElementById("unzoom"); 156 unzoombtn.style["opacity"] = "1.0"; 157 158 var el = document.getElementsByTagName("g"); 159 for(var i=0;i<el.length;i++){ 160 var e = el[i]; 161 var a = find_child(e, "rect").attributes; 162 var ex = parseFloat(a["x"].value); 163 var ew = parseFloat(a["width"].value); 164 // Is it an ancestor 165 if (0 == 0) { 166 var upstack = parseFloat(a["y"].value) > ymin; 167 } else { 168 var upstack = parseFloat(a["y"].value) < ymin; 169 } 170 if (upstack) { 171 // Direct ancestor 172 if (ex <= xmin && (ex+ew+fudge) >= xmax) { 173 e.style["opacity"] = "0.5"; 174 zoom_parent(e); 175 e.onclick = function(e){unzoom(); zoom(this);}; 176 update_text(e); 177 } 178 // not in current path 179 else 180 e.style["display"] = "none"; 181 } 182 // Children maybe 183 else { 184 // no common path 185 if (ex < xmin || ex + fudge >= xmax) { 186 e.style["display"] = "none"; 187 } 188 else { 189 zoom_child(e, xmin, ratio); 190 e.onclick = function(e){zoom(this);}; 191 update_text(e); 192 } 193 } 194 } 195 } 196 function unzoom() { 197 var unzoombtn = document.getElementById("unzoom"); 198 unzoombtn.style["opacity"] = "0.0"; 199 200 var el = document.getElementsByTagName("g"); 201 for(i=0;i<el.length;i++) { 202 el[i].style["display"] = "block"; 203 el[i].style["opacity"] = "1"; 204 zoom_reset(el[i]); 205 update_text(el[i]); 206 } 207 } 208 209 // search 210 function reset_search() { 211 var el = document.getElementsByTagName("rect"); 212 for (var i=0; i < el.length; i++) { 213 orig_load(el[i], "fill") 214 } 215 } 216 function search_prompt() { 217 if (!searching) { 218 var term = prompt("Enter a search term (regexp " + 219 "allowed, eg: ^ext4_)", ""); 220 if (term != null) { 221 search(term) 222 } 223 } else { 224 reset_search(); 225 searching = 0; 226 searchbtn.style["opacity"] = "0.1"; 227 searchbtn.firstChild.nodeValue = "Search" 228 matchedtxt.style["opacity"] = "0.0"; 229 matchedtxt.firstChild.nodeValue = "" 230 } 231 } 232 function search(term) { 233 var re = new RegExp(term); 234 var el = document.getElementsByTagName("g"); 235 var matches = new Object(); 236 var maxwidth = 0; 237 for (var i = 0; i < el.length; i++) { 238 var e = el[i]; 239 if (e.attributes["class"].value != "func_g") 240 continue; 241 var func = g_to_func(e); 242 var rect = find_child(e, "rect"); 243 if (rect == null) { 244 // the rect might be wrapped in an anchor 245 // if nameattr href is being used 246 if (rect = find_child(e, "a")) { 247 rect = find_child(r, "rect"); 248 } 249 } 250 if (func == null || rect == null) 251 continue; 252 253 // Save max width. Only works as we have a root frame 254 var w = parseFloat(rect.attributes["width"].value); 255 if (w > maxwidth) 256 maxwidth = w; 257 258 if (func.match(re)) { 259 // highlight 260 var x = parseFloat(rect.attributes["x"].value); 261 orig_save(rect, "fill"); 262 rect.attributes["fill"].value = 263 "rgb(230,0,230)"; 264 265 // remember matches 266 if (matches[x] == undefined) { 267 matches[x] = w; 268 } else { 269 if (w > matches[x]) { 270 // overwrite with parent 271 matches[x] = w; 272 } 273 } 274 searching = 1; 275 } 276 } 277 if (!searching) 278 return; 279 280 searchbtn.style["opacity"] = "1.0"; 281 searchbtn.firstChild.nodeValue = "Reset Search" 282 283 // calculate percent matched, excluding vertical overlap 284 var count = 0; 285 var lastx = -1; 286 var lastw = 0; 287 var keys = Array(); 288 for (k in matches) { 289 if (matches.hasOwnProperty(k)) 290 keys.push(k); 291 } 292 // sort the matched frames by their x location 293 // ascending, then width descending 294 keys.sort(function(a, b){ 295 return a - b; 296 if (a < b || a > b) 297 return a - b; 298 return matches[b] - matches[a]; 299 }); 300 // Step through frames saving only the biggest bottom-up frames 301 // thanks to the sort order. This relies on the tree property 302 // where children are always smaller than their parents. 303 for (var k in keys) { 304 var x = parseFloat(keys[k]); 305 var w = matches[keys[k]]; 306 if (x >= lastx + lastw) { 307 count += w; 308 lastx = x; 309 lastw = w; 310 } 311 } 312 // display matched percent 313 matchedtxt.style["opacity"] = "1.0"; 314 pct = 100 * count / maxwidth; 315 if (pct == 100) 316 pct = "100" 317 else 318 pct = pct.toFixed(1) 319 matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; 320 } 321 function searchover(e) { 322 searchbtn.style["opacity"] = "1.0"; 323 } 324 function searchout(e) { 325 if (searching) { 326 searchbtn.style["opacity"] = "1.0"; 327 } else { 328 searchbtn.style["opacity"] = "0.1"; 329 } 330 } 331 ]]> 332 </script> 333 <rect x="0.0" y="0" width="1200.0" height="658.0" fill="url(#background)" /> 334 <text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text> 335 <text text-anchor="" x="10.00" y="641" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text> 336 <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> 337 <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> 338 <text text-anchor="" x="1090.00" y="641" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text> 339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 340 <title>github.com/hashicorp/consul/command/agent.setMeta (62 samples, 2.61%)</title><rect x="704.5" y="433" width="30.8" height="15.0" fill="rgb(243,170,18)" rx="2" ry="2" /> 341 <text text-anchor="" x="707.47" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> 342 </g> 343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 344 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="102.5" y="513" width="1.0" height="15.0" fill="rgb(213,193,52)" rx="2" ry="2" /> 345 <text text-anchor="" x="105.53" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 346 </g> 347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 348 <title>runtime.slicebytetostring (2 samples, 0.08%)</title><rect x="734.3" y="369" width="1.0" height="15.0" fill="rgb(208,225,34)" rx="2" ry="2" /> 349 <text text-anchor="" x="737.32" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 350 </g> 351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 352 <title>runtime.gosweepone (21 samples, 0.89%)</title><rect x="1050.2" y="561" width="10.5" height="15.0" fill="rgb(221,16,42)" rx="2" ry="2" /> 353 <text text-anchor="" x="1053.21" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 354 </g> 355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 356 <title>runtime.casgstatus (3 samples, 0.13%)</title><rect x="1148.2" y="529" width="1.5" height="15.0" fill="rgb(227,167,47)" rx="2" ry="2" /> 357 <text text-anchor="" x="1151.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 358 </g> 359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 360 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="652.7" y="209" width="0.5" height="15.0" fill="rgb(247,154,52)" rx="2" ry="2" /> 361 <text text-anchor="" x="655.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 362 </g> 363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 364 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="511.5" y="417" width="0.4" height="15.0" fill="rgb(220,216,15)" rx="2" ry="2" /> 365 <text text-anchor="" x="514.45" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 366 </g> 367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 368 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).parse (97 samples, 4.09%)</title><rect x="756.2" y="449" width="48.3" height="15.0" fill="rgb(210,111,51)" rx="2" ry="2" /> 369 <text text-anchor="" x="759.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gith..</text> 370 </g> 371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 372 <title>sync.(*RWMutex).RUnlock (1 samples, 0.04%)</title><rect x="333.9" y="465" width="0.5" height="15.0" fill="rgb(211,55,54)" rx="2" ry="2" /> 373 <text text-anchor="" x="336.85" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 374 </g> 375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 376 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="790.5" y="305" width="0.5" height="15.0" fill="rgb(221,27,8)" rx="2" ry="2" /> 377 <text text-anchor="" x="793.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 378 </g> 379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 380 <title>runtime.memeqbody (1 samples, 0.04%)</title><rect x="126.4" y="497" width="0.5" height="15.0" fill="rgb(247,199,36)" rx="2" ry="2" /> 381 <text text-anchor="" x="129.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 382 </g> 383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 384 <title>runtime.mapassign1 (27 samples, 1.14%)</title><rect x="233.4" y="513" width="13.4" height="15.0" fill="rgb(218,102,28)" rx="2" ry="2" /> 385 <text text-anchor="" x="236.36" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 386 </g> 387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 388 <title>runtime.newobject (6 samples, 0.25%)</title><rect x="753.2" y="433" width="3.0" height="15.0" fill="rgb(228,62,52)" rx="2" ry="2" /> 389 <text text-anchor="" x="756.22" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 390 </g> 391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 392 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="749.2" y="369" width="0.5" height="15.0" fill="rgb(220,60,15)" rx="2" ry="2" /> 393 <text text-anchor="" x="752.24" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 394 </g> 395 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 396 <title>net/url.QueryUnescape (1 samples, 0.04%)</title><rect x="999.5" y="449" width="0.5" height="15.0" fill="rgb(223,165,12)" rx="2" ry="2" /> 397 <text text-anchor="" x="1002.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 398 </g> 399 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 400 <title>runtime.growslice (3 samples, 0.13%)</title><rect x="1044.7" y="497" width="1.5" height="15.0" fill="rgb(239,14,32)" rx="2" ry="2" /> 401 <text text-anchor="" x="1047.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 402 </g> 403 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 404 <title>runtime/internal/atomic.Store (1 samples, 0.04%)</title><rect x="789.0" y="257" width="0.5" height="15.0" fill="rgb(212,8,0)" rx="2" ry="2" /> 405 <text text-anchor="" x="792.04" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 406 </g> 407 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 408 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="1044.2" y="369" width="0.5" height="15.0" fill="rgb(212,174,48)" rx="2" ry="2" /> 409 <text text-anchor="" x="1047.24" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 410 </g> 411 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 412 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1011.9" y="401" width="0.5" height="15.0" fill="rgb(248,49,26)" rx="2" ry="2" /> 413 <text text-anchor="" x="1014.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 414 </g> 415 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 416 <title>runtime.(*mcache).nextFree.func1 (2 samples, 0.08%)</title><rect x="241.3" y="433" width="1.0" height="15.0" fill="rgb(243,91,42)" rx="2" ry="2" /> 417 <text text-anchor="" x="244.32" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 418 </g> 419 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 420 <title>encoding/json.isEmptyValue (2 samples, 0.08%)</title><rect x="850.2" y="289" width="1.0" height="15.0" fill="rgb(224,15,13)" rx="2" ry="2" /> 421 <text text-anchor="" x="853.23" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 422 </g> 423 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 424 <title>github.com/hashicorp/consul/command/agent.parseConsistency (18 samples, 0.76%)</title><rect x="784.6" y="433" width="8.9" height="15.0" fill="rgb(222,99,13)" rx="2" ry="2" /> 425 <text text-anchor="" x="787.56" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 426 </g> 427 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 428 <title>net/textproto.trim (2 samples, 0.08%)</title><rect x="211.5" y="497" width="1.0" height="15.0" fill="rgb(240,101,45)" rx="2" ry="2" /> 429 <text text-anchor="" x="214.48" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 430 </g> 431 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 432 <title>runtime.systemstack (4 samples, 0.17%)</title><rect x="713.9" y="305" width="2.0" height="15.0" fill="rgb(233,2,41)" rx="2" ry="2" /> 433 <text text-anchor="" x="716.92" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 434 </g> 435 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 436 <title>runtime/internal/atomic.Or8 (1 samples, 0.04%)</title><rect x="972.6" y="401" width="0.5" height="15.0" fill="rgb(239,30,33)" rx="2" ry="2" /> 437 <text text-anchor="" x="975.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 438 </g> 439 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 440 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="904.0" y="385" width="0.5" height="15.0" fill="rgb(208,0,26)" rx="2" ry="2" /> 441 <text text-anchor="" x="906.95" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 442 </g> 443 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 444 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="143.3" y="385" width="0.5" height="15.0" fill="rgb(206,7,16)" rx="2" ry="2" /> 445 <text text-anchor="" x="146.32" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 446 </g> 447 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 448 <title>runtime.gcAssistAlloc (48 samples, 2.02%)</title><rect x="178.6" y="449" width="23.9" height="15.0" fill="rgb(250,214,34)" rx="2" ry="2" /> 449 <text text-anchor="" x="181.64" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 450 </g> 451 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 452 <title>runtime.markroot (10 samples, 0.42%)</title><rect x="1166.6" y="481" width="5.0" height="15.0" fill="rgb(209,120,29)" rx="2" ry="2" /> 453 <text text-anchor="" x="1169.62" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 454 </g> 455 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 456 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).MeasureSince (2 samples, 0.08%)</title><rect x="60.7" y="513" width="1.0" height="15.0" fill="rgb(254,113,18)" rx="2" ry="2" /> 457 <text text-anchor="" x="63.74" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 458 </g> 459 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 460 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="730.8" y="353" width="0.5" height="15.0" fill="rgb(254,80,40)" rx="2" ry="2" /> 461 <text text-anchor="" x="733.83" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 462 </g> 463 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 464 <title>runtime.mallocgc (8 samples, 0.34%)</title><rect x="258.7" y="481" width="4.0" height="15.0" fill="rgb(205,221,7)" rx="2" ry="2" /> 465 <text text-anchor="" x="261.74" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 466 </g> 467 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 468 <title>runtime.(*mcache).nextFree (6 samples, 0.25%)</title><rect x="786.6" y="321" width="2.9" height="15.0" fill="rgb(217,116,39)" rx="2" ry="2" /> 469 <text text-anchor="" x="789.55" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 470 </g> 471 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 472 <title>runtime.injectglist (7 samples, 0.30%)</title><rect x="1153.7" y="529" width="3.5" height="15.0" fill="rgb(242,27,33)" rx="2" ry="2" /> 473 <text text-anchor="" x="1156.68" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 474 </g> 475 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 476 <title>runtime.newobject (5 samples, 0.21%)</title><rect x="731.3" y="369" width="2.5" height="15.0" fill="rgb(231,165,33)" rx="2" ry="2" /> 477 <text text-anchor="" x="734.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 478 </g> 479 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 480 <title>runtime.stringtoslicebyte (4 samples, 0.17%)</title><rect x="641.8" y="193" width="2.0" height="15.0" fill="rgb(218,88,8)" rx="2" ry="2" /> 481 <text text-anchor="" x="644.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 482 </g> 483 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 484 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="270.2" y="481" width="1.0" height="15.0" fill="rgb(207,129,43)" rx="2" ry="2" /> 485 <text text-anchor="" x="273.18" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 486 </g> 487 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 488 <title>runtime.mapdelete (2 samples, 0.08%)</title><rect x="122.4" y="465" width="1.0" height="15.0" fill="rgb(247,102,0)" rx="2" ry="2" /> 489 <text text-anchor="" x="125.43" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 490 </g> 491 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 492 <title>sync.(*Pool).pin (3 samples, 0.13%)</title><rect x="906.4" y="401" width="1.5" height="15.0" fill="rgb(236,2,1)" rx="2" ry="2" /> 493 <text text-anchor="" x="909.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 494 </g> 495 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 496 <title>runtime.gcAssistAlloc.func1 (2 samples, 0.08%)</title><rect x="992.0" y="401" width="1.0" height="15.0" fill="rgb(212,90,46)" rx="2" ry="2" /> 497 <text text-anchor="" x="995.01" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 498 </g> 499 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 500 <title>runtime.casgstatus (1 samples, 0.04%)</title><rect x="1180.5" y="497" width="0.5" height="15.0" fill="rgb(245,206,10)" rx="2" ry="2" /> 501 <text text-anchor="" x="1183.55" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 502 </g> 503 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 504 <title>sync.(*RWMutex).Unlock (4 samples, 0.17%)</title><rect x="1038.3" y="449" width="2.0" height="15.0" fill="rgb(253,178,54)" rx="2" ry="2" /> 505 <text text-anchor="" x="1041.27" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 506 </g> 507 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 508 <title>runtime.newarray (4 samples, 0.17%)</title><rect x="1005.4" y="433" width="2.0" height="15.0" fill="rgb(232,215,8)" rx="2" ry="2" /> 509 <text text-anchor="" x="1008.44" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 510 </g> 511 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 512 <title>runtime.mapaccess2_faststr (1 samples, 0.04%)</title><rect x="643.8" y="209" width="0.5" height="15.0" fill="rgb(224,223,46)" rx="2" ry="2" /> 513 <text text-anchor="" x="646.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 514 </g> 515 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 516 <title>runtime.updatememstats (1 samples, 0.04%)</title><rect x="59.7" y="481" width="0.5" height="15.0" fill="rgb(245,115,37)" rx="2" ry="2" /> 517 <text text-anchor="" x="62.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 518 </g> 519 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 520 <title>runtime.mapassign1 (5 samples, 0.21%)</title><rect x="777.6" y="369" width="2.5" height="15.0" fill="rgb(233,225,41)" rx="2" ry="2" /> 521 <text text-anchor="" x="780.60" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 522 </g> 523 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 524 <title>github.com/hashicorp/consul/command/agent.parseWait (22 samples, 0.93%)</title><rect x="793.5" y="433" width="11.0" height="15.0" fill="rgb(223,59,18)" rx="2" ry="2" /> 525 <text text-anchor="" x="796.52" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 526 </g> 527 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 528 <title>runtime.(*mspan).refillAllocCache (1 samples, 0.04%)</title><rect x="749.2" y="305" width="0.5" height="15.0" fill="rgb(238,109,50)" rx="2" ry="2" /> 529 <text text-anchor="" x="752.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 530 </g> 531 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 532 <title>net/http.HandlerFunc.ServeHTTP (1,071 samples, 45.15%)</title><rect x="517.4" y="529" width="532.8" height="15.0" fill="rgb(249,76,32)" rx="2" ry="2" /> 533 <text text-anchor="" x="520.42" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.HandlerFunc.ServeHTTP</text> 534 </g> 535 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 536 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="104.5" y="497" width="0.5" height="15.0" fill="rgb(250,205,24)" rx="2" ry="2" /> 537 <text text-anchor="" x="107.52" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 538 </g> 539 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 540 <title>runtime.gcDrain (2 samples, 0.08%)</title><rect x="1174.6" y="497" width="1.0" height="15.0" fill="rgb(235,37,15)" rx="2" ry="2" /> 541 <text text-anchor="" x="1177.58" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 542 </g> 543 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 544 <title>sync.(*RWMutex).RLock (1 samples, 0.04%)</title><rect x="333.4" y="465" width="0.5" height="15.0" fill="rgb(205,97,19)" rx="2" ry="2" /> 545 <text text-anchor="" x="336.36" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 546 </g> 547 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 548 <title>syscall.write (2 samples, 0.08%)</title><rect x="64.7" y="385" width="1.0" height="15.0" fill="rgb(206,66,6)" rx="2" ry="2" /> 549 <text text-anchor="" x="67.72" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 550 </g> 551 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 552 <title>runtime.writebarrierptr (10 samples, 0.42%)</title><rect x="506.0" y="465" width="5.0" height="15.0" fill="rgb(227,14,28)" rx="2" ry="2" /> 553 <text text-anchor="" x="508.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 554 </g> 555 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 556 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="1045.2" y="465" width="0.5" height="15.0" fill="rgb(217,183,28)" rx="2" ry="2" /> 557 <text text-anchor="" x="1048.24" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 558 </g> 559 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 560 <title>reflect.typedmemmove (1 samples, 0.04%)</title><rect x="538.8" y="337" width="0.5" height="15.0" fill="rgb(231,186,30)" rx="2" ry="2" /> 561 <text text-anchor="" x="541.81" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 562 </g> 563 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 564 <title>net/rpc.(*Server).readRequestHeader (29 samples, 1.22%)</title><rect x="539.8" y="369" width="14.4" height="15.0" fill="rgb(207,215,42)" rx="2" ry="2" /> 565 <text text-anchor="" x="542.81" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 566 </g> 567 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 568 <title>sync/atomic.AddUint32 (2 samples, 0.08%)</title><rect x="512.4" y="481" width="1.0" height="15.0" fill="rgb(241,180,43)" rx="2" ry="2" /> 569 <text text-anchor="" x="515.45" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 570 </g> 571 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 572 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="265.7" y="513" width="0.5" height="15.0" fill="rgb(217,59,32)" rx="2" ry="2" /> 573 <text text-anchor="" x="268.70" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 574 </g> 575 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 576 <title>runtime.mallocgc (12 samples, 0.51%)</title><rect x="877.6" y="385" width="6.0" height="15.0" fill="rgb(226,33,30)" rx="2" ry="2" /> 577 <text text-anchor="" x="880.59" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 578 </g> 579 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 580 <title>context.WithCancel (26 samples, 1.10%)</title><rect x="84.6" y="545" width="13.0" height="15.0" fill="rgb(236,116,0)" rx="2" ry="2" /> 581 <text text-anchor="" x="87.62" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 582 </g> 583 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 584 <title>net/textproto.(*Reader).readLineSlice (5 samples, 0.21%)</title><rect x="209.0" y="497" width="2.5" height="15.0" fill="rgb(217,160,6)" rx="2" ry="2" /> 585 <text text-anchor="" x="211.99" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 586 </g> 587 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 588 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="723.9" y="353" width="0.5" height="15.0" fill="rgb(205,36,4)" rx="2" ry="2" /> 589 <text text-anchor="" x="726.87" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 590 </g> 591 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 592 <title>runtime.newstack (11 samples, 0.46%)</title><rect x="1179.1" y="577" width="5.4" height="15.0" fill="rgb(222,2,48)" rx="2" ry="2" /> 593 <text text-anchor="" x="1182.06" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 594 </g> 595 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 596 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="734.8" y="257" width="0.5" height="15.0" fill="rgb(246,113,20)" rx="2" ry="2" /> 597 <text text-anchor="" x="737.81" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 598 </g> 599 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 600 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="839.8" y="209" width="0.5" height="15.0" fill="rgb(247,83,12)" rx="2" ry="2" /> 601 <text text-anchor="" x="842.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 602 </g> 603 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 604 <title>runtime.(*mcache).nextFree (4 samples, 0.17%)</title><rect x="240.8" y="465" width="2.0" height="15.0" fill="rgb(206,144,0)" rx="2" ry="2" /> 605 <text text-anchor="" x="243.83" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 606 </g> 607 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 608 <title>runtime.shade (1 samples, 0.04%)</title><rect x="102.0" y="465" width="0.5" height="15.0" fill="rgb(223,129,11)" rx="2" ry="2" /> 609 <text text-anchor="" x="105.03" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 610 </g> 611 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 612 <title>syscall.Syscall (2 samples, 0.08%)</title><rect x="63.2" y="385" width="1.0" height="15.0" fill="rgb(249,39,19)" rx="2" ry="2" /> 613 <text text-anchor="" x="66.23" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 614 </g> 615 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 616 <title>net/url.unescape (1 samples, 0.04%)</title><rect x="999.5" y="433" width="0.5" height="15.0" fill="rgb(219,71,18)" rx="2" ry="2" /> 617 <text text-anchor="" x="1002.47" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 618 </g> 619 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 620 <title>runtime.pcvalue (1 samples, 0.04%)</title><rect x="1170.6" y="337" width="0.5" height="15.0" fill="rgb(215,141,45)" rx="2" ry="2" /> 621 <text text-anchor="" x="1173.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 622 </g> 623 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 624 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*netPipeline).AppendEntries (2 samples, 0.08%)</title><rect x="64.7" y="497" width="1.0" height="15.0" fill="rgb(222,153,6)" rx="2" ry="2" /> 625 <text text-anchor="" x="67.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 626 </g> 627 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 628 <title>github.com/hashicorp/consul/consul.(*inmemCodec).WriteResponse (8 samples, 0.34%)</title><rect x="567.2" y="353" width="3.9" height="15.0" fill="rgb(239,57,42)" rx="2" ry="2" /> 629 <text text-anchor="" x="570.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 630 </g> 631 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 632 <title>github.com/hashicorp/consul/vendor/github.com/miekg/dns.(*Server).readUDP (1 samples, 0.04%)</title><rect x="59.2" y="513" width="0.5" height="15.0" fill="rgb(236,221,0)" rx="2" ry="2" /> 633 <text text-anchor="" x="62.25" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 634 </g> 635 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 636 <title>net.(*pollDesc).prepareWrite (2 samples, 0.08%)</title><rect x="344.8" y="465" width="1.0" height="15.0" fill="rgb(229,97,3)" rx="2" ry="2" /> 637 <text text-anchor="" x="347.80" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 638 </g> 639 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 640 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="696.0" y="273" width="0.5" height="15.0" fill="rgb(245,70,22)" rx="2" ry="2" /> 641 <text text-anchor="" x="699.01" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 642 </g> 643 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 644 <title>runtime.memeqbody (3 samples, 0.13%)</title><rect x="219.9" y="481" width="1.5" height="15.0" fill="rgb(219,4,51)" rx="2" ry="2" /> 645 <text text-anchor="" x="222.93" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 646 </g> 647 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 648 <title>runtime.(*mSpanList).remove (1 samples, 0.04%)</title><rect x="991.5" y="353" width="0.5" height="15.0" fill="rgb(208,21,31)" rx="2" ry="2" /> 649 <text text-anchor="" x="994.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 650 </g> 651 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 652 <title>reflect.(*rtype).common (2 samples, 0.08%)</title><rect x="556.7" y="353" width="1.0" height="15.0" fill="rgb(212,172,51)" rx="2" ry="2" /> 653 <text text-anchor="" x="559.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 654 </g> 655 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 656 <title>runtime.futexsleep (5 samples, 0.21%)</title><rect x="1172.1" y="497" width="2.5" height="15.0" fill="rgb(218,216,8)" rx="2" ry="2" /> 657 <text text-anchor="" x="1175.09" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 658 </g> 659 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 660 <title>runtime.concatstrings (2 samples, 0.08%)</title><rect x="646.8" y="193" width="1.0" height="15.0" fill="rgb(223,137,49)" rx="2" ry="2" /> 661 <text text-anchor="" x="649.76" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 662 </g> 663 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 664 <title>net/http.(*response).Write (51 samples, 2.15%)</title><rect x="950.2" y="481" width="25.4" height="15.0" fill="rgb(212,145,20)" rx="2" ry="2" /> 665 <text text-anchor="" x="953.22" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text> 666 </g> 667 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 668 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/logutils.(*LevelFilter).Check (8 samples, 0.34%)</title><rect x="923.4" y="401" width="3.9" height="15.0" fill="rgb(238,146,14)" rx="2" ry="2" /> 669 <text text-anchor="" x="926.36" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 670 </g> 671 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 672 <title>time.Time.Truncate (2 samples, 0.08%)</title><rect x="1032.3" y="433" width="1.0" height="15.0" fill="rgb(205,177,17)" rx="2" ry="2" /> 673 <text text-anchor="" x="1035.30" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 674 </g> 675 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 676 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="313.5" y="385" width="0.5" height="15.0" fill="rgb(220,7,47)" rx="2" ry="2" /> 677 <text text-anchor="" x="316.46" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 678 </g> 679 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 680 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="258.7" y="465" width="0.5" height="15.0" fill="rgb(226,116,10)" rx="2" ry="2" /> 681 <text text-anchor="" x="261.74" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 682 </g> 683 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 684 <title>runtime.shade (1 samples, 0.04%)</title><rect x="790.5" y="289" width="0.5" height="15.0" fill="rgb(225,60,8)" rx="2" ry="2" /> 685 <text text-anchor="" x="793.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 686 </g> 687 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 688 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="93.1" y="465" width="0.5" height="15.0" fill="rgb(209,68,6)" rx="2" ry="2" /> 689 <text text-anchor="" x="96.08" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 690 </g> 691 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 692 <title>runtime.(*mcache).refill (4 samples, 0.17%)</title><rect x="786.6" y="273" width="1.9" height="15.0" fill="rgb(205,193,40)" rx="2" ry="2" /> 693 <text text-anchor="" x="789.55" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 694 </g> 695 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 696 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="730.8" y="273" width="0.5" height="15.0" fill="rgb(227,139,54)" rx="2" ry="2" /> 697 <text text-anchor="" x="733.83" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 698 </g> 699 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 700 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="904.0" y="369" width="0.5" height="15.0" fill="rgb(230,147,6)" rx="2" ry="2" /> 701 <text text-anchor="" x="906.95" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 702 </g> 703 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 704 <title>runtime.unlock (1 samples, 0.04%)</title><rect x="104.5" y="369" width="0.5" height="15.0" fill="rgb(232,65,1)" rx="2" ry="2" /> 705 <text text-anchor="" x="107.52" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 706 </g> 707 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 708 <title>runtime.gcBgMarkWorker (156 samples, 6.58%)</title><rect x="1060.7" y="577" width="77.6" height="15.0" fill="rgb(246,24,12)" rx="2" ry="2" /> 709 <text text-anchor="" x="1063.66" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime...</text> 710 </g> 711 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 712 <title>runtime.deferproc.func1 (1 samples, 0.04%)</title><rect x="917.9" y="369" width="0.5" height="15.0" fill="rgb(211,85,12)" rx="2" ry="2" /> 713 <text text-anchor="" x="920.88" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 714 </g> 715 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 716 <title>runtime.mallocgc (4 samples, 0.17%)</title><rect x="1011.9" y="433" width="2.0" height="15.0" fill="rgb(254,100,31)" rx="2" ry="2" /> 717 <text text-anchor="" x="1014.91" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 718 </g> 719 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 720 <title>net/url.unescape (3 samples, 0.13%)</title><rect x="773.1" y="353" width="1.5" height="15.0" fill="rgb(217,66,33)" rx="2" ry="2" /> 721 <text text-anchor="" x="776.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 722 </g> 723 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 724 <title>runtime.mProf_Malloc (1 samples, 0.04%)</title><rect x="883.1" y="353" width="0.5" height="15.0" fill="rgb(214,202,11)" rx="2" ry="2" /> 725 <text text-anchor="" x="886.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 726 </g> 727 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 728 <title>runtime.rawstring (9 samples, 0.38%)</title><rect x="994.0" y="433" width="4.5" height="15.0" fill="rgb(221,65,41)" rx="2" ry="2" /> 729 <text text-anchor="" x="997.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 730 </g> 731 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 732 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="561.7" y="273" width="0.5" height="15.0" fill="rgb(206,16,11)" rx="2" ry="2" /> 733 <text text-anchor="" x="564.69" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 734 </g> 735 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 736 <title>bufio.(*Reader).Peek (2 samples, 0.08%)</title><rect x="208.0" y="497" width="1.0" height="15.0" fill="rgb(208,134,37)" rx="2" ry="2" /> 737 <text text-anchor="" x="210.99" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 738 </g> 739 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 740 <title>runtime.growslice (9 samples, 0.38%)</title><rect x="1040.3" y="465" width="4.4" height="15.0" fill="rgb(233,26,16)" rx="2" ry="2" /> 741 <text text-anchor="" x="1043.26" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 742 </g> 743 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 744 <title>runtime.gcAssistAlloc (3 samples, 0.13%)</title><rect x="909.4" y="337" width="1.5" height="15.0" fill="rgb(221,12,34)" rx="2" ry="2" /> 745 <text text-anchor="" x="912.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 746 </g> 747 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 748 <title>runtime.growslice (1 samples, 0.04%)</title><rect x="785.6" y="369" width="0.5" height="15.0" fill="rgb(223,155,6)" rx="2" ry="2" /> 749 <text text-anchor="" x="788.56" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 750 </g> 751 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 752 <title>runtime._System (99 samples, 4.17%)</title><rect x="10.0" y="593" width="49.2" height="15.0" fill="rgb(210,51,5)" rx="2" ry="2" /> 753 <text text-anchor="" x="13.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runt..</text> 754 </g> 755 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 756 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="992.0" y="417" width="1.0" height="15.0" fill="rgb(205,111,52)" rx="2" ry="2" /> 757 <text text-anchor="" x="995.01" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 758 </g> 759 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 760 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="639.8" y="193" width="0.5" height="15.0" fill="rgb(246,205,27)" rx="2" ry="2" /> 761 <text text-anchor="" x="642.80" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 762 </g> 763 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 764 <title>runtime.flushallmcaches (2 samples, 0.08%)</title><rect x="1166.6" y="465" width="1.0" height="15.0" fill="rgb(223,133,51)" rx="2" ry="2" /> 765 <text text-anchor="" x="1169.62" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 766 </g> 767 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 768 <title>net/url.(*URL).Query (16 samples, 0.67%)</title><rect x="785.1" y="417" width="7.9" height="15.0" fill="rgb(209,207,32)" rx="2" ry="2" /> 769 <text text-anchor="" x="788.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 770 </g> 771 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 772 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="271.2" y="481" width="0.5" height="15.0" fill="rgb(210,98,33)" rx="2" ry="2" /> 773 <text text-anchor="" x="274.17" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 774 </g> 775 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 776 <title>runtime.newobject (2 samples, 0.08%)</title><rect x="748.7" y="417" width="1.0" height="15.0" fill="rgb(221,113,39)" rx="2" ry="2" /> 777 <text text-anchor="" x="751.74" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 778 </g> 779 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 780 <title>runtime.shade (1 samples, 0.04%)</title><rect x="313.5" y="353" width="0.5" height="15.0" fill="rgb(231,60,4)" rx="2" ry="2" /> 781 <text text-anchor="" x="316.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 782 </g> 783 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 784 <title>runtime.freedefer (1 samples, 0.04%)</title><rect x="1029.8" y="369" width="0.5" height="15.0" fill="rgb(211,154,25)" rx="2" ry="2" /> 785 <text text-anchor="" x="1032.81" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 786 </g> 787 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 788 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="104.5" y="401" width="0.5" height="15.0" fill="rgb(210,18,34)" rx="2" ry="2" /> 789 <text text-anchor="" x="107.52" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 790 </g> 791 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 792 <title>net.(*UDPConn).writeTo (1 samples, 0.04%)</title><rect x="62.2" y="449" width="0.5" height="15.0" fill="rgb(213,229,4)" rx="2" ry="2" /> 793 <text text-anchor="" x="65.23" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 794 </g> 795 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 796 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="933.3" y="337" width="0.5" height="15.0" fill="rgb(241,72,54)" rx="2" ry="2" /> 797 <text text-anchor="" x="936.31" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 798 </g> 799 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 800 <title>strings.Replace (3 samples, 0.13%)</title><rect x="677.6" y="225" width="1.5" height="15.0" fill="rgb(231,215,26)" rx="2" ry="2" /> 801 <text text-anchor="" x="680.61" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 802 </g> 803 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 804 <title>runtime.typedmemmove (2 samples, 0.08%)</title><rect x="569.7" y="305" width="0.9" height="15.0" fill="rgb(246,127,37)" rx="2" ry="2" /> 805 <text text-anchor="" x="572.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 806 </g> 807 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 808 <title>runtime.typedmemmove (11 samples, 0.46%)</title><rect x="942.8" y="449" width="5.4" height="15.0" fill="rgb(230,47,49)" rx="2" ry="2" /> 809 <text text-anchor="" x="945.76" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 810 </g> 811 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 812 <title>runtime.pcvalue (1 samples, 0.04%)</title><rect x="1137.3" y="433" width="0.5" height="15.0" fill="rgb(208,89,39)" rx="2" ry="2" /> 813 <text text-anchor="" x="1140.27" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 814 </g> 815 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 816 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="660.7" y="193" width="0.5" height="15.0" fill="rgb(217,92,46)" rx="2" ry="2" /> 817 <text text-anchor="" x="663.69" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 818 </g> 819 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 820 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="243.3" y="401" width="0.5" height="15.0" fill="rgb(223,36,7)" rx="2" ry="2" /> 821 <text text-anchor="" x="246.31" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 822 </g> 823 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 824 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="796.0" y="353" width="1.5" height="15.0" fill="rgb(218,8,14)" rx="2" ry="2" /> 825 <text text-anchor="" x="799.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 826 </g> 827 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 828 <title>sync/atomic.AddUint32 (3 samples, 0.13%)</title><rect x="864.2" y="369" width="1.4" height="15.0" fill="rgb(248,124,1)" rx="2" ry="2" /> 829 <text text-anchor="" x="867.16" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 830 </g> 831 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 832 <title>runtime.(*mheap).reclaim (1 samples, 0.04%)</title><rect x="881.1" y="305" width="0.5" height="15.0" fill="rgb(220,54,19)" rx="2" ry="2" /> 833 <text text-anchor="" x="884.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 834 </g> 835 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 836 <title>runtime.lock (1 samples, 0.04%)</title><rect x="1153.7" y="497" width="0.5" height="15.0" fill="rgb(213,203,39)" rx="2" ry="2" /> 837 <text text-anchor="" x="1156.68" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 838 </g> 839 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 840 <title>net/http.(*response).bodyAllowed (1 samples, 0.04%)</title><rect x="975.1" y="449" width="0.5" height="15.0" fill="rgb(236,208,19)" rx="2" ry="2" /> 841 <text text-anchor="" x="978.09" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 842 </g> 843 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 844 <title>runtime.freedefer (1 samples, 0.04%)</title><rect x="143.3" y="353" width="0.5" height="15.0" fill="rgb(232,34,1)" rx="2" ry="2" /> 845 <text text-anchor="" x="146.32" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 846 </g> 847 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 848 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="902.5" y="305" width="0.5" height="15.0" fill="rgb(226,11,30)" rx="2" ry="2" /> 849 <text text-anchor="" x="905.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 850 </g> 851 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 852 <title>sync.runtime_procPin (1 samples, 0.04%)</title><rect x="907.4" y="385" width="0.5" height="15.0" fill="rgb(238,14,33)" rx="2" ry="2" /> 853 <text text-anchor="" x="910.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 854 </g> 855 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 856 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="1006.9" y="289" width="0.5" height="15.0" fill="rgb(209,8,37)" rx="2" ry="2" /> 857 <text text-anchor="" x="1009.93" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 858 </g> 859 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 860 <title>context.propagateCancel (10 samples, 0.42%)</title><rect x="85.1" y="529" width="5.0" height="15.0" fill="rgb(215,227,11)" rx="2" ry="2" /> 861 <text text-anchor="" x="88.12" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 862 </g> 863 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 864 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).decode (1 samples, 0.04%)</title><rect x="60.2" y="497" width="0.5" height="15.0" fill="rgb(245,100,30)" rx="2" ry="2" /> 865 <text text-anchor="" x="63.24" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 866 </g> 867 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 868 <title>runtime.mapassign1 (15 samples, 0.63%)</title><rect x="963.2" y="417" width="7.4" height="15.0" fill="rgb(222,133,7)" rx="2" ry="2" /> 869 <text text-anchor="" x="966.15" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 870 </g> 871 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 872 <title>time.fmtInt (1 samples, 0.04%)</title><rect x="903.5" y="353" width="0.5" height="15.0" fill="rgb(237,174,45)" rx="2" ry="2" /> 873 <text text-anchor="" x="906.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 874 </g> 875 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 876 <title>runtime.rawstring (3 samples, 0.13%)</title><rect x="722.4" y="305" width="1.5" height="15.0" fill="rgb(220,37,22)" rx="2" ry="2" /> 877 <text text-anchor="" x="725.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 878 </g> 879 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 880 <title>runtime.(*mcache).nextFree.func1 (1 samples, 0.04%)</title><rect x="749.2" y="353" width="0.5" height="15.0" fill="rgb(221,47,8)" rx="2" ry="2" /> 881 <text text-anchor="" x="752.24" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 882 </g> 883 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 884 <title>runtime.gcAssistAlloc.func1 (5 samples, 0.21%)</title><rect x="259.7" y="433" width="2.5" height="15.0" fill="rgb(207,156,39)" rx="2" ry="2" /> 885 <text text-anchor="" x="262.73" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 886 </g> 887 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 888 <title>net/url.(*URL).Query (20 samples, 0.84%)</title><rect x="804.5" y="449" width="9.9" height="15.0" fill="rgb(216,42,15)" rx="2" ry="2" /> 889 <text text-anchor="" x="807.46" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 890 </g> 891 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 892 <title>net/http.(*conn).hijacked (12 samples, 0.51%)</title><rect x="98.5" y="545" width="6.0" height="15.0" fill="rgb(246,46,34)" rx="2" ry="2" /> 893 <text text-anchor="" x="101.55" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 894 </g> 895 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 896 <title>runtime.pcvalue (1 samples, 0.04%)</title><rect x="1138.8" y="369" width="0.5" height="15.0" fill="rgb(205,98,39)" rx="2" ry="2" /> 897 <text text-anchor="" x="1141.76" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 898 </g> 899 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 900 <title>runtime.futex (1 samples, 0.04%)</title><rect x="1175.6" y="481" width="0.5" height="15.0" fill="rgb(238,82,51)" rx="2" ry="2" /> 901 <text text-anchor="" x="1178.57" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 902 </g> 903 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 904 <title>net/http.(*response).write (48 samples, 2.02%)</title><rect x="951.7" y="465" width="23.9" height="15.0" fill="rgb(254,25,46)" rx="2" ry="2" /> 905 <text text-anchor="" x="954.71" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text> 906 </g> 907 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 908 <title>github.com/hashicorp/consul/command/agent.(*Agent).RPC (347 samples, 14.63%)</title><rect x="530.9" y="433" width="172.6" height="15.0" fill="rgb(228,205,35)" rx="2" ry="2" /> 909 <text text-anchor="" x="533.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/hashicorp/c..</text> 910 </g> 911 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 912 <title>sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%)</title><rect x="922.9" y="385" width="0.5" height="15.0" fill="rgb(254,26,5)" rx="2" ry="2" /> 913 <text text-anchor="" x="925.86" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 914 </g> 915 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 916 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="750.2" y="401" width="0.5" height="15.0" fill="rgb(211,98,20)" rx="2" ry="2" /> 917 <text text-anchor="" x="753.24" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 918 </g> 919 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 920 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).IncrCounter (45 samples, 1.90%)</title><rect x="666.2" y="273" width="22.3" height="15.0" fill="rgb(224,193,46)" rx="2" ry="2" /> 921 <text text-anchor="" x="669.16" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g..</text> 922 </g> 923 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 924 <title>runtime.aeshashbody (2 samples, 0.08%)</title><rect x="966.1" y="401" width="1.0" height="15.0" fill="rgb(208,9,17)" rx="2" ry="2" /> 925 <text text-anchor="" x="969.14" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 926 </g> 927 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 928 <title>runtime.newobject (3 samples, 0.13%)</title><rect x="867.1" y="449" width="1.5" height="15.0" fill="rgb(235,79,1)" rx="2" ry="2" /> 929 <text text-anchor="" x="870.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 930 </g> 931 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 932 <title>runtime.mallocgc (10 samples, 0.42%)</title><rect x="268.7" y="513" width="5.0" height="15.0" fill="rgb(210,102,28)" rx="2" ry="2" /> 933 <text text-anchor="" x="271.68" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 934 </g> 935 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 936 <title>runtime.slicebytetostring (2 samples, 0.08%)</title><rect x="902.0" y="353" width="1.0" height="15.0" fill="rgb(206,23,24)" rx="2" ry="2" /> 937 <text text-anchor="" x="904.96" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 938 </g> 939 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 940 <title>runtime.mapiterinit (3 samples, 0.13%)</title><rect x="919.4" y="401" width="1.5" height="15.0" fill="rgb(217,176,12)" rx="2" ry="2" /> 941 <text text-anchor="" x="922.38" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 942 </g> 943 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 944 <title>runtime.memhash128 (2 samples, 0.08%)</title><rect x="589.6" y="305" width="0.9" height="15.0" fill="rgb(209,229,32)" rx="2" ry="2" /> 945 <text text-anchor="" x="592.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 946 </g> 947 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 948 <title>runtime.interequal (3 samples, 0.13%)</title><rect x="71.7" y="497" width="1.5" height="15.0" fill="rgb(219,89,13)" rx="2" ry="2" /> 949 <text text-anchor="" x="74.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 950 </g> 951 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 952 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="1045.2" y="481" width="1.0" height="15.0" fill="rgb(220,83,38)" rx="2" ry="2" /> 953 <text text-anchor="" x="1048.24" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 954 </g> 955 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 956 <title>runtime.mallocgc (4 samples, 0.17%)</title><rect x="817.4" y="433" width="2.0" height="15.0" fill="rgb(223,69,6)" rx="2" ry="2" /> 957 <text text-anchor="" x="820.39" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 958 </g> 959 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 960 <title>net/textproto.CanonicalMIMEHeaderKey (2 samples, 0.08%)</title><rect x="976.1" y="449" width="1.0" height="15.0" fill="rgb(239,121,41)" rx="2" ry="2" /> 961 <text text-anchor="" x="979.09" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 962 </g> 963 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 964 <title>net/url.ParseQuery (22 samples, 0.93%)</title><rect x="773.1" y="401" width="11.0" height="15.0" fill="rgb(215,27,25)" rx="2" ry="2" /> 965 <text text-anchor="" x="776.12" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 966 </g> 967 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 968 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="724.4" y="353" width="0.5" height="15.0" fill="rgb(224,116,33)" rx="2" ry="2" /> 969 <text text-anchor="" x="727.37" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 970 </g> 971 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 972 <title>runtime.newobject (4 samples, 0.17%)</title><rect x="1011.9" y="449" width="2.0" height="15.0" fill="rgb(206,122,39)" rx="2" ry="2" /> 973 <text text-anchor="" x="1014.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 974 </g> 975 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 976 <title>runtime.typedmemmove (2 samples, 0.08%)</title><rect x="245.8" y="497" width="1.0" height="15.0" fill="rgb(219,97,41)" rx="2" ry="2" /> 977 <text text-anchor="" x="248.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 978 </g> 979 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 980 <title>net/http.(*chunkWriter).Write (90 samples, 3.79%)</title><rect x="294.1" y="513" width="44.7" height="15.0" fill="rgb(210,121,38)" rx="2" ry="2" /> 981 <text text-anchor="" x="297.06" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/..</text> 982 </g> 983 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 984 <title>runtime.readmemstats_m (1 samples, 0.04%)</title><rect x="59.7" y="497" width="0.5" height="15.0" fill="rgb(219,59,48)" rx="2" ry="2" /> 985 <text text-anchor="" x="62.75" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 986 </g> 987 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 988 <title>runtime.freedefer (1 samples, 0.04%)</title><rect x="349.3" y="417" width="0.5" height="15.0" fill="rgb(220,35,23)" rx="2" ry="2" /> 989 <text text-anchor="" x="352.27" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 990 </g> 991 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 992 <title>runtime.(*mspan).nextFreeIndex (1 samples, 0.04%)</title><rect x="1046.7" y="449" width="0.5" height="15.0" fill="rgb(228,1,19)" rx="2" ry="2" /> 993 <text text-anchor="" x="1049.73" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 994 </g> 995 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 996 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*raftState).goFunc.func1 (2 samples, 0.08%)</title><rect x="64.7" y="577" width="1.0" height="15.0" fill="rgb(210,57,8)" rx="2" ry="2" /> 997 <text text-anchor="" x="67.72" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 998 </g> 999 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1000 <title>runtime.stringiter2 (5 samples, 0.21%)</title><rect x="780.1" y="353" width="2.5" height="15.0" fill="rgb(218,3,43)" rx="2" ry="2" /> 1001 <text text-anchor="" x="783.08" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1002 </g> 1003 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1004 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="866.1" y="417" width="0.5" height="15.0" fill="rgb(215,38,3)" rx="2" ry="2" /> 1005 <text text-anchor="" x="869.15" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1006 </g> 1007 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1008 <title>fmt.(*pp).doPrintf (32 samples, 1.35%)</title><rect x="890.0" y="433" width="15.9" height="15.0" fill="rgb(241,140,16)" rx="2" ry="2" /> 1009 <text text-anchor="" x="893.03" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1010 </g> 1011 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1012 <title>runtime.rawstring (56 samples, 2.36%)</title><rect x="174.7" y="481" width="27.8" height="15.0" fill="rgb(235,212,37)" rx="2" ry="2" /> 1013 <text text-anchor="" x="177.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 1014 </g> 1015 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1016 <title>time.Now (1 samples, 0.04%)</title><rect x="1138.3" y="545" width="0.5" height="15.0" fill="rgb(237,28,13)" rx="2" ry="2" /> 1017 <text text-anchor="" x="1141.26" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1018 </g> 1019 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1020 <title>runtime.slicebytetostring (7 samples, 0.30%)</title><rect x="674.1" y="209" width="3.5" height="15.0" fill="rgb(253,189,21)" rx="2" ry="2" /> 1021 <text text-anchor="" x="677.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1022 </g> 1023 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1024 <title>runtime.(*mheap).alloc_m (1 samples, 0.04%)</title><rect x="104.5" y="449" width="0.5" height="15.0" fill="rgb(222,46,53)" rx="2" ry="2" /> 1025 <text text-anchor="" x="107.52" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1026 </g> 1027 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1028 <title>net/textproto.MIMEHeader.Set (8 samples, 0.34%)</title><rect x="720.9" y="385" width="4.0" height="15.0" fill="rgb(219,172,0)" rx="2" ry="2" /> 1029 <text text-anchor="" x="723.89" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1030 </g> 1031 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1032 <title>runtime.(*mcentral).grow (4 samples, 0.17%)</title><rect x="807.9" y="273" width="2.0" height="15.0" fill="rgb(216,34,36)" rx="2" ry="2" /> 1033 <text text-anchor="" x="810.94" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1034 </g> 1035 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1036 <title>net.(*pollDesc).wait (6 samples, 0.25%)</title><rect x="138.8" y="385" width="3.0" height="15.0" fill="rgb(217,5,41)" rx="2" ry="2" /> 1037 <text text-anchor="" x="141.84" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1038 </g> 1039 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1040 <title>runtime.rawstringtmp (5 samples, 0.21%)</title><rect x="247.3" y="497" width="2.5" height="15.0" fill="rgb(238,124,48)" rx="2" ry="2" /> 1041 <text text-anchor="" x="250.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1042 </g> 1043 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1044 <title>net/http.(*ServeMux).handler (108 samples, 4.55%)</title><rect x="459.7" y="513" width="53.7" height="15.0" fill="rgb(245,127,7)" rx="2" ry="2" /> 1045 <text text-anchor="" x="462.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/h..</text> 1046 </g> 1047 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1048 <title>runtime.gcMarkTermination.func1 (1 samples, 0.04%)</title><rect x="1135.8" y="513" width="0.5" height="15.0" fill="rgb(252,20,3)" rx="2" ry="2" /> 1049 <text text-anchor="" x="1138.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1050 </g> 1051 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1052 <title>reflect.directlyAssignable (3 samples, 0.13%)</title><rect x="536.3" y="321" width="1.5" height="15.0" fill="rgb(241,155,40)" rx="2" ry="2" /> 1053 <text text-anchor="" x="539.32" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1054 </g> 1055 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1056 <title>net/url.QueryUnescape (2 samples, 0.08%)</title><rect x="872.6" y="417" width="1.0" height="15.0" fill="rgb(232,116,26)" rx="2" ry="2" /> 1057 <text text-anchor="" x="875.61" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1058 </g> 1059 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1060 <title>runtime.(*mcache).nextFree.func1 (3 samples, 0.13%)</title><rect x="739.3" y="305" width="1.5" height="15.0" fill="rgb(249,69,24)" rx="2" ry="2" /> 1061 <text text-anchor="" x="742.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1062 </g> 1063 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1064 <title>net/http.(*transferReader).fixTransferEncoding (4 samples, 0.17%)</title><rect x="118.9" y="513" width="2.0" height="15.0" fill="rgb(233,36,5)" rx="2" ry="2" /> 1065 <text text-anchor="" x="121.95" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1066 </g> 1067 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1068 <title>net/http.readRequest (333 samples, 14.04%)</title><rect x="108.5" y="545" width="165.7" height="15.0" fill="rgb(221,161,47)" rx="2" ry="2" /> 1069 <text text-anchor="" x="111.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.readRequest</text> 1070 </g> 1071 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1072 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="722.9" y="241" width="0.5" height="15.0" fill="rgb(205,18,18)" rx="2" ry="2" /> 1073 <text text-anchor="" x="725.88" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1074 </g> 1075 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1076 <title>runtime.deferreturn.func1 (2 samples, 0.08%)</title><rect x="348.8" y="433" width="1.0" height="15.0" fill="rgb(247,83,10)" rx="2" ry="2" /> 1077 <text text-anchor="" x="351.78" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1078 </g> 1079 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1080 <title>fmt.glob..func1 (3 samples, 0.13%)</title><rect x="909.4" y="385" width="1.5" height="15.0" fill="rgb(227,171,19)" rx="2" ry="2" /> 1081 <text text-anchor="" x="912.43" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1082 </g> 1083 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1084 <title>runtime.systemstack (71 samples, 2.99%)</title><rect x="1066.1" y="529" width="35.4" height="15.0" fill="rgb(248,118,12)" rx="2" ry="2" /> 1085 <text text-anchor="" x="1069.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 1086 </g> 1087 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1088 <title>runtime.gosweepone.func1 (1 samples, 0.04%)</title><rect x="715.4" y="289" width="0.5" height="15.0" fill="rgb(248,43,41)" rx="2" ry="2" /> 1089 <text text-anchor="" x="718.41" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1090 </g> 1091 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1092 <title>syscall.Write (208 samples, 8.77%)</title><rect x="350.3" y="465" width="103.4" height="15.0" fill="rgb(227,182,0)" rx="2" ry="2" /> 1093 <text text-anchor="" x="353.27" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syscall.Write</text> 1094 </g> 1095 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1096 <title>runtime.handoff (1 samples, 0.04%)</title><rect x="1060.7" y="529" width="0.5" height="15.0" fill="rgb(239,97,23)" rx="2" ry="2" /> 1097 <text text-anchor="" x="1063.66" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1098 </g> 1099 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1100 <title>runtime.makeslice (11 samples, 0.46%)</title><rect x="226.9" y="513" width="5.5" height="15.0" fill="rgb(241,81,49)" rx="2" ry="2" /> 1101 <text text-anchor="" x="229.90" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1102 </g> 1103 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1104 <title>net/url.(*URL).Query (37 samples, 1.56%)</title><rect x="868.6" y="465" width="18.4" height="15.0" fill="rgb(227,187,0)" rx="2" ry="2" /> 1105 <text text-anchor="" x="871.63" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1106 </g> 1107 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1108 <title>sync.(*Mutex).Unlock (1 samples, 0.04%)</title><rect x="574.6" y="353" width="0.5" height="15.0" fill="rgb(241,152,33)" rx="2" ry="2" /> 1109 <text text-anchor="" x="577.63" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1110 </g> 1111 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1112 <title>runtime.growslice (8 samples, 0.34%)</title><rect x="1000.0" y="449" width="3.9" height="15.0" fill="rgb(246,214,17)" rx="2" ry="2" /> 1113 <text text-anchor="" x="1002.97" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1114 </g> 1115 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1116 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1012.4" y="401" width="0.5" height="15.0" fill="rgb(242,120,12)" rx="2" ry="2" /> 1117 <text text-anchor="" x="1015.40" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1118 </g> 1119 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1120 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="246.8" y="497" width="0.5" height="15.0" fill="rgb(233,189,49)" rx="2" ry="2" /> 1121 <text text-anchor="" x="249.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1122 </g> 1123 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1124 <title>runtime.(*mcache).refill (1 samples, 0.04%)</title><rect x="749.2" y="337" width="0.5" height="15.0" fill="rgb(254,137,42)" rx="2" ry="2" /> 1125 <text text-anchor="" x="752.24" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1126 </g> 1127 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1128 <title>bufio.(*Reader).ReadLine (93 samples, 3.92%)</title><rect x="127.9" y="497" width="46.3" height="15.0" fill="rgb(214,38,9)" rx="2" ry="2" /> 1129 <text text-anchor="" x="130.90" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufi..</text> 1130 </g> 1131 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1132 <title>runtime.deferreturn (2 samples, 0.08%)</title><rect x="663.2" y="257" width="1.0" height="15.0" fill="rgb(224,227,5)" rx="2" ry="2" /> 1133 <text text-anchor="" x="666.18" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1134 </g> 1135 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1136 <title>runtime.gopreempt_m (7 samples, 0.30%)</title><rect x="1180.1" y="561" width="3.4" height="15.0" fill="rgb(223,95,7)" rx="2" ry="2" /> 1137 <text text-anchor="" x="1183.05" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1138 </g> 1139 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1140 <title>runtime.mapaccess2_faststr (1 samples, 0.04%)</title><rect x="337.3" y="481" width="0.5" height="15.0" fill="rgb(250,81,4)" rx="2" ry="2" /> 1141 <text text-anchor="" x="340.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1142 </g> 1143 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1144 <title>runtime.scanblock (1 samples, 0.04%)</title><rect x="1171.1" y="353" width="0.5" height="15.0" fill="rgb(250,18,37)" rx="2" ry="2" /> 1145 <text text-anchor="" x="1174.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1146 </g> 1147 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1148 <title>runtime.deferproc (1 samples, 0.04%)</title><rect x="141.8" y="401" width="0.5" height="15.0" fill="rgb(253,204,53)" rx="2" ry="2" /> 1149 <text text-anchor="" x="144.83" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1150 </g> 1151 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1152 <title>runtime.scanframeworker (1 samples, 0.04%)</title><rect x="1138.8" y="401" width="0.5" height="15.0" fill="rgb(208,208,50)" rx="2" ry="2" /> 1153 <text text-anchor="" x="1141.76" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1154 </g> 1155 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1156 <title>runtime.(*mcache).nextFree.func1 (4 samples, 0.17%)</title><rect x="807.9" y="321" width="2.0" height="15.0" fill="rgb(237,92,50)" rx="2" ry="2" /> 1157 <text text-anchor="" x="810.94" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1158 </g> 1159 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1160 <title>runtime.gcMarkDone (1 samples, 0.04%)</title><rect x="638.3" y="161" width="0.5" height="15.0" fill="rgb(223,157,10)" rx="2" ry="2" /> 1161 <text text-anchor="" x="641.31" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1162 </g> 1163 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1164 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="246.3" y="481" width="0.5" height="15.0" fill="rgb(236,110,41)" rx="2" ry="2" /> 1165 <text text-anchor="" x="249.30" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1166 </g> 1167 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1168 <title>runtime.(*mcentral).grow (1 samples, 0.04%)</title><rect x="1043.2" y="353" width="0.5" height="15.0" fill="rgb(244,132,39)" rx="2" ry="2" /> 1169 <text text-anchor="" x="1046.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1170 </g> 1171 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1172 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="970.1" y="385" width="0.5" height="15.0" fill="rgb(221,66,22)" rx="2" ry="2" /> 1173 <text text-anchor="" x="973.12" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1174 </g> 1175 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1176 <title>runtime.makechan (7 samples, 0.30%)</title><rect x="91.1" y="529" width="3.5" height="15.0" fill="rgb(223,144,10)" rx="2" ry="2" /> 1177 <text text-anchor="" x="94.09" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1178 </g> 1179 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1180 <title>runtime.newarray (7 samples, 0.30%)</title><rect x="763.2" y="353" width="3.5" height="15.0" fill="rgb(218,186,39)" rx="2" ry="2" /> 1181 <text text-anchor="" x="766.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1182 </g> 1183 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1184 <title>runtime.mapaccess2_faststr (6 samples, 0.25%)</title><rect x="814.4" y="449" width="3.0" height="15.0" fill="rgb(249,165,53)" rx="2" ry="2" /> 1185 <text text-anchor="" x="817.41" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1186 </g> 1187 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1188 <title>runtime.assertI2T2 (2 samples, 0.08%)</title><rect x="345.8" y="465" width="1.0" height="15.0" fill="rgb(252,125,19)" rx="2" ry="2" /> 1189 <text text-anchor="" x="348.79" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1190 </g> 1191 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1192 <title>runtime.gcMarkTermination (1 samples, 0.04%)</title><rect x="224.4" y="433" width="0.5" height="15.0" fill="rgb(235,167,48)" rx="2" ry="2" /> 1193 <text text-anchor="" x="227.41" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1194 </g> 1195 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1196 <title>strconv.AppendUint (2 samples, 0.08%)</title><rect x="855.7" y="273" width="1.0" height="15.0" fill="rgb(206,138,47)" rx="2" ry="2" /> 1197 <text text-anchor="" x="858.70" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1198 </g> 1199 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1200 <title>runtime.morestack (11 samples, 0.46%)</title><rect x="1179.1" y="593" width="5.4" height="15.0" fill="rgb(247,58,15)" rx="2" ry="2" /> 1201 <text text-anchor="" x="1182.06" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1202 </g> 1203 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1204 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="909.4" y="353" width="1.5" height="15.0" fill="rgb(221,226,12)" rx="2" ry="2" /> 1205 <text text-anchor="" x="912.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1206 </g> 1207 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1208 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="722.9" y="225" width="0.5" height="15.0" fill="rgb(230,86,31)" rx="2" ry="2" /> 1209 <text text-anchor="" x="725.88" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1210 </g> 1211 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1212 <title>runtime.systemstack (46 samples, 1.94%)</title><rect x="179.6" y="433" width="22.9" height="15.0" fill="rgb(247,220,41)" rx="2" ry="2" /> 1213 <text text-anchor="" x="182.64" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 1214 </g> 1215 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1216 <title>runtime.stopm (3 samples, 0.13%)</title><rect x="1174.6" y="529" width="1.5" height="15.0" fill="rgb(235,142,18)" rx="2" ry="2" /> 1217 <text text-anchor="" x="1177.58" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1218 </g> 1219 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1220 <title>runtime.markroot.func1 (71 samples, 2.99%)</title><rect x="1066.1" y="513" width="35.4" height="15.0" fill="rgb(210,148,11)" rx="2" ry="2" /> 1221 <text text-anchor="" x="1069.13" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 1222 </g> 1223 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1224 <title>runtime.gcMark (1 samples, 0.04%)</title><rect x="1135.8" y="497" width="0.5" height="15.0" fill="rgb(221,85,19)" rx="2" ry="2" /> 1225 <text text-anchor="" x="1138.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1226 </g> 1227 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1228 <title>context.(*cancelCtx).Done (3 samples, 0.13%)</title><rect x="85.1" y="513" width="1.5" height="15.0" fill="rgb(240,187,33)" rx="2" ry="2" /> 1229 <text text-anchor="" x="88.12" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1230 </g> 1231 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1232 <title>net.(*conn).Read (87 samples, 3.67%)</title><rect x="130.9" y="433" width="43.3" height="15.0" fill="rgb(245,204,49)" rx="2" ry="2" /> 1233 <text text-anchor="" x="133.89" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net...</text> 1234 </g> 1235 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1236 <title>runtime.deferreturn.func1 (1 samples, 0.04%)</title><rect x="266.7" y="497" width="0.5" height="15.0" fill="rgb(205,23,38)" rx="2" ry="2" /> 1237 <text text-anchor="" x="269.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1238 </g> 1239 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1240 <title>encoding/json.(*encodeState).reflectValue (83 samples, 3.50%)</title><rect x="824.4" y="433" width="41.2" height="15.0" fill="rgb(229,150,48)" rx="2" ry="2" /> 1241 <text text-anchor="" x="827.36" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >enc..</text> 1242 </g> 1243 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1244 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="662.2" y="241" width="1.0" height="15.0" fill="rgb(214,33,8)" rx="2" ry="2" /> 1245 <text text-anchor="" x="665.18" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1246 </g> 1247 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1248 <title>io/ioutil.(*nopCloser).Close (1 samples, 0.04%)</title><rect x="455.7" y="529" width="0.5" height="15.0" fill="rgb(216,32,41)" rx="2" ry="2" /> 1249 <text text-anchor="" x="458.73" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1250 </g> 1251 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1252 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="730.8" y="305" width="0.5" height="15.0" fill="rgb(217,25,42)" rx="2" ry="2" /> 1253 <text text-anchor="" x="733.83" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1254 </g> 1255 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1256 <title>runtime.(*gcWork).balance (1 samples, 0.04%)</title><rect x="1060.7" y="545" width="0.5" height="15.0" fill="rgb(238,33,54)" rx="2" ry="2" /> 1257 <text text-anchor="" x="1063.66" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1258 </g> 1259 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1260 <title>net/url.parse (29 samples, 1.22%)</title><rect x="250.8" y="513" width="14.4" height="15.0" fill="rgb(208,178,33)" rx="2" ry="2" /> 1261 <text text-anchor="" x="253.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1262 </g> 1263 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1264 <title>runtime/internal/atomic.Or8 (1 samples, 0.04%)</title><rect x="806.5" y="337" width="0.4" height="15.0" fill="rgb(236,172,31)" rx="2" ry="2" /> 1265 <text text-anchor="" x="809.45" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1266 </g> 1267 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1268 <title>bufio.(*Writer).Write (3 samples, 0.13%)</title><rect x="330.4" y="465" width="1.5" height="15.0" fill="rgb(239,113,23)" rx="2" ry="2" /> 1269 <text text-anchor="" x="333.37" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1270 </g> 1271 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1272 <title>runtime.deferreturn (3 samples, 0.13%)</title><rect x="1015.9" y="481" width="1.5" height="15.0" fill="rgb(240,174,34)" rx="2" ry="2" /> 1273 <text text-anchor="" x="1018.89" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1274 </g> 1275 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1276 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="649.2" y="209" width="1.5" height="15.0" fill="rgb(210,84,41)" rx="2" ry="2" /> 1277 <text text-anchor="" x="652.25" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1278 </g> 1279 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1280 <title>time.div (1 samples, 0.04%)</title><rect x="682.1" y="209" width="0.5" height="15.0" fill="rgb(220,226,23)" rx="2" ry="2" /> 1281 <text text-anchor="" x="685.08" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1282 </g> 1283 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1284 <title>runtime.(*_type).typeOff (5 samples, 0.21%)</title><rect x="557.7" y="305" width="2.5" height="15.0" fill="rgb(209,87,14)" rx="2" ry="2" /> 1285 <text text-anchor="" x="560.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1286 </g> 1287 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1288 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="1007.4" y="417" width="0.5" height="15.0" fill="rgb(229,55,46)" rx="2" ry="2" /> 1289 <text text-anchor="" x="1010.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1290 </g> 1291 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1292 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).(github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.probe)-fm (1 samples, 0.04%)</title><rect x="62.2" y="561" width="0.5" height="15.0" fill="rgb(218,12,15)" rx="2" ry="2" /> 1293 <text text-anchor="" x="65.23" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1294 </g> 1295 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1296 <title>runtime.makemap (7 samples, 0.30%)</title><rect x="956.7" y="417" width="3.5" height="15.0" fill="rgb(223,20,42)" rx="2" ry="2" /> 1297 <text text-anchor="" x="959.69" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1298 </g> 1299 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1300 <title>runtime.deferproc (1 samples, 0.04%)</title><rect x="1033.3" y="449" width="0.5" height="15.0" fill="rgb(213,62,10)" rx="2" ry="2" /> 1301 <text text-anchor="" x="1036.30" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1302 </g> 1303 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1304 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*Raft).startStopReplication.func1 (2 samples, 0.08%)</title><rect x="64.7" y="561" width="1.0" height="15.0" fill="rgb(239,78,29)" rx="2" ry="2" /> 1305 <text text-anchor="" x="67.72" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1306 </g> 1307 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1308 <title>runtime.startm (1 samples, 0.04%)</title><rect x="1141.7" y="497" width="0.5" height="15.0" fill="rgb(209,180,0)" rx="2" ry="2" /> 1309 <text text-anchor="" x="1144.75" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1310 </g> 1311 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1312 <title>runtime.scanblock (15 samples, 0.63%)</title><rect x="1093.0" y="417" width="7.5" height="15.0" fill="rgb(230,208,54)" rx="2" ry="2" /> 1313 <text text-anchor="" x="1095.99" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1314 </g> 1315 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1316 <title>runtime.gcAssistAlloc.func1 (3 samples, 0.13%)</title><rect x="106.0" y="465" width="1.5" height="15.0" fill="rgb(251,209,14)" rx="2" ry="2" /> 1317 <text text-anchor="" x="109.01" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1318 </g> 1319 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1320 <title>runtime.gentraceback (1 samples, 0.04%)</title><rect x="224.4" y="353" width="0.5" height="15.0" fill="rgb(238,46,26)" rx="2" ry="2" /> 1321 <text text-anchor="" x="227.41" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1322 </g> 1323 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1324 <title>encoding/json.(*arrayEncoder).encode (64 samples, 2.70%)</title><rect x="827.3" y="369" width="31.9" height="15.0" fill="rgb(242,159,51)" rx="2" ry="2" /> 1325 <text text-anchor="" x="830.34" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text> 1326 </g> 1327 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1328 <title>runtime.deferreturn.func1 (1 samples, 0.04%)</title><rect x="936.3" y="401" width="0.5" height="15.0" fill="rgb(222,221,7)" rx="2" ry="2" /> 1329 <text text-anchor="" x="939.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1330 </g> 1331 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1332 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="961.2" y="321" width="0.5" height="15.0" fill="rgb(211,20,5)" rx="2" ry="2" /> 1333 <text text-anchor="" x="964.16" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1334 </g> 1335 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1336 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).mergeRemoteState (1 samples, 0.04%)</title><rect x="60.2" y="561" width="0.5" height="15.0" fill="rgb(220,29,22)" rx="2" ry="2" /> 1337 <text text-anchor="" x="63.24" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1338 </g> 1339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1340 <title>runtime.scanobject (3 samples, 0.13%)</title><rect x="106.0" y="433" width="1.5" height="15.0" fill="rgb(205,170,33)" rx="2" ry="2" /> 1341 <text text-anchor="" x="109.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1342 </g> 1343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1344 <title>runtime.(*mcache).nextFree (4 samples, 0.17%)</title><rect x="739.3" y="337" width="2.0" height="15.0" fill="rgb(224,215,46)" rx="2" ry="2" /> 1345 <text text-anchor="" x="742.29" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1346 </g> 1347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1348 <title>time.now (2 samples, 0.08%)</title><rect x="948.2" y="449" width="1.0" height="15.0" fill="rgb(209,170,48)" rx="2" ry="2" /> 1349 <text text-anchor="" x="951.23" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1350 </g> 1351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1352 <title>runtime.rawstringtmp (1 samples, 0.04%)</title><rect x="926.8" y="369" width="0.5" height="15.0" fill="rgb(209,142,3)" rx="2" ry="2" /> 1353 <text text-anchor="" x="929.84" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1354 </g> 1355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1356 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="643.3" y="161" width="0.5" height="15.0" fill="rgb(249,142,11)" rx="2" ry="2" /> 1357 <text text-anchor="" x="646.28" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1358 </g> 1359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1360 <title>runtime.retake (1 samples, 0.04%)</title><rect x="1186.5" y="545" width="0.5" height="15.0" fill="rgb(218,180,10)" rx="2" ry="2" /> 1361 <text text-anchor="" x="1189.52" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1362 </g> 1363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1364 <title>reflect.Value.Interface (1 samples, 0.04%)</title><rect x="564.2" y="369" width="0.5" height="15.0" fill="rgb(232,3,36)" rx="2" ry="2" /> 1365 <text text-anchor="" x="567.18" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1366 </g> 1367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1368 <title>time.div (2 samples, 0.08%)</title><rect x="1032.3" y="417" width="1.0" height="15.0" fill="rgb(230,180,11)" rx="2" ry="2" /> 1369 <text text-anchor="" x="1035.30" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1370 </g> 1371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1372 <title>sync.(*RWMutex).RUnlock (2 samples, 0.08%)</title><rect x="512.4" y="497" width="1.0" height="15.0" fill="rgb(240,41,46)" rx="2" ry="2" /> 1373 <text text-anchor="" x="515.45" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1374 </g> 1375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1376 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="922.4" y="321" width="0.5" height="15.0" fill="rgb(246,203,15)" rx="2" ry="2" /> 1377 <text text-anchor="" x="925.36" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1378 </g> 1379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1380 <title>time.now (1 samples, 0.04%)</title><rect x="1049.7" y="481" width="0.5" height="15.0" fill="rgb(242,220,4)" rx="2" ry="2" /> 1381 <text text-anchor="" x="1052.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1382 </g> 1383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1384 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="1048.2" y="497" width="0.5" height="15.0" fill="rgb(220,79,33)" rx="2" ry="2" /> 1385 <text text-anchor="" x="1051.22" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1386 </g> 1387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1388 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).probe (1 samples, 0.04%)</title><rect x="62.2" y="545" width="0.5" height="15.0" fill="rgb(210,31,26)" rx="2" ry="2" /> 1389 <text text-anchor="" x="65.23" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1390 </g> 1391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1392 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="212.5" y="465" width="0.5" height="15.0" fill="rgb(240,141,49)" rx="2" ry="2" /> 1393 <text text-anchor="" x="215.47" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1394 </g> 1395 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1396 <title>runtime.mallocgc (7 samples, 0.30%)</title><rect x="657.2" y="225" width="3.5" height="15.0" fill="rgb(206,113,16)" rx="2" ry="2" /> 1397 <text text-anchor="" x="660.21" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1398 </g> 1399 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1400 <title>runtime/internal/atomic.Or8 (2 samples, 0.08%)</title><rect x="1099.0" y="385" width="1.0" height="15.0" fill="rgb(214,151,4)" rx="2" ry="2" /> 1401 <text text-anchor="" x="1101.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1402 </g> 1403 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1404 <title>runtime.mallocgc (5 samples, 0.21%)</title><rect x="701.0" y="385" width="2.5" height="15.0" fill="rgb(250,70,9)" rx="2" ry="2" /> 1405 <text text-anchor="" x="703.99" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1406 </g> 1407 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1408 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="280.1" y="497" width="1.0" height="15.0" fill="rgb(253,60,7)" rx="2" ry="2" /> 1409 <text text-anchor="" x="283.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1410 </g> 1411 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1412 <title>runtime.newobject (3 samples, 0.13%)</title><rect x="647.8" y="209" width="1.4" height="15.0" fill="rgb(246,156,24)" rx="2" ry="2" /> 1413 <text text-anchor="" x="650.76" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1414 </g> 1415 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1416 <title>runtime.futex (6 samples, 0.25%)</title><rect x="1154.2" y="465" width="3.0" height="15.0" fill="rgb(218,192,24)" rx="2" ry="2" /> 1417 <text text-anchor="" x="1157.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1418 </g> 1419 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1420 <title>runtime.mallocgc (7 samples, 0.30%)</title><rect x="807.9" y="369" width="3.5" height="15.0" fill="rgb(219,224,36)" rx="2" ry="2" /> 1421 <text text-anchor="" x="810.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1422 </g> 1423 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1424 <title>runtime.closechan (2 samples, 0.08%)</title><rect x="74.2" y="529" width="1.0" height="15.0" fill="rgb(209,10,4)" rx="2" ry="2" /> 1425 <text text-anchor="" x="77.17" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1426 </g> 1427 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1428 <title>runtime.tracebackdefers (1 samples, 0.04%)</title><rect x="1101.0" y="465" width="0.5" height="15.0" fill="rgb(254,126,22)" rx="2" ry="2" /> 1429 <text text-anchor="" x="1103.95" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1430 </g> 1431 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1432 <title>runtime.stackcache_clear (1 samples, 0.04%)</title><rect x="1167.1" y="449" width="0.5" height="15.0" fill="rgb(243,169,46)" rx="2" ry="2" /> 1433 <text text-anchor="" x="1170.12" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1434 </g> 1435 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1436 <title>runtime.gcUnlockStackBarriers (1 samples, 0.04%)</title><rect x="1134.8" y="513" width="0.5" height="15.0" fill="rgb(227,125,37)" rx="2" ry="2" /> 1437 <text text-anchor="" x="1137.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1438 </g> 1439 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1440 <title>runtime.gcDrainN (2 samples, 0.08%)</title><rect x="1025.3" y="305" width="1.0" height="15.0" fill="rgb(229,7,23)" rx="2" ry="2" /> 1441 <text text-anchor="" x="1028.34" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1442 </g> 1443 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1444 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="954.7" y="401" width="0.5" height="15.0" fill="rgb(231,31,38)" rx="2" ry="2" /> 1445 <text text-anchor="" x="957.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1446 </g> 1447 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1448 <title>net.runtime_pollWait (6 samples, 0.25%)</title><rect x="138.8" y="369" width="3.0" height="15.0" fill="rgb(247,117,53)" rx="2" ry="2" /> 1449 <text text-anchor="" x="141.84" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1450 </g> 1451 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1452 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="1045.7" y="465" width="0.5" height="15.0" fill="rgb(239,107,25)" rx="2" ry="2" /> 1453 <text text-anchor="" x="1048.73" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1454 </g> 1455 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1456 <title>runtime.convT2E (16 samples, 0.67%)</title><rect x="940.3" y="465" width="7.9" height="15.0" fill="rgb(245,10,44)" rx="2" ry="2" /> 1457 <text text-anchor="" x="943.27" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1458 </g> 1459 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1460 <title>reflect.(*rtype).typeOff (5 samples, 0.21%)</title><rect x="557.7" y="337" width="2.5" height="15.0" fill="rgb(214,214,22)" rx="2" ry="2" /> 1461 <text text-anchor="" x="560.72" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1462 </g> 1463 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1464 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="954.2" y="385" width="0.5" height="15.0" fill="rgb(210,50,20)" rx="2" ry="2" /> 1465 <text text-anchor="" x="957.20" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1466 </g> 1467 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1468 <title>runtime.stringiter2 (3 samples, 0.13%)</title><rect x="811.9" y="385" width="1.5" height="15.0" fill="rgb(214,42,21)" rx="2" ry="2" /> 1469 <text text-anchor="" x="814.92" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1470 </g> 1471 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1472 <title>syscall.Write (2 samples, 0.08%)</title><rect x="64.7" y="401" width="1.0" height="15.0" fill="rgb(233,60,39)" rx="2" ry="2" /> 1473 <text text-anchor="" x="67.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1474 </g> 1475 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1476 <title>sync.(*Pool).Get (4 samples, 0.17%)</title><rect x="111.5" y="513" width="2.0" height="15.0" fill="rgb(253,30,53)" rx="2" ry="2" /> 1477 <text text-anchor="" x="114.48" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1478 </g> 1479 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1480 <title>runtime.gcAssistAlloc.func1 (3 samples, 0.13%)</title><rect x="909.4" y="305" width="1.5" height="15.0" fill="rgb(226,72,21)" rx="2" ry="2" /> 1481 <text text-anchor="" x="912.43" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1482 </g> 1483 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1484 <title>runtime.casgstatus (4 samples, 0.17%)</title><rect x="446.3" y="385" width="2.0" height="15.0" fill="rgb(245,151,10)" rx="2" ry="2" /> 1485 <text text-anchor="" x="449.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1486 </g> 1487 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1488 <title>runtime.send (1 samples, 0.04%)</title><rect x="64.2" y="529" width="0.5" height="15.0" fill="rgb(245,217,12)" rx="2" ry="2" /> 1489 <text text-anchor="" x="67.22" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1490 </g> 1491 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1492 <title>runtime.mapiternext (4 samples, 0.17%)</title><rect x="314.5" y="449" width="1.9" height="15.0" fill="rgb(209,214,43)" rx="2" ry="2" /> 1493 <text text-anchor="" x="317.45" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1494 </g> 1495 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1496 <title>runtime.(*mcache).refill (2 samples, 0.08%)</title><rect x="270.2" y="449" width="1.0" height="15.0" fill="rgb(248,221,39)" rx="2" ry="2" /> 1497 <text text-anchor="" x="273.18" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1498 </g> 1499 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1500 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="747.7" y="337" width="0.5" height="15.0" fill="rgb(217,109,30)" rx="2" ry="2" /> 1501 <text text-anchor="" x="750.75" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1502 </g> 1503 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1504 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="61.7" y="433" width="0.5" height="15.0" fill="rgb(231,211,28)" rx="2" ry="2" /> 1505 <text text-anchor="" x="64.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1506 </g> 1507 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1508 <title>runtime.(*mspan).nextFreeIndex (1 samples, 0.04%)</title><rect x="876.1" y="369" width="0.5" height="15.0" fill="rgb(246,125,16)" rx="2" ry="2" /> 1509 <text text-anchor="" x="879.10" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1510 </g> 1511 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1512 <title>runtime.mallocgc (5 samples, 0.21%)</title><rect x="746.3" y="369" width="2.4" height="15.0" fill="rgb(241,22,16)" rx="2" ry="2" /> 1513 <text text-anchor="" x="749.26" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1514 </g> 1515 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1516 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="231.4" y="481" width="1.0" height="15.0" fill="rgb(224,72,30)" rx="2" ry="2" /> 1517 <text text-anchor="" x="234.37" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1518 </g> 1519 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1520 <title>runtime.mapaccess1_faststr (2 samples, 0.08%)</title><rect x="803.5" y="417" width="1.0" height="15.0" fill="rgb(233,144,39)" rx="2" ry="2" /> 1521 <text text-anchor="" x="806.47" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1522 </g> 1523 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1524 <title>bufio.(*Reader).ReadSlice (3 samples, 0.13%)</title><rect x="209.5" y="465" width="1.5" height="15.0" fill="rgb(218,168,28)" rx="2" ry="2" /> 1525 <text text-anchor="" x="212.49" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1526 </g> 1527 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1528 <title>strconv.formatBits (5 samples, 0.21%)</title><rect x="718.4" y="385" width="2.5" height="15.0" fill="rgb(238,70,12)" rx="2" ry="2" /> 1529 <text text-anchor="" x="721.40" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1530 </g> 1531 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1532 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="876.6" y="385" width="0.5" height="15.0" fill="rgb(233,204,44)" rx="2" ry="2" /> 1533 <text text-anchor="" x="879.59" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1534 </g> 1535 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1536 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="96.6" y="497" width="1.0" height="15.0" fill="rgb(247,77,32)" rx="2" ry="2" /> 1537 <text text-anchor="" x="99.56" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1538 </g> 1539 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1540 <title>runtime.getcallersp (1 samples, 0.04%)</title><rect x="661.7" y="241" width="0.5" height="15.0" fill="rgb(253,163,12)" rx="2" ry="2" /> 1541 <text text-anchor="" x="664.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1542 </g> 1543 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1544 <title>runtime.assertE2I2 (4 samples, 0.17%)</title><rect x="896.5" y="385" width="2.0" height="15.0" fill="rgb(241,207,4)" rx="2" ry="2" /> 1545 <text text-anchor="" x="899.49" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1546 </g> 1547 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1548 <title>runtime.mapiternext (57 samples, 2.40%)</title><rect x="482.6" y="481" width="28.4" height="15.0" fill="rgb(211,164,28)" rx="2" ry="2" /> 1549 <text text-anchor="" x="485.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 1550 </g> 1551 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1552 <title>runtime.mallocgc (5 samples, 0.21%)</title><rect x="247.3" y="465" width="2.5" height="15.0" fill="rgb(238,164,30)" rx="2" ry="2" /> 1553 <text text-anchor="" x="250.29" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1554 </g> 1555 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1556 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="677.1" y="33" width="0.5" height="15.0" fill="rgb(242,104,25)" rx="2" ry="2" /> 1557 <text text-anchor="" x="680.11" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1558 </g> 1559 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1560 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="107.5" y="529" width="0.5" height="15.0" fill="rgb(253,168,37)" rx="2" ry="2" /> 1561 <text text-anchor="" x="110.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1562 </g> 1563 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1564 <title>runtime.typedmemmove (2 samples, 0.08%)</title><rect x="611.4" y="161" width="1.0" height="15.0" fill="rgb(209,190,24)" rx="2" ry="2" /> 1565 <text text-anchor="" x="614.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1566 </g> 1567 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1568 <title>runtime.getcallerpc (1 samples, 0.04%)</title><rect x="1033.3" y="433" width="0.5" height="15.0" fill="rgb(222,144,11)" rx="2" ry="2" /> 1569 <text text-anchor="" x="1036.30" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1570 </g> 1571 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1572 <title>runtime.typedslicecopy (2 samples, 0.08%)</title><rect x="1047.2" y="497" width="1.0" height="15.0" fill="rgb(237,71,52)" rx="2" ry="2" /> 1573 <text text-anchor="" x="1050.23" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1574 </g> 1575 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1576 <title>runtime.newdefer (2 samples, 0.08%)</title><rect x="1014.9" y="433" width="1.0" height="15.0" fill="rgb(248,211,7)" rx="2" ry="2" /> 1577 <text text-anchor="" x="1017.89" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1578 </g> 1579 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1580 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="640.3" y="177" width="0.5" height="15.0" fill="rgb(215,92,6)" rx="2" ry="2" /> 1581 <text text-anchor="" x="643.30" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1582 </g> 1583 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1584 <title>encoding/json.(*sliceEncoder).(encoding/json.encode)-fm (69 samples, 2.91%)</title><rect x="825.4" y="417" width="34.3" height="15.0" fill="rgb(248,14,28)" rx="2" ry="2" /> 1585 <text text-anchor="" x="828.35" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text> 1586 </g> 1587 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1588 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="703.0" y="353" width="0.5" height="15.0" fill="rgb(219,173,19)" rx="2" ry="2" /> 1589 <text text-anchor="" x="705.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1590 </g> 1591 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1592 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="93.1" y="449" width="0.5" height="15.0" fill="rgb(253,88,4)" rx="2" ry="2" /> 1593 <text text-anchor="" x="96.08" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1594 </g> 1595 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1596 <title>runtime.mstart (10 samples, 0.42%)</title><rect x="1184.5" y="593" width="5.0" height="15.0" fill="rgb(254,206,0)" rx="2" ry="2" /> 1597 <text text-anchor="" x="1187.53" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1598 </g> 1599 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1600 <title>runtime.gosweepone.func1 (20 samples, 0.84%)</title><rect x="1050.7" y="529" width="10.0" height="15.0" fill="rgb(214,116,48)" rx="2" ry="2" /> 1601 <text text-anchor="" x="1053.71" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1602 </g> 1603 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1604 <title>runtime.scanobject (2 samples, 0.08%)</title><rect x="992.0" y="369" width="1.0" height="15.0" fill="rgb(209,8,53)" rx="2" ry="2" /> 1605 <text text-anchor="" x="995.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1606 </g> 1607 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1608 <title>runtime.shade (1 samples, 0.04%)</title><rect x="723.4" y="209" width="0.5" height="15.0" fill="rgb(239,103,37)" rx="2" ry="2" /> 1609 <text text-anchor="" x="726.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1610 </g> 1611 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1612 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="904.5" y="321" width="0.4" height="15.0" fill="rgb(229,199,42)" rx="2" ry="2" /> 1613 <text text-anchor="" x="907.45" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1614 </g> 1615 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1616 <title>runtime.sysmon (10 samples, 0.42%)</title><rect x="1184.5" y="561" width="5.0" height="15.0" fill="rgb(226,28,39)" rx="2" ry="2" /> 1617 <text text-anchor="" x="1187.53" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1618 </g> 1619 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1620 <title>runtime.(*mcentral).cacheSpan (2 samples, 0.08%)</title><rect x="241.3" y="401" width="1.0" height="15.0" fill="rgb(222,118,0)" rx="2" ry="2" /> 1621 <text text-anchor="" x="244.32" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1622 </g> 1623 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1624 <title>strings.Replace (4 samples, 0.17%)</title><rect x="1026.3" y="433" width="2.0" height="15.0" fill="rgb(249,118,23)" rx="2" ry="2" /> 1625 <text text-anchor="" x="1029.33" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1626 </g> 1627 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1628 <title>bufio.(*Reader).ReadLine (4 samples, 0.17%)</title><rect x="209.0" y="481" width="2.0" height="15.0" fill="rgb(229,57,32)" rx="2" ry="2" /> 1629 <text text-anchor="" x="211.99" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1630 </g> 1631 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1632 <title>runtime.concatstrings (6 samples, 0.25%)</title><rect x="613.4" y="161" width="3.0" height="15.0" fill="rgb(225,44,22)" rx="2" ry="2" /> 1633 <text text-anchor="" x="616.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1634 </g> 1635 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1636 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="886.5" y="385" width="0.5" height="15.0" fill="rgb(241,120,39)" rx="2" ry="2" /> 1637 <text text-anchor="" x="889.54" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1638 </g> 1639 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1640 <title>runtime.futex (1 samples, 0.04%)</title><rect x="64.2" y="385" width="0.5" height="15.0" fill="rgb(210,38,5)" rx="2" ry="2" /> 1641 <text text-anchor="" x="67.22" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1642 </g> 1643 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1644 <title>runtime.(*mcentral).grow (3 samples, 0.13%)</title><rect x="713.9" y="241" width="1.5" height="15.0" fill="rgb(209,80,53)" rx="2" ry="2" /> 1645 <text text-anchor="" x="716.92" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1646 </g> 1647 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1648 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="1025.8" y="273" width="0.5" height="15.0" fill="rgb(214,65,11)" rx="2" ry="2" /> 1649 <text text-anchor="" x="1028.83" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1650 </g> 1651 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1652 <title>runtime.newarray (8 samples, 0.34%)</title><rect x="786.1" y="353" width="3.9" height="15.0" fill="rgb(229,60,38)" rx="2" ry="2" /> 1653 <text text-anchor="" x="789.05" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1654 </g> 1655 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1656 <title>runtime.deferproc.func1 (3 samples, 0.13%)</title><rect x="1014.4" y="449" width="1.5" height="15.0" fill="rgb(207,164,25)" rx="2" ry="2" /> 1657 <text text-anchor="" x="1017.39" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1658 </g> 1659 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1660 <title>runtime.makemap (2 samples, 0.08%)</title><rect x="813.4" y="417" width="1.0" height="15.0" fill="rgb(237,91,54)" rx="2" ry="2" /> 1661 <text text-anchor="" x="816.41" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1662 </g> 1663 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1664 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="936.3" y="417" width="0.5" height="15.0" fill="rgb(228,23,35)" rx="2" ry="2" /> 1665 <text text-anchor="" x="939.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1666 </g> 1667 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1668 <title>reflect.Value.Type (2 samples, 0.08%)</title><rect x="585.6" y="337" width="1.0" height="15.0" fill="rgb(215,16,1)" rx="2" ry="2" /> 1669 <text text-anchor="" x="588.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1670 </g> 1671 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1672 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="961.2" y="385" width="0.5" height="15.0" fill="rgb(219,162,43)" rx="2" ry="2" /> 1673 <text text-anchor="" x="964.16" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1674 </g> 1675 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1676 <title>runtime.(*mheap).reclaim (1 samples, 0.04%)</title><rect x="104.5" y="433" width="0.5" height="15.0" fill="rgb(220,165,35)" rx="2" ry="2" /> 1677 <text text-anchor="" x="107.52" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1678 </g> 1679 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1680 <title>runtime.unlock (1 samples, 0.04%)</title><rect x="881.6" y="273" width="0.5" height="15.0" fill="rgb(235,198,26)" rx="2" ry="2" /> 1681 <text text-anchor="" x="884.57" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1682 </g> 1683 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1684 <title>runtime.systemstack (6 samples, 0.25%)</title><rect x="786.6" y="305" width="2.9" height="15.0" fill="rgb(212,41,2)" rx="2" ry="2" /> 1685 <text text-anchor="" x="789.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1686 </g> 1687 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1688 <title>runtime.pcvalue (1 samples, 0.04%)</title><rect x="1182.5" y="337" width="0.5" height="15.0" fill="rgb(205,9,32)" rx="2" ry="2" /> 1689 <text text-anchor="" x="1185.54" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1690 </g> 1691 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1692 <title>runtime.aeshashbody (2 samples, 0.08%)</title><rect x="122.4" y="449" width="1.0" height="15.0" fill="rgb(221,46,32)" rx="2" ry="2" /> 1693 <text text-anchor="" x="125.43" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1694 </g> 1695 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1696 <title>syscall.Syscall6 (1 samples, 0.04%)</title><rect x="62.2" y="385" width="0.5" height="15.0" fill="rgb(245,208,2)" rx="2" ry="2" /> 1697 <text text-anchor="" x="65.23" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1698 </g> 1699 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1700 <title>runtime.notewakeup (1 samples, 0.04%)</title><rect x="1141.7" y="481" width="0.5" height="15.0" fill="rgb(208,89,11)" rx="2" ry="2" /> 1701 <text text-anchor="" x="1144.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1702 </g> 1703 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1704 <title>net/url.escape (3 samples, 0.13%)</title><rect x="988.0" y="449" width="1.5" height="15.0" fill="rgb(237,149,41)" rx="2" ry="2" /> 1705 <text text-anchor="" x="991.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1706 </g> 1707 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1708 <title>net.(*netFD).Read (86 samples, 3.63%)</title><rect x="131.4" y="417" width="42.8" height="15.0" fill="rgb(209,108,16)" rx="2" ry="2" /> 1709 <text text-anchor="" x="134.38" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net...</text> 1710 </g> 1711 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1712 <title>runtime.scanstack.func1 (1 samples, 0.04%)</title><rect x="1152.2" y="369" width="0.5" height="15.0" fill="rgb(226,203,53)" rx="2" ry="2" /> 1713 <text text-anchor="" x="1155.19" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1714 </g> 1715 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1716 <title>runtime.(*mheap).alloc_m (1 samples, 0.04%)</title><rect x="740.8" y="289" width="0.5" height="15.0" fill="rgb(241,2,10)" rx="2" ry="2" /> 1717 <text text-anchor="" x="743.78" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1718 </g> 1719 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1720 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="799.5" y="337" width="1.0" height="15.0" fill="rgb(235,7,26)" rx="2" ry="2" /> 1721 <text text-anchor="" x="802.49" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1722 </g> 1723 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1724 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="225.9" y="465" width="1.0" height="15.0" fill="rgb(232,120,22)" rx="2" ry="2" /> 1725 <text text-anchor="" x="228.90" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1726 </g> 1727 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1728 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).First (18 samples, 0.76%)</title><rect x="640.3" y="241" width="8.9" height="15.0" fill="rgb(250,29,2)" rx="2" ry="2" /> 1729 <text text-anchor="" x="643.30" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1730 </g> 1731 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1732 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="800.0" y="321" width="0.5" height="15.0" fill="rgb(245,20,31)" rx="2" ry="2" /> 1733 <text text-anchor="" x="802.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1734 </g> 1735 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1736 <title>sync.(*Pool).pin (4 samples, 0.17%)</title><rect x="910.9" y="401" width="2.0" height="15.0" fill="rgb(223,13,52)" rx="2" ry="2" /> 1737 <text text-anchor="" x="913.92" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1738 </g> 1739 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1740 <title>runtime.runqput (2 samples, 0.08%)</title><rect x="1152.7" y="513" width="1.0" height="15.0" fill="rgb(207,159,37)" rx="2" ry="2" /> 1741 <text text-anchor="" x="1155.69" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1742 </g> 1743 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1744 <title>runtime/internal/atomic.Or8 (1 samples, 0.04%)</title><rect x="1129.3" y="513" width="0.5" height="15.0" fill="rgb(223,14,30)" rx="2" ry="2" /> 1745 <text text-anchor="" x="1132.31" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1746 </g> 1747 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1748 <title>runtime.startm (1 samples, 0.04%)</title><rect x="1137.8" y="481" width="0.5" height="15.0" fill="rgb(209,192,1)" rx="2" ry="2" /> 1749 <text text-anchor="" x="1140.77" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1750 </g> 1751 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1752 <title>runtime.(*mcentral).cacheSpan (1 samples, 0.04%)</title><rect x="747.7" y="289" width="0.5" height="15.0" fill="rgb(234,52,9)" rx="2" ry="2" /> 1753 <text text-anchor="" x="750.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1754 </g> 1755 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1756 <title>runtime/internal/atomic.Xchg (2 samples, 0.08%)</title><rect x="1142.2" y="497" width="1.0" height="15.0" fill="rgb(205,74,8)" rx="2" ry="2" /> 1757 <text text-anchor="" x="1145.24" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1758 </g> 1759 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1760 <title>runtime.(*mcache).nextFree.func1 (1 samples, 0.04%)</title><rect x="806.0" y="337" width="0.5" height="15.0" fill="rgb(227,47,52)" rx="2" ry="2" /> 1761 <text text-anchor="" x="808.95" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1762 </g> 1763 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1764 <title>runtime.rawstringtmp (1 samples, 0.04%)</title><rect x="902.5" y="337" width="0.5" height="15.0" fill="rgb(218,166,17)" rx="2" ry="2" /> 1765 <text text-anchor="" x="905.46" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1766 </g> 1767 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1768 <title>runtime.duffcopy (1 samples, 0.04%)</title><rect x="1086.0" y="385" width="0.5" height="15.0" fill="rgb(222,201,17)" rx="2" ry="2" /> 1769 <text text-anchor="" x="1089.03" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1770 </g> 1771 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1772 <title>runtime.gentraceback (61 samples, 2.57%)</title><rect x="1070.6" y="465" width="30.4" height="15.0" fill="rgb(241,182,11)" rx="2" ry="2" /> 1773 <text text-anchor="" x="1073.61" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 1774 </g> 1775 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1776 <title>bufio.(*Reader).ReadByte (2 samples, 0.08%)</title><rect x="63.2" y="481" width="1.0" height="15.0" fill="rgb(228,67,9)" rx="2" ry="2" /> 1777 <text text-anchor="" x="66.23" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1778 </g> 1779 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1780 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="242.8" y="449" width="1.0" height="15.0" fill="rgb(220,147,10)" rx="2" ry="2" /> 1781 <text text-anchor="" x="245.82" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1782 </g> 1783 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1784 <title>runtime.gcAssistAlloc.func1 (2 samples, 0.08%)</title><rect x="95.6" y="465" width="1.0" height="15.0" fill="rgb(222,151,25)" rx="2" ry="2" /> 1785 <text text-anchor="" x="98.56" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1786 </g> 1787 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1788 <title>syscall.sendto (1 samples, 0.04%)</title><rect x="62.2" y="401" width="0.5" height="15.0" fill="rgb(248,155,2)" rx="2" ry="2" /> 1789 <text text-anchor="" x="65.23" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1790 </g> 1791 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1792 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).First (73 samples, 3.08%)</title><rect x="600.0" y="225" width="36.3" height="15.0" fill="rgb(236,23,31)" rx="2" ry="2" /> 1793 <text text-anchor="" x="603.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> 1794 </g> 1795 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1796 <title>sync.(*RWMutex).RUnlock (1 samples, 0.04%)</title><rect x="1031.8" y="417" width="0.5" height="15.0" fill="rgb(236,31,37)" rx="2" ry="2" /> 1797 <text text-anchor="" x="1034.80" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1798 </g> 1799 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1800 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="639.8" y="145" width="0.5" height="15.0" fill="rgb(242,157,3)" rx="2" ry="2" /> 1801 <text text-anchor="" x="642.80" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1802 </g> 1803 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1804 <title>runtime.gcTryRemoveAllStackBarriers (1 samples, 0.04%)</title><rect x="1134.8" y="529" width="0.5" height="15.0" fill="rgb(242,126,6)" rx="2" ry="2" /> 1805 <text text-anchor="" x="1137.78" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1806 </g> 1807 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1808 <title>runtime.fastrand1 (2 samples, 0.08%)</title><rect x="885.5" y="417" width="1.0" height="15.0" fill="rgb(219,58,29)" rx="2" ry="2" /> 1809 <text text-anchor="" x="888.55" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1810 </g> 1811 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1812 <title>runtime.newMarkBits (2 samples, 0.08%)</title><rect x="808.9" y="241" width="1.0" height="15.0" fill="rgb(212,145,8)" rx="2" ry="2" /> 1813 <text text-anchor="" x="811.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1814 </g> 1815 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1816 <title>runtime.callers (1 samples, 0.04%)</title><rect x="883.1" y="337" width="0.5" height="15.0" fill="rgb(216,166,6)" rx="2" ry="2" /> 1817 <text text-anchor="" x="886.06" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1818 </g> 1819 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1820 <title>runtime.checkdead (1 samples, 0.04%)</title><rect x="1171.6" y="497" width="0.5" height="15.0" fill="rgb(205,94,4)" rx="2" ry="2" /> 1821 <text text-anchor="" x="1174.59" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1822 </g> 1823 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1824 <title>syscall.Read (61 samples, 2.57%)</title><rect x="143.8" y="401" width="30.4" height="15.0" fill="rgb(208,221,45)" rx="2" ry="2" /> 1825 <text text-anchor="" x="146.82" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text> 1826 </g> 1827 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1828 <title>runtime.deferproc (1 samples, 0.04%)</title><rect x="952.7" y="433" width="0.5" height="15.0" fill="rgb(207,95,31)" rx="2" ry="2" /> 1829 <text text-anchor="" x="955.71" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1830 </g> 1831 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1832 <title>runtime/internal/atomic.Xadd64 (1 samples, 0.04%)</title><rect x="1048.2" y="385" width="0.5" height="15.0" fill="rgb(218,185,20)" rx="2" ry="2" /> 1833 <text text-anchor="" x="1051.22" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1834 </g> 1835 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1836 <title>encoding/json.(*arrayEncoder).(encoding/json.encode)-fm (64 samples, 2.70%)</title><rect x="827.3" y="385" width="31.9" height="15.0" fill="rgb(208,210,7)" rx="2" ry="2" /> 1837 <text text-anchor="" x="830.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text> 1838 </g> 1839 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1840 <title>runtime.typedmemmove (2 samples, 0.08%)</title><rect x="978.6" y="433" width="1.0" height="15.0" fill="rgb(209,27,11)" rx="2" ry="2" /> 1841 <text text-anchor="" x="981.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1842 </g> 1843 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1844 <title>runtime.futex (1 samples, 0.04%)</title><rect x="778.6" y="177" width="0.5" height="15.0" fill="rgb(252,153,6)" rx="2" ry="2" /> 1845 <text text-anchor="" x="781.59" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1846 </g> 1847 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1848 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="561.7" y="289" width="0.5" height="15.0" fill="rgb(206,215,40)" rx="2" ry="2" /> 1849 <text text-anchor="" x="564.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1850 </g> 1851 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1852 <title>runtime.scanstack (1 samples, 0.04%)</title><rect x="1138.8" y="449" width="0.5" height="15.0" fill="rgb(210,176,50)" rx="2" ry="2" /> 1853 <text text-anchor="" x="1141.76" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1854 </g> 1855 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1856 <title>reflect.typedmemmove (2 samples, 0.08%)</title><rect x="569.7" y="321" width="0.9" height="15.0" fill="rgb(236,78,37)" rx="2" ry="2" /> 1857 <text text-anchor="" x="572.65" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1858 </g> 1859 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1860 <title>runtime.reentersyscall (4 samples, 0.17%)</title><rect x="171.7" y="337" width="2.0" height="15.0" fill="rgb(234,29,32)" rx="2" ry="2" /> 1861 <text text-anchor="" x="174.68" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1862 </g> 1863 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1864 <title>runtime.findrunnable (50 samples, 2.11%)</title><rect x="1149.7" y="545" width="24.9" height="15.0" fill="rgb(209,20,25)" rx="2" ry="2" /> 1865 <text text-anchor="" x="1152.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 1866 </g> 1867 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1868 <title>runtime.shade (1 samples, 0.04%)</title><rect x="696.0" y="257" width="0.5" height="15.0" fill="rgb(229,170,39)" rx="2" ry="2" /> 1869 <text text-anchor="" x="699.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1870 </g> 1871 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1872 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="904.9" y="417" width="0.5" height="15.0" fill="rgb(211,69,7)" rx="2" ry="2" /> 1873 <text text-anchor="" x="907.95" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1874 </g> 1875 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1876 <title>net/url.QueryUnescape (3 samples, 0.13%)</title><rect x="773.1" y="369" width="1.5" height="15.0" fill="rgb(253,150,22)" rx="2" ry="2" /> 1877 <text text-anchor="" x="776.12" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1878 </g> 1879 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1880 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).Decode (1 samples, 0.04%)</title><rect x="60.2" y="513" width="0.5" height="15.0" fill="rgb(222,2,25)" rx="2" ry="2" /> 1881 <text text-anchor="" x="63.24" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1882 </g> 1883 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1884 <title>runtime.newobject (3 samples, 0.13%)</title><rect x="979.6" y="449" width="1.5" height="15.0" fill="rgb(249,109,6)" rx="2" ry="2" /> 1885 <text text-anchor="" x="982.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1886 </g> 1887 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1888 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="651.7" y="209" width="0.5" height="15.0" fill="rgb(220,79,43)" rx="2" ry="2" /> 1889 <text text-anchor="" x="654.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1890 </g> 1891 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1892 <title>net/http.(*conn).hijacked (2 samples, 0.08%)</title><rect x="954.2" y="433" width="1.0" height="15.0" fill="rgb(215,113,52)" rx="2" ry="2" /> 1893 <text text-anchor="" x="957.20" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1894 </g> 1895 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1896 <title>runtime.futexwakeup (1 samples, 0.04%)</title><rect x="778.6" y="193" width="0.5" height="15.0" fill="rgb(206,52,29)" rx="2" ry="2" /> 1897 <text text-anchor="" x="781.59" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1898 </g> 1899 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1900 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="954.7" y="337" width="0.5" height="15.0" fill="rgb(207,91,9)" rx="2" ry="2" /> 1901 <text text-anchor="" x="957.70" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1902 </g> 1903 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1904 <title>runtime.slicebytetostring (6 samples, 0.25%)</title><rect x="246.8" y="513" width="3.0" height="15.0" fill="rgb(220,96,23)" rx="2" ry="2" /> 1905 <text text-anchor="" x="249.80" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1906 </g> 1907 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1908 <title>runtime.gentraceback (1 samples, 0.04%)</title><rect x="1152.2" y="385" width="0.5" height="15.0" fill="rgb(213,140,12)" rx="2" ry="2" /> 1909 <text text-anchor="" x="1155.19" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1910 </g> 1911 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1912 <title>net/http.(*response).WriteHeader (42 samples, 1.77%)</title><rect x="954.2" y="449" width="20.9" height="15.0" fill="rgb(252,25,6)" rx="2" ry="2" /> 1913 <text text-anchor="" x="957.20" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1914 </g> 1915 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1916 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="647.8" y="193" width="1.4" height="15.0" fill="rgb(225,117,2)" rx="2" ry="2" /> 1917 <text text-anchor="" x="650.76" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1918 </g> 1919 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1920 <title>runtime.gcAssistAlloc (2 samples, 0.08%)</title><rect x="992.0" y="433" width="1.0" height="15.0" fill="rgb(217,1,33)" rx="2" ry="2" /> 1921 <text text-anchor="" x="995.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1922 </g> 1923 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1924 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="270.7" y="417" width="0.5" height="15.0" fill="rgb(206,214,37)" rx="2" ry="2" /> 1925 <text text-anchor="" x="273.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1926 </g> 1927 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1928 <title>runtime.deductSweepCredit (1 samples, 0.04%)</title><rect x="880.1" y="289" width="0.5" height="15.0" fill="rgb(230,49,22)" rx="2" ry="2" /> 1929 <text text-anchor="" x="883.08" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1930 </g> 1931 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1932 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="1013.4" y="417" width="0.5" height="15.0" fill="rgb(248,201,40)" rx="2" ry="2" /> 1933 <text text-anchor="" x="1016.40" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1934 </g> 1935 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1936 <title>runtime.futex (5 samples, 0.21%)</title><rect x="1172.1" y="481" width="2.5" height="15.0" fill="rgb(221,40,6)" rx="2" ry="2" /> 1937 <text text-anchor="" x="1175.09" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1938 </g> 1939 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1940 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="229.9" y="481" width="0.5" height="15.0" fill="rgb(210,226,21)" rx="2" ry="2" /> 1941 <text text-anchor="" x="232.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1942 </g> 1943 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1944 <title>runtime.markroot (1 samples, 0.04%)</title><rect x="1152.2" y="465" width="0.5" height="15.0" fill="rgb(254,77,31)" rx="2" ry="2" /> 1945 <text text-anchor="" x="1155.19" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1946 </g> 1947 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1948 <title>runtime.newobject (2 samples, 0.08%)</title><rect x="802.5" y="369" width="1.0" height="15.0" fill="rgb(243,128,25)" rx="2" ry="2" /> 1949 <text text-anchor="" x="805.47" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1950 </g> 1951 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1952 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="61.7" y="481" width="0.5" height="15.0" fill="rgb(236,142,13)" rx="2" ry="2" /> 1953 <text text-anchor="" x="64.74" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1954 </g> 1955 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1956 <title>runtime/internal/atomic.Store (1 samples, 0.04%)</title><rect x="1134.8" y="497" width="0.5" height="15.0" fill="rgb(224,202,8)" rx="2" ry="2" /> 1957 <text text-anchor="" x="1137.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1958 </g> 1959 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1960 <title>net.(*conn).Read (2 samples, 0.08%)</title><rect x="63.2" y="449" width="1.0" height="15.0" fill="rgb(228,33,0)" rx="2" ry="2" /> 1961 <text text-anchor="" x="66.23" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1962 </g> 1963 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1964 <title>runtime.gcDrain (2 samples, 0.08%)</title><rect x="1182.0" y="465" width="1.0" height="15.0" fill="rgb(207,175,2)" rx="2" ry="2" /> 1965 <text text-anchor="" x="1185.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1966 </g> 1967 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1968 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="692.5" y="305" width="0.5" height="15.0" fill="rgb(214,175,26)" rx="2" ry="2" /> 1969 <text text-anchor="" x="695.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1970 </g> 1971 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1972 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).rawSendMsgUDP (1 samples, 0.04%)</title><rect x="62.2" y="481" width="0.5" height="15.0" fill="rgb(228,28,1)" rx="2" ry="2" /> 1973 <text text-anchor="" x="65.23" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1974 </g> 1975 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1976 <title>runtime.deferreturn (7 samples, 0.30%)</title><rect x="346.8" y="465" width="3.5" height="15.0" fill="rgb(236,206,48)" rx="2" ry="2" /> 1977 <text text-anchor="" x="349.79" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1978 </g> 1979 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1980 <title>runtime.goschedImpl (6 samples, 0.25%)</title><rect x="1180.5" y="545" width="3.0" height="15.0" fill="rgb(252,9,33)" rx="2" ry="2" /> 1981 <text text-anchor="" x="1183.55" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1982 </g> 1983 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1984 <title>runtime.(*gcWork).init (1 samples, 0.04%)</title><rect x="1182.0" y="433" width="0.5" height="15.0" fill="rgb(212,75,43)" rx="2" ry="2" /> 1985 <text text-anchor="" x="1185.04" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1986 </g> 1987 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1988 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="677.1" y="81" width="0.5" height="15.0" fill="rgb(230,11,16)" rx="2" ry="2" /> 1989 <text text-anchor="" x="680.11" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1990 </g> 1991 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1992 <title>runtime.scanstack.func1 (1 samples, 0.04%)</title><rect x="1175.1" y="385" width="0.5" height="15.0" fill="rgb(231,106,7)" rx="2" ry="2" /> 1993 <text text-anchor="" x="1178.08" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1994 </g> 1995 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 1996 <title>runtime.lock (1 samples, 0.04%)</title><rect x="786.6" y="193" width="0.4" height="15.0" fill="rgb(207,11,35)" rx="2" ry="2" /> 1997 <text text-anchor="" x="789.55" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 1998 </g> 1999 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2000 <title>runtime.scanstack (2 samples, 0.08%)</title><rect x="1183.5" y="561" width="1.0" height="15.0" fill="rgb(246,153,21)" rx="2" ry="2" /> 2001 <text text-anchor="" x="1186.53" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2002 </g> 2003 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2004 <title>runtime.procyield (1 samples, 0.04%)</title><rect x="179.1" y="417" width="0.5" height="15.0" fill="rgb(239,32,32)" rx="2" ry="2" /> 2005 <text text-anchor="" x="182.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2006 </g> 2007 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2008 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="611.9" y="145" width="0.5" height="15.0" fill="rgb(221,213,42)" rx="2" ry="2" /> 2009 <text text-anchor="" x="614.94" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2010 </g> 2011 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2012 <title>runtime.step (1 samples, 0.04%)</title><rect x="1137.3" y="417" width="0.5" height="15.0" fill="rgb(231,77,18)" rx="2" ry="2" /> 2013 <text text-anchor="" x="1140.27" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2014 </g> 2015 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2016 <title>runtime.stringiter2 (1 samples, 0.04%)</title><rect x="791.5" y="353" width="0.5" height="15.0" fill="rgb(239,126,35)" rx="2" ry="2" /> 2017 <text text-anchor="" x="794.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2018 </g> 2019 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2020 <title>runtime.deferreturn (1 samples, 0.04%)</title><rect x="59.2" y="433" width="0.5" height="15.0" fill="rgb(250,229,42)" rx="2" ry="2" /> 2021 <text text-anchor="" x="62.25" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2022 </g> 2023 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2024 <title>runtime.(*mcentral).uncacheSpan (1 samples, 0.04%)</title><rect x="1166.6" y="433" width="0.5" height="15.0" fill="rgb(205,149,54)" rx="2" ry="2" /> 2025 <text text-anchor="" x="1169.62" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2026 </g> 2027 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2028 <title>runtime.mallocgc (7 samples, 0.30%)</title><rect x="1041.3" y="449" width="3.4" height="15.0" fill="rgb(235,84,51)" rx="2" ry="2" /> 2029 <text text-anchor="" x="1044.26" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2030 </g> 2031 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2032 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).Get (4 samples, 0.17%)</title><rect x="602.0" y="193" width="2.0" height="15.0" fill="rgb(227,83,5)" rx="2" ry="2" /> 2033 <text text-anchor="" x="604.99" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2034 </g> 2035 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2036 <title>sync.(*RWMutex).RUnlock (1 samples, 0.04%)</title><rect x="593.0" y="321" width="0.5" height="15.0" fill="rgb(247,30,33)" rx="2" ry="2" /> 2037 <text text-anchor="" x="596.04" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2038 </g> 2039 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2040 <title>runtime.rawstringtmp (56 samples, 2.36%)</title><rect x="174.7" y="497" width="27.8" height="15.0" fill="rgb(249,121,19)" rx="2" ry="2" /> 2041 <text text-anchor="" x="177.66" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 2042 </g> 2043 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2044 <title>sync.(*RWMutex).RLock (4 samples, 0.17%)</title><rect x="863.7" y="385" width="1.9" height="15.0" fill="rgb(210,116,9)" rx="2" ry="2" /> 2045 <text text-anchor="" x="866.66" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2046 </g> 2047 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2048 <title>runtime.funcspdelta (1 samples, 0.04%)</title><rect x="1137.3" y="449" width="0.5" height="15.0" fill="rgb(223,205,7)" rx="2" ry="2" /> 2049 <text text-anchor="" x="1140.27" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2050 </g> 2051 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2052 <title>fmt.(*fmt).fmt_s (3 samples, 0.13%)</title><rect x="895.0" y="385" width="1.5" height="15.0" fill="rgb(228,188,2)" rx="2" ry="2" /> 2053 <text text-anchor="" x="898.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2054 </g> 2055 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2056 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="723.4" y="193" width="0.5" height="15.0" fill="rgb(241,84,29)" rx="2" ry="2" /> 2057 <text text-anchor="" x="726.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2058 </g> 2059 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2060 <title>runtime.casgstatus (3 samples, 0.13%)</title><rect x="172.2" y="321" width="1.5" height="15.0" fill="rgb(213,205,32)" rx="2" ry="2" /> 2061 <text text-anchor="" x="175.18" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2062 </g> 2063 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2064 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="313.5" y="401" width="0.5" height="15.0" fill="rgb(221,62,14)" rx="2" ry="2" /> 2065 <text text-anchor="" x="316.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2066 </g> 2067 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2068 <title>github.com/hashicorp/consul/consul.(*KVS).Get (199 samples, 8.39%)</title><rect x="594.0" y="321" width="99.0" height="15.0" fill="rgb(243,114,14)" rx="2" ry="2" /> 2069 <text text-anchor="" x="597.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/..</text> 2070 </g> 2071 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2072 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="863.2" y="385" width="0.5" height="15.0" fill="rgb(233,51,36)" rx="2" ry="2" /> 2073 <text text-anchor="" x="866.16" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2074 </g> 2075 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2076 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="724.4" y="369" width="0.5" height="15.0" fill="rgb(219,145,44)" rx="2" ry="2" /> 2077 <text text-anchor="" x="727.37" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2078 </g> 2079 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2080 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).decodeValue (1 samples, 0.04%)</title><rect x="60.2" y="481" width="0.5" height="15.0" fill="rgb(230,66,50)" rx="2" ry="2" /> 2081 <text text-anchor="" x="63.24" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2082 </g> 2083 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2084 <title>encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (59 samples, 2.49%)</title><rect x="828.3" y="353" width="29.4" height="15.0" fill="rgb(223,183,46)" rx="2" ry="2" /> 2085 <text text-anchor="" x="831.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text> 2086 </g> 2087 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2088 <title>runtime.mProf_GC (2 samples, 0.08%)</title><rect x="1136.3" y="481" width="1.0" height="15.0" fill="rgb(231,28,28)" rx="2" ry="2" /> 2089 <text text-anchor="" x="1139.27" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2090 </g> 2091 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2092 <title>runtime.futexsleep (1 samples, 0.04%)</title><rect x="1183.0" y="465" width="0.5" height="15.0" fill="rgb(248,150,54)" rx="2" ry="2" /> 2093 <text text-anchor="" x="1186.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2094 </g> 2095 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2096 <title>runtime.newarray (4 samples, 0.17%)</title><rect x="967.1" y="401" width="2.0" height="15.0" fill="rgb(241,155,42)" rx="2" ry="2" /> 2097 <text text-anchor="" x="970.13" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2098 </g> 2099 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2100 <title>github.com/hashicorp/consul/consul/state.(*StateStore).kvsGetTxn (110 samples, 4.64%)</title><rect x="598.5" y="257" width="54.7" height="15.0" fill="rgb(245,64,31)" rx="2" ry="2" /> 2101 <text text-anchor="" x="601.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >githu..</text> 2102 </g> 2103 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2104 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="933.3" y="385" width="0.5" height="15.0" fill="rgb(217,213,2)" rx="2" ry="2" /> 2105 <text text-anchor="" x="936.31" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2106 </g> 2107 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2108 <title>runtime.adjustframe (2 samples, 0.08%)</title><rect x="1179.1" y="529" width="1.0" height="15.0" fill="rgb(245,94,8)" rx="2" ry="2" /> 2109 <text text-anchor="" x="1182.06" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2110 </g> 2111 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2112 <title>runtime.gcDrainN (3 samples, 0.13%)</title><rect x="909.4" y="289" width="1.5" height="15.0" fill="rgb(229,205,21)" rx="2" ry="2" /> 2113 <text text-anchor="" x="912.43" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2114 </g> 2115 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2116 <title>runtime.lock (1 samples, 0.04%)</title><rect x="1140.8" y="545" width="0.4" height="15.0" fill="rgb(235,43,50)" rx="2" ry="2" /> 2117 <text text-anchor="" x="1143.75" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2118 </g> 2119 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2120 <title>runtime.newarray (7 samples, 0.30%)</title><rect x="807.9" y="385" width="3.5" height="15.0" fill="rgb(214,189,22)" rx="2" ry="2" /> 2121 <text text-anchor="" x="810.94" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2122 </g> 2123 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2124 <title>sync.(*Pool).pin (2 samples, 0.08%)</title><rect x="112.5" y="497" width="1.0" height="15.0" fill="rgb(250,116,35)" rx="2" ry="2" /> 2125 <text text-anchor="" x="115.48" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2126 </g> 2127 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2128 <title>sync.(*Pool).Get (8 samples, 0.34%)</title><rect x="908.9" y="417" width="4.0" height="15.0" fill="rgb(224,213,35)" rx="2" ry="2" /> 2129 <text text-anchor="" x="911.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2130 </g> 2131 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2132 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Txn).Get (4 samples, 0.17%)</title><rect x="602.0" y="209" width="2.0" height="15.0" fill="rgb(250,152,49)" rx="2" ry="2" /> 2133 <text text-anchor="" x="604.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2134 </g> 2135 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2136 <title>runtime.unlock (1 samples, 0.04%)</title><rect x="788.5" y="257" width="0.5" height="15.0" fill="rgb(217,28,33)" rx="2" ry="2" /> 2137 <text text-anchor="" x="791.54" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2138 </g> 2139 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2140 <title>runtime.aeshashbody (1 samples, 0.04%)</title><rect x="799.0" y="353" width="0.5" height="15.0" fill="rgb(209,93,40)" rx="2" ry="2" /> 2141 <text text-anchor="" x="801.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2142 </g> 2143 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2144 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="561.2" y="305" width="0.5" height="15.0" fill="rgb(238,193,6)" rx="2" ry="2" /> 2145 <text text-anchor="" x="564.20" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2146 </g> 2147 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2148 <title>runtime.casgstatus (1 samples, 0.04%)</title><rect x="173.7" y="337" width="0.5" height="15.0" fill="rgb(233,208,39)" rx="2" ry="2" /> 2149 <text text-anchor="" x="176.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2150 </g> 2151 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2152 <title>runtime.lock (1 samples, 0.04%)</title><rect x="1167.1" y="433" width="0.5" height="15.0" fill="rgb(246,176,26)" rx="2" ry="2" /> 2153 <text text-anchor="" x="1170.12" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2154 </g> 2155 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2156 <title>runtime.growslice (12 samples, 0.51%)</title><rect x="682.6" y="257" width="5.9" height="15.0" fill="rgb(220,140,35)" rx="2" ry="2" /> 2157 <text text-anchor="" x="685.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2158 </g> 2159 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2160 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="991.5" y="433" width="0.5" height="15.0" fill="rgb(225,43,9)" rx="2" ry="2" /> 2161 <text text-anchor="" x="994.51" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2162 </g> 2163 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2164 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="212.5" y="449" width="0.5" height="15.0" fill="rgb(235,73,29)" rx="2" ry="2" /> 2165 <text text-anchor="" x="215.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2166 </g> 2167 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2168 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="881.6" y="305" width="0.5" height="15.0" fill="rgb(254,73,1)" rx="2" ry="2" /> 2169 <text text-anchor="" x="884.57" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2170 </g> 2171 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2172 <title>runtime.newobject (3 samples, 0.13%)</title><rect x="649.2" y="225" width="1.5" height="15.0" fill="rgb(216,205,29)" rx="2" ry="2" /> 2173 <text text-anchor="" x="652.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2174 </g> 2175 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2176 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="660.7" y="177" width="0.5" height="15.0" fill="rgb(216,158,6)" rx="2" ry="2" /> 2177 <text text-anchor="" x="663.69" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2178 </g> 2179 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2180 <title>reflect.Value.Bytes (5 samples, 0.21%)</title><rect x="842.3" y="273" width="2.5" height="15.0" fill="rgb(211,112,38)" rx="2" ry="2" /> 2181 <text text-anchor="" x="845.27" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2182 </g> 2183 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2184 <title>time.Time.date (2 samples, 0.08%)</title><rect x="934.3" y="401" width="1.0" height="15.0" fill="rgb(244,6,33)" rx="2" ry="2" /> 2185 <text text-anchor="" x="937.30" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2186 </g> 2187 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2188 <title>runtime.lock (1 samples, 0.04%)</title><rect x="740.3" y="257" width="0.5" height="15.0" fill="rgb(245,149,1)" rx="2" ry="2" /> 2189 <text text-anchor="" x="743.29" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2190 </g> 2191 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2192 <title>net.(*netFD).readUnlock (2 samples, 0.08%)</title><rect x="137.4" y="401" width="0.9" height="15.0" fill="rgb(246,80,54)" rx="2" ry="2" /> 2193 <text text-anchor="" x="140.35" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2194 </g> 2195 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2196 <title>runtime.growslice (4 samples, 0.17%)</title><rect x="805.0" y="401" width="1.9" height="15.0" fill="rgb(249,13,8)" rx="2" ry="2" /> 2197 <text text-anchor="" x="807.96" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2198 </g> 2199 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2200 <title>runtime.gcstopm (3 samples, 0.13%)</title><rect x="1174.6" y="545" width="1.5" height="15.0" fill="rgb(209,102,42)" rx="2" ry="2" /> 2201 <text text-anchor="" x="1177.58" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2202 </g> 2203 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2204 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="722.9" y="209" width="0.5" height="15.0" fill="rgb(241,196,28)" rx="2" ry="2" /> 2205 <text text-anchor="" x="725.88" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2206 </g> 2207 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2208 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="59.2" y="353" width="0.5" height="15.0" fill="rgb(211,123,46)" rx="2" ry="2" /> 2209 <text text-anchor="" x="62.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2210 </g> 2211 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2212 <title>runtime.scanframeworker (1 samples, 0.04%)</title><rect x="1175.1" y="369" width="0.5" height="15.0" fill="rgb(220,210,8)" rx="2" ry="2" /> 2213 <text text-anchor="" x="1178.08" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2214 </g> 2215 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2216 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="900.5" y="369" width="0.5" height="15.0" fill="rgb(244,180,36)" rx="2" ry="2" /> 2217 <text text-anchor="" x="903.47" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2218 </g> 2219 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2220 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="561.7" y="241" width="0.5" height="15.0" fill="rgb(233,93,24)" rx="2" ry="2" /> 2221 <text text-anchor="" x="564.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2222 </g> 2223 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2224 <title>runtime.sweepone (1 samples, 0.04%)</title><rect x="280.6" y="465" width="0.5" height="15.0" fill="rgb(250,78,12)" rx="2" ry="2" /> 2225 <text text-anchor="" x="283.62" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2226 </g> 2227 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2228 <title>runtime.gchelper (1 samples, 0.04%)</title><rect x="1138.8" y="545" width="0.5" height="15.0" fill="rgb(240,37,4)" rx="2" ry="2" /> 2229 <text text-anchor="" x="1141.76" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2230 </g> 2231 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2232 <title>bytes.Equal (1 samples, 0.04%)</title><rect x="632.3" y="145" width="0.5" height="15.0" fill="rgb(235,101,21)" rx="2" ry="2" /> 2233 <text text-anchor="" x="635.34" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2234 </g> 2235 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2236 <title>reflect.packEface (1 samples, 0.04%)</title><rect x="564.2" y="337" width="0.5" height="15.0" fill="rgb(243,37,50)" rx="2" ry="2" /> 2237 <text text-anchor="" x="567.18" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2238 </g> 2239 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2240 <title>runtime.mapaccess1_faststr (6 samples, 0.25%)</title><rect x="1033.8" y="449" width="3.0" height="15.0" fill="rgb(226,26,53)" rx="2" ry="2" /> 2241 <text text-anchor="" x="1036.79" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2242 </g> 2243 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2244 <title>runtime.scanobject (2 samples, 0.08%)</title><rect x="95.6" y="433" width="1.0" height="15.0" fill="rgb(226,180,21)" rx="2" ry="2" /> 2245 <text text-anchor="" x="98.56" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2246 </g> 2247 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2248 <title>runtime/internal/atomic.Cas (1 samples, 0.04%)</title><rect x="173.2" y="305" width="0.5" height="15.0" fill="rgb(248,117,42)" rx="2" ry="2" /> 2249 <text text-anchor="" x="176.17" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2250 </g> 2251 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2252 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="1042.7" y="417" width="1.0" height="15.0" fill="rgb(225,210,14)" rx="2" ry="2" /> 2253 <text text-anchor="" x="1045.75" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2254 </g> 2255 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2256 <title>runtime.slicebytetostring (2 samples, 0.08%)</title><rect x="926.3" y="385" width="1.0" height="15.0" fill="rgb(208,20,6)" rx="2" ry="2" /> 2257 <text text-anchor="" x="929.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2258 </g> 2259 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2260 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="992.5" y="353" width="0.5" height="15.0" fill="rgb(222,224,35)" rx="2" ry="2" /> 2261 <text text-anchor="" x="995.50" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2262 </g> 2263 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2264 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="249.3" y="417" width="0.5" height="15.0" fill="rgb(248,26,45)" rx="2" ry="2" /> 2265 <text text-anchor="" x="252.28" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2266 </g> 2267 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2268 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).sendMsg (1 samples, 0.04%)</title><rect x="62.2" y="497" width="0.5" height="15.0" fill="rgb(206,142,2)" rx="2" ry="2" /> 2269 <text text-anchor="" x="65.23" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2270 </g> 2271 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2272 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="740.8" y="257" width="0.5" height="15.0" fill="rgb(234,40,27)" rx="2" ry="2" /> 2273 <text text-anchor="" x="743.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2274 </g> 2275 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2276 <title>runtime.(*mspan).nextFreeIndex (1 samples, 0.04%)</title><rect x="921.9" y="321" width="0.5" height="15.0" fill="rgb(244,6,8)" rx="2" ry="2" /> 2277 <text text-anchor="" x="924.86" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2278 </g> 2279 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2280 <title>runtime.mapaccess1_faststr (1 samples, 0.04%)</title><rect x="784.1" y="417" width="0.5" height="15.0" fill="rgb(244,174,48)" rx="2" ry="2" /> 2281 <text text-anchor="" x="787.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2282 </g> 2283 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2284 <title>runtime.mapiternext (3 samples, 0.13%)</title><rect x="277.1" y="529" width="1.5" height="15.0" fill="rgb(232,118,54)" rx="2" ry="2" /> 2285 <text text-anchor="" x="280.14" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2286 </g> 2287 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2288 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="998.0" y="321" width="0.5" height="15.0" fill="rgb(216,178,48)" rx="2" ry="2" /> 2289 <text text-anchor="" x="1000.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2290 </g> 2291 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2292 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="672.6" y="193" width="1.5" height="15.0" fill="rgb(227,161,54)" rx="2" ry="2" /> 2293 <text text-anchor="" x="675.63" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2294 </g> 2295 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2296 <title>net.(*TCPConn).Write (1 samples, 0.04%)</title><rect x="340.3" y="497" width="0.5" height="15.0" fill="rgb(254,25,31)" rx="2" ry="2" /> 2297 <text text-anchor="" x="343.32" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2298 </g> 2299 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2300 <title>time.Duration.String (6 samples, 0.25%)</title><rect x="901.0" y="369" width="3.0" height="15.0" fill="rgb(213,183,45)" rx="2" ry="2" /> 2301 <text text-anchor="" x="903.97" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2302 </g> 2303 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2304 <title>runtime.slicebytetostring (11 samples, 0.46%)</title><rect x="993.0" y="465" width="5.5" height="15.0" fill="rgb(224,86,25)" rx="2" ry="2" /> 2305 <text text-anchor="" x="996.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2306 </g> 2307 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2308 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).handleConn (1 samples, 0.04%)</title><rect x="60.2" y="577" width="0.5" height="15.0" fill="rgb(233,166,17)" rx="2" ry="2" /> 2309 <text text-anchor="" x="63.24" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2310 </g> 2311 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2312 <title>github.com/hashicorp/consul/consul.(*Server).RPC (346 samples, 14.59%)</title><rect x="531.3" y="417" width="172.2" height="15.0" fill="rgb(234,7,7)" rx="2" ry="2" /> 2313 <text text-anchor="" x="534.35" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/hashicorp/c..</text> 2314 </g> 2315 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2316 <title>runtime/internal/atomic.Cas64 (1 samples, 0.04%)</title><rect x="1163.6" y="481" width="0.5" height="15.0" fill="rgb(227,162,39)" rx="2" ry="2" /> 2317 <text text-anchor="" x="1166.63" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2318 </g> 2319 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2320 <title>runtime.lock (1 samples, 0.04%)</title><rect x="1056.7" y="465" width="0.5" height="15.0" fill="rgb(241,136,4)" rx="2" ry="2" /> 2321 <text text-anchor="" x="1059.68" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2322 </g> 2323 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2324 <title>github.com/hashicorp/consul/consul.(*KVS).Get.func1 (135 samples, 5.69%)</title><rect x="597.0" y="289" width="67.2" height="15.0" fill="rgb(248,225,52)" rx="2" ry="2" /> 2325 <text text-anchor="" x="600.02" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> 2326 </g> 2327 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2328 <title>runtime.gcDrainN (2 samples, 0.08%)</title><rect x="230.4" y="433" width="1.0" height="15.0" fill="rgb(254,184,15)" rx="2" ry="2" /> 2329 <text text-anchor="" x="233.38" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2330 </g> 2331 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2332 <title>runtime.(*mcache).nextFree (2 samples, 0.08%)</title><rect x="270.2" y="497" width="1.0" height="15.0" fill="rgb(215,81,9)" rx="2" ry="2" /> 2333 <text text-anchor="" x="273.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2334 </g> 2335 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2336 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="273.7" y="529" width="0.5" height="15.0" fill="rgb(227,146,16)" rx="2" ry="2" /> 2337 <text text-anchor="" x="276.66" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2338 </g> 2339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2340 <title>net/http.Header.WriteSubset (45 samples, 1.90%)</title><rect x="304.5" y="481" width="22.4" height="15.0" fill="rgb(252,143,49)" rx="2" ry="2" /> 2341 <text text-anchor="" x="307.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text> 2342 </g> 2343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2344 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="104.5" y="481" width="0.5" height="15.0" fill="rgb(225,224,53)" rx="2" ry="2" /> 2345 <text text-anchor="" x="107.52" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2346 </g> 2347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2348 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="875.6" y="401" width="1.5" height="15.0" fill="rgb(214,197,43)" rx="2" ry="2" /> 2349 <text text-anchor="" x="878.60" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2350 </g> 2351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2352 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/serf/serf.(*delegate).MergeRemoteState (1 samples, 0.04%)</title><rect x="60.2" y="545" width="0.5" height="15.0" fill="rgb(213,89,22)" rx="2" ry="2" /> 2353 <text text-anchor="" x="63.24" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2354 </g> 2355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2356 <title>net/http.Header.clone (40 samples, 1.69%)</title><rect x="955.2" y="433" width="19.9" height="15.0" fill="rgb(222,162,44)" rx="2" ry="2" /> 2357 <text text-anchor="" x="958.19" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2358 </g> 2359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2360 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="876.1" y="385" width="0.5" height="15.0" fill="rgb(231,214,45)" rx="2" ry="2" /> 2361 <text text-anchor="" x="879.10" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2362 </g> 2363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2364 <title>runtime.writebarrierptr_nostore1.func1 (6 samples, 0.25%)</title><rect x="508.0" y="417" width="3.0" height="15.0" fill="rgb(243,147,25)" rx="2" ry="2" /> 2365 <text text-anchor="" x="510.97" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2366 </g> 2367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2368 <title>net/http.newTextprotoReader (5 samples, 0.21%)</title><rect x="111.0" y="529" width="2.5" height="15.0" fill="rgb(231,106,20)" rx="2" ry="2" /> 2369 <text text-anchor="" x="113.99" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2370 </g> 2371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2372 <title>net/url.(*URL).Query (26 samples, 1.10%)</title><rect x="758.2" y="417" width="12.9" height="15.0" fill="rgb(228,218,30)" rx="2" ry="2" /> 2373 <text text-anchor="" x="761.20" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2374 </g> 2375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2376 <title>runtime.mapaccess1_faststr (5 samples, 0.21%)</title><rect x="334.8" y="481" width="2.5" height="15.0" fill="rgb(215,37,48)" rx="2" ry="2" /> 2377 <text text-anchor="" x="337.85" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2378 </g> 2379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2380 <title>encoding/json.fieldByIndex (7 samples, 0.30%)</title><rect x="846.7" y="289" width="3.5" height="15.0" fill="rgb(233,48,53)" rx="2" ry="2" /> 2381 <text text-anchor="" x="849.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2382 </g> 2383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2384 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="717.9" y="369" width="0.5" height="15.0" fill="rgb(237,201,54)" rx="2" ry="2" /> 2385 <text text-anchor="" x="720.90" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2386 </g> 2387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2388 <title>runtime.scanobject (2 samples, 0.08%)</title><rect x="230.4" y="417" width="1.0" height="15.0" fill="rgb(244,104,47)" rx="2" ry="2" /> 2389 <text text-anchor="" x="233.38" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2390 </g> 2391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2392 <title>sync/atomic.AddUint32 (1 samples, 0.04%)</title><rect x="1039.8" y="433" width="0.5" height="15.0" fill="rgb(242,221,44)" rx="2" ry="2" /> 2393 <text text-anchor="" x="1042.76" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2394 </g> 2395 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2396 <title>runtime.slicebytetostring (3 samples, 0.13%)</title><rect x="722.4" y="337" width="1.5" height="15.0" fill="rgb(212,3,15)" rx="2" ry="2" /> 2397 <text text-anchor="" x="725.38" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2398 </g> 2399 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2400 <title>net/http.(*response).shouldReuseConnection (1 samples, 0.04%)</title><rect x="458.2" y="561" width="0.5" height="15.0" fill="rgb(246,43,43)" rx="2" ry="2" /> 2401 <text text-anchor="" x="461.22" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2402 </g> 2403 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2404 <title>encoding/base64.(*Encoding).Encode (4 samples, 0.17%)</title><rect x="840.3" y="273" width="2.0" height="15.0" fill="rgb(242,86,47)" rx="2" ry="2" /> 2405 <text text-anchor="" x="843.28" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2406 </g> 2407 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2408 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="722.9" y="257" width="0.5" height="15.0" fill="rgb(245,183,51)" rx="2" ry="2" /> 2409 <text text-anchor="" x="725.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2410 </g> 2411 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2412 <title>runtime.scanstack.func1 (37 samples, 1.56%)</title><rect x="1082.5" y="449" width="18.5" height="15.0" fill="rgb(226,167,45)" rx="2" ry="2" /> 2413 <text text-anchor="" x="1085.55" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2414 </g> 2415 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2416 <title>runtime.(*gcWork).balance (1 samples, 0.04%)</title><rect x="179.6" y="385" width="0.5" height="15.0" fill="rgb(217,187,25)" rx="2" ry="2" /> 2417 <text text-anchor="" x="182.64" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2418 </g> 2419 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2420 <title>runtime.(*mcache).nextFree.func1 (1 samples, 0.04%)</title><rect x="280.1" y="481" width="0.5" height="15.0" fill="rgb(205,80,14)" rx="2" ry="2" /> 2421 <text text-anchor="" x="283.13" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2422 </g> 2423 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2424 <title>runtime.newMarkBits (2 samples, 0.08%)</title><rect x="1056.7" y="481" width="1.0" height="15.0" fill="rgb(227,55,33)" rx="2" ry="2" /> 2425 <text text-anchor="" x="1059.68" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2426 </g> 2427 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2428 <title>runtime.heapBitsForObject (3 samples, 0.13%)</title><rect x="200.5" y="369" width="1.5" height="15.0" fill="rgb(239,109,4)" rx="2" ry="2" /> 2429 <text text-anchor="" x="203.53" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2430 </g> 2431 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2432 <title>runtime.mallocgc (4 samples, 0.17%)</title><rect x="1005.4" y="417" width="2.0" height="15.0" fill="rgb(217,92,23)" rx="2" ry="2" /> 2433 <text text-anchor="" x="1008.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2434 </g> 2435 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2436 <title>runtime.rawstring (2 samples, 0.08%)</title><rect x="734.3" y="337" width="1.0" height="15.0" fill="rgb(221,115,45)" rx="2" ry="2" /> 2437 <text text-anchor="" x="737.32" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2438 </g> 2439 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2440 <title>runtime.netpollinited (1 samples, 0.04%)</title><rect x="1164.1" y="529" width="0.5" height="15.0" fill="rgb(217,165,0)" rx="2" ry="2" /> 2441 <text text-anchor="" x="1167.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2442 </g> 2443 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2444 <title>reflect.Value.Elem (1 samples, 0.04%)</title><rect x="857.2" y="321" width="0.5" height="15.0" fill="rgb(217,176,8)" rx="2" ry="2" /> 2445 <text text-anchor="" x="860.19" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2446 </g> 2447 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2448 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="326.4" y="417" width="0.5" height="15.0" fill="rgb(246,146,13)" rx="2" ry="2" /> 2449 <text text-anchor="" x="329.39" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2450 </g> 2451 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2452 <title>runtime.concatstring2 (8 samples, 0.34%)</title><rect x="612.4" y="177" width="4.0" height="15.0" fill="rgb(246,120,23)" rx="2" ry="2" /> 2453 <text text-anchor="" x="615.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2454 </g> 2455 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2456 <title>runtime.markroot.func1 (8 samples, 0.34%)</title><rect x="1167.6" y="449" width="4.0" height="15.0" fill="rgb(228,124,23)" rx="2" ry="2" /> 2457 <text text-anchor="" x="1170.61" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2458 </g> 2459 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2460 <title>sync.runtime_Semacquire (3 samples, 0.13%)</title><rect x="1036.8" y="417" width="1.5" height="15.0" fill="rgb(229,163,6)" rx="2" ry="2" /> 2461 <text text-anchor="" x="1039.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2462 </g> 2463 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2464 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="723.4" y="225" width="0.5" height="15.0" fill="rgb(253,185,1)" rx="2" ry="2" /> 2465 <text text-anchor="" x="726.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2466 </g> 2467 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2468 <title>runtime.interhash (2 samples, 0.08%)</title><rect x="73.2" y="497" width="1.0" height="15.0" fill="rgb(220,12,48)" rx="2" ry="2" /> 2469 <text text-anchor="" x="76.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2470 </g> 2471 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2472 <title>runtime.gcDrainN (3 samples, 0.13%)</title><rect x="106.0" y="449" width="1.5" height="15.0" fill="rgb(249,78,22)" rx="2" ry="2" /> 2473 <text text-anchor="" x="109.01" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2474 </g> 2475 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2476 <title>runtime.mapassign1 (5 samples, 0.21%)</title><rect x="977.1" y="449" width="2.5" height="15.0" fill="rgb(221,114,28)" rx="2" ry="2" /> 2477 <text text-anchor="" x="980.08" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2478 </g> 2479 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2480 <title>runtime.ifaceeq (1 samples, 0.04%)</title><rect x="853.2" y="273" width="0.5" height="15.0" fill="rgb(222,95,25)" rx="2" ry="2" /> 2481 <text text-anchor="" x="856.21" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2482 </g> 2483 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2484 <title>strings.Count (1 samples, 0.04%)</title><rect x="678.6" y="209" width="0.5" height="15.0" fill="rgb(247,32,3)" rx="2" ry="2" /> 2485 <text text-anchor="" x="681.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2486 </g> 2487 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2488 <title>runtime.notewakeup (1 samples, 0.04%)</title><rect x="1135.8" y="465" width="0.5" height="15.0" fill="rgb(246,158,9)" rx="2" ry="2" /> 2489 <text text-anchor="" x="1138.78" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2490 </g> 2491 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2492 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="677.1" y="145" width="0.5" height="15.0" fill="rgb(220,173,14)" rx="2" ry="2" /> 2493 <text text-anchor="" x="680.11" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2494 </g> 2495 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2496 <title>runtime.typedmemmove (3 samples, 0.13%)</title><rect x="969.1" y="401" width="1.5" height="15.0" fill="rgb(222,198,45)" rx="2" ry="2" /> 2497 <text text-anchor="" x="972.12" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2498 </g> 2499 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2500 <title>reflect.Value.assignTo (1 samples, 0.04%)</title><rect x="586.6" y="337" width="0.5" height="15.0" fill="rgb(209,173,29)" rx="2" ry="2" /> 2501 <text text-anchor="" x="589.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2502 </g> 2503 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2504 <title>net/url.parseQuery (31 samples, 1.31%)</title><rect x="870.1" y="433" width="15.4" height="15.0" fill="rgb(251,131,22)" rx="2" ry="2" /> 2505 <text text-anchor="" x="873.13" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2506 </g> 2507 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2508 <title>runtime.deferproc (2 samples, 0.08%)</title><rect x="265.2" y="529" width="1.0" height="15.0" fill="rgb(215,69,52)" rx="2" ry="2" /> 2509 <text text-anchor="" x="268.20" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2510 </g> 2511 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2512 <title>runtime.systemstack (6 samples, 0.25%)</title><rect x="99.5" y="513" width="3.0" height="15.0" fill="rgb(213,191,29)" rx="2" ry="2" /> 2513 <text text-anchor="" x="102.54" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2514 </g> 2515 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2516 <title>runtime.mapassign1 (10 samples, 0.42%)</title><rect x="762.2" y="369" width="5.0" height="15.0" fill="rgb(216,185,29)" rx="2" ry="2" /> 2517 <text text-anchor="" x="765.18" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2518 </g> 2519 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2520 <title>reflect.(*rtype).Align (2 samples, 0.08%)</title><rect x="581.6" y="337" width="1.0" height="15.0" fill="rgb(250,189,50)" rx="2" ry="2" /> 2521 <text text-anchor="" x="584.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2522 </g> 2523 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2524 <title>runtime.(*gcWork).dispose (1 samples, 0.04%)</title><rect x="1048.2" y="401" width="0.5" height="15.0" fill="rgb(254,224,41)" rx="2" ry="2" /> 2525 <text text-anchor="" x="1051.22" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2526 </g> 2527 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2528 <title>bufio.(*Writer).flush (2 samples, 0.08%)</title><rect x="64.7" y="449" width="1.0" height="15.0" fill="rgb(220,52,48)" rx="2" ry="2" /> 2529 <text text-anchor="" x="67.72" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2530 </g> 2531 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2532 <title>reflect.Value.Len (1 samples, 0.04%)</title><rect x="858.7" y="353" width="0.5" height="15.0" fill="rgb(235,32,48)" rx="2" ry="2" /> 2533 <text text-anchor="" x="861.68" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2534 </g> 2535 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2536 <title>github.com/hashicorp/consul/command/agent.setHeaders (1 samples, 0.04%)</title><rect x="949.7" y="481" width="0.5" height="15.0" fill="rgb(247,2,38)" rx="2" ry="2" /> 2537 <text text-anchor="" x="952.72" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2538 </g> 2539 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2540 <title>syscall.read (60 samples, 2.53%)</title><rect x="144.3" y="385" width="29.9" height="15.0" fill="rgb(227,110,28)" rx="2" ry="2" /> 2541 <text text-anchor="" x="147.32" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text> 2542 </g> 2543 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2544 <title>net/url.ParseQuery (26 samples, 1.10%)</title><rect x="758.2" y="401" width="12.9" height="15.0" fill="rgb(243,189,41)" rx="2" ry="2" /> 2545 <text text-anchor="" x="761.20" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2546 </g> 2547 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2548 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="905.4" y="369" width="0.5" height="15.0" fill="rgb(240,90,2)" rx="2" ry="2" /> 2549 <text text-anchor="" x="908.45" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2550 </g> 2551 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2552 <title>net/url.(*URL).Query (27 samples, 1.14%)</title><rect x="735.3" y="433" width="13.4" height="15.0" fill="rgb(238,5,38)" rx="2" ry="2" /> 2553 <text text-anchor="" x="738.31" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2554 </g> 2555 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2556 <title>runtime.futexsleep (1 samples, 0.04%)</title><rect x="1158.2" y="513" width="0.5" height="15.0" fill="rgb(210,229,30)" rx="2" ry="2" /> 2557 <text text-anchor="" x="1161.16" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2558 </g> 2559 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2560 <title>reflect.flag.mustBe (1 samples, 0.04%)</title><rect x="696.5" y="353" width="0.5" height="15.0" fill="rgb(220,184,53)" rx="2" ry="2" /> 2561 <text text-anchor="" x="699.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2562 </g> 2563 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2564 <title>reflect.Value.Set (4 samples, 0.17%)</title><rect x="568.7" y="337" width="1.9" height="15.0" fill="rgb(242,201,14)" rx="2" ry="2" /> 2565 <text text-anchor="" x="571.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2566 </g> 2567 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2568 <title>net/rpc.(*Server).getRequest (14 samples, 0.59%)</title><rect x="540.3" y="353" width="7.0" height="15.0" fill="rgb(233,87,4)" rx="2" ry="2" /> 2569 <text text-anchor="" x="543.30" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2570 </g> 2571 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2572 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="326.4" y="353" width="0.5" height="15.0" fill="rgb(206,151,8)" rx="2" ry="2" /> 2573 <text text-anchor="" x="329.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2574 </g> 2575 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2576 <title>github.com/hashicorp/consul/consul.(*Server).resolveToken (1 samples, 0.04%)</title><rect x="692.0" y="305" width="0.5" height="15.0" fill="rgb(249,26,52)" rx="2" ry="2" /> 2577 <text text-anchor="" x="695.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2578 </g> 2579 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2580 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="788.5" y="241" width="0.5" height="15.0" fill="rgb(248,147,19)" rx="2" ry="2" /> 2581 <text text-anchor="" x="791.54" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2582 </g> 2583 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2584 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="64.2" y="497" width="0.5" height="15.0" fill="rgb(237,30,13)" rx="2" ry="2" /> 2585 <text text-anchor="" x="67.22" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2586 </g> 2587 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2588 <title>runtime.scanobject (3 samples, 0.13%)</title><rect x="260.7" y="401" width="1.5" height="15.0" fill="rgb(239,175,17)" rx="2" ry="2" /> 2589 <text text-anchor="" x="263.73" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2590 </g> 2591 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2592 <title>github.com/hashicorp/consul/consul.(*Server).blockingRPC (193 samples, 8.14%)</title><rect x="594.5" y="305" width="96.0" height="15.0" fill="rgb(247,114,2)" rx="2" ry="2" /> 2593 <text text-anchor="" x="597.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/..</text> 2594 </g> 2595 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2596 <title>net/http.readTransfer (20 samples, 0.84%)</title><rect x="114.5" y="529" width="9.9" height="15.0" fill="rgb(235,189,16)" rx="2" ry="2" /> 2597 <text text-anchor="" x="117.47" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2598 </g> 2599 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2600 <title>runtime.mapaccess2_fast64 (3 samples, 0.13%)</title><rect x="331.9" y="465" width="1.5" height="15.0" fill="rgb(242,155,28)" rx="2" ry="2" /> 2601 <text text-anchor="" x="334.86" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2602 </g> 2603 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2604 <title>runtime.gcAssistAlloc (2 samples, 0.08%)</title><rect x="1025.3" y="353" width="1.0" height="15.0" fill="rgb(247,76,50)" rx="2" ry="2" /> 2605 <text text-anchor="" x="1028.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2606 </g> 2607 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2608 <title>runtime.deferreturn (1 samples, 0.04%)</title><rect x="900.5" y="385" width="0.5" height="15.0" fill="rgb(206,139,50)" rx="2" ry="2" /> 2609 <text text-anchor="" x="903.47" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2610 </g> 2611 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2612 <title>runtime.pcdatavalue (1 samples, 0.04%)</title><rect x="1179.6" y="513" width="0.5" height="15.0" fill="rgb(244,107,38)" rx="2" ry="2" /> 2613 <text text-anchor="" x="1182.55" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2614 </g> 2615 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2616 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="783.1" y="273" width="0.5" height="15.0" fill="rgb(250,222,12)" rx="2" ry="2" /> 2617 <text text-anchor="" x="786.07" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2618 </g> 2619 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2620 <title>runtime.rawstring (2 samples, 0.08%)</title><rect x="1025.3" y="385" width="1.0" height="15.0" fill="rgb(209,163,41)" rx="2" ry="2" /> 2621 <text text-anchor="" x="1028.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2622 </g> 2623 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2624 <title>strings.IndexAny (3 samples, 0.13%)</title><rect x="884.1" y="417" width="1.4" height="15.0" fill="rgb(222,65,20)" rx="2" ry="2" /> 2625 <text text-anchor="" x="887.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2626 </g> 2627 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2628 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*ioDecReader).readn1 (2 samples, 0.08%)</title><rect x="63.2" y="497" width="1.0" height="15.0" fill="rgb(254,182,18)" rx="2" ry="2" /> 2629 <text text-anchor="" x="66.23" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2630 </g> 2631 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2632 <title>runtime.lock (2 samples, 0.08%)</title><rect x="105.0" y="481" width="1.0" height="15.0" fill="rgb(249,48,14)" rx="2" ry="2" /> 2633 <text text-anchor="" x="108.02" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2634 </g> 2635 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2636 <title>runtime.notewakeup (6 samples, 0.25%)</title><rect x="1154.2" y="497" width="3.0" height="15.0" fill="rgb(215,19,40)" rx="2" ry="2" /> 2637 <text text-anchor="" x="1157.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2638 </g> 2639 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2640 <title>runtime.(*mheap).alloc.func1 (1 samples, 0.04%)</title><rect x="242.3" y="433" width="0.5" height="15.0" fill="rgb(220,145,29)" rx="2" ry="2" /> 2641 <text text-anchor="" x="245.32" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2642 </g> 2643 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2644 <title>runtime.mapaccess2_faststr (2 samples, 0.08%)</title><rect x="119.9" y="497" width="1.0" height="15.0" fill="rgb(249,173,13)" rx="2" ry="2" /> 2645 <text text-anchor="" x="122.94" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2646 </g> 2647 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2648 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="896.0" y="353" width="0.5" height="15.0" fill="rgb(235,88,39)" rx="2" ry="2" /> 2649 <text text-anchor="" x="898.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2650 </g> 2651 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2652 <title>runtime.slicebytetostring (2 samples, 0.08%)</title><rect x="1025.3" y="417" width="1.0" height="15.0" fill="rgb(234,126,4)" rx="2" ry="2" /> 2653 <text text-anchor="" x="1028.34" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2654 </g> 2655 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2656 <title>runtime.memclr (2 samples, 0.08%)</title><rect x="818.4" y="417" width="1.0" height="15.0" fill="rgb(238,66,44)" rx="2" ry="2" /> 2657 <text text-anchor="" x="821.39" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2658 </g> 2659 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2660 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1182.5" y="433" width="0.5" height="15.0" fill="rgb(239,22,42)" rx="2" ry="2" /> 2661 <text text-anchor="" x="1185.54" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2662 </g> 2663 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2664 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="1012.4" y="353" width="0.5" height="15.0" fill="rgb(220,127,23)" rx="2" ry="2" /> 2665 <text text-anchor="" x="1015.40" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2666 </g> 2667 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2668 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="1174.6" y="465" width="1.0" height="15.0" fill="rgb(220,211,13)" rx="2" ry="2" /> 2669 <text text-anchor="" x="1177.58" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2670 </g> 2671 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2672 <title>runtime.funcdata (1 samples, 0.04%)</title><rect x="1170.1" y="353" width="0.5" height="15.0" fill="rgb(239,163,1)" rx="2" ry="2" /> 2673 <text text-anchor="" x="1173.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2674 </g> 2675 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2676 <title>runtime.duffzero (1 samples, 0.04%)</title><rect x="274.2" y="545" width="0.5" height="15.0" fill="rgb(226,86,34)" rx="2" ry="2" /> 2677 <text text-anchor="" x="277.16" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2678 </g> 2679 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2680 <title>runtime.shade (1 samples, 0.04%)</title><rect x="933.3" y="321" width="0.5" height="15.0" fill="rgb(229,57,33)" rx="2" ry="2" /> 2681 <text text-anchor="" x="936.31" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2682 </g> 2683 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2684 <title>runtime.bgsweep (21 samples, 0.89%)</title><rect x="1050.2" y="577" width="10.5" height="15.0" fill="rgb(206,204,39)" rx="2" ry="2" /> 2685 <text text-anchor="" x="1053.21" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2686 </g> 2687 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2688 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="275.6" y="513" width="0.5" height="15.0" fill="rgb(254,134,20)" rx="2" ry="2" /> 2689 <text text-anchor="" x="278.65" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2690 </g> 2691 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2692 <title>runtime.gcDrainN (46 samples, 1.94%)</title><rect x="179.6" y="401" width="22.9" height="15.0" fill="rgb(218,35,25)" rx="2" ry="2" /> 2693 <text text-anchor="" x="182.64" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 2694 </g> 2695 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2696 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).KVSEndpoint (589 samples, 24.83%)</title><rect x="526.4" y="465" width="293.0" height="15.0" fill="rgb(254,54,0)" rx="2" ry="2" /> 2697 <text text-anchor="" x="529.37" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/hashicorp/consul/command/age..</text> 2698 </g> 2699 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2700 <title>bufio.(*Writer).flush (324 samples, 13.66%)</title><rect x="292.6" y="529" width="161.1" height="15.0" fill="rgb(232,44,53)" rx="2" ry="2" /> 2701 <text text-anchor="" x="295.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufio.(*Writer).flush</text> 2702 </g> 2703 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2704 <title>runtime.(*mcentral).grow (2 samples, 0.08%)</title><rect x="879.1" y="289" width="1.0" height="15.0" fill="rgb(251,17,25)" rx="2" ry="2" /> 2705 <text text-anchor="" x="882.08" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2706 </g> 2707 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2708 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="755.7" y="401" width="0.5" height="15.0" fill="rgb(234,116,19)" rx="2" ry="2" /> 2709 <text text-anchor="" x="758.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2710 </g> 2711 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2712 <title>runtime.gcmarknewobject (1 samples, 0.04%)</title><rect x="806.5" y="369" width="0.4" height="15.0" fill="rgb(231,166,54)" rx="2" ry="2" /> 2713 <text text-anchor="" x="809.45" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2714 </g> 2715 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2716 <title>runtime.mapaccess1 (5 samples, 0.21%)</title><rect x="588.1" y="321" width="2.4" height="15.0" fill="rgb(210,74,43)" rx="2" ry="2" /> 2717 <text text-anchor="" x="591.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2718 </g> 2719 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2720 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge (2 samples, 0.08%)</title><rect x="603.0" y="177" width="1.0" height="15.0" fill="rgb(244,64,26)" rx="2" ry="2" /> 2721 <text text-anchor="" x="605.98" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2722 </g> 2723 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2724 <title>runtime.netpoll (1 samples, 0.04%)</title><rect x="1185.5" y="545" width="0.5" height="15.0" fill="rgb(226,220,16)" rx="2" ry="2" /> 2725 <text text-anchor="" x="1188.52" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2726 </g> 2727 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2728 <title>net/http.(*ServeMux).ServeHTTP (1,189 samples, 50.13%)</title><rect x="458.7" y="545" width="591.5" height="15.0" fill="rgb(251,14,38)" rx="2" ry="2" /> 2729 <text text-anchor="" x="461.72" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.(*ServeMux).ServeHTTP</text> 2730 </g> 2731 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2732 <title>runtime.duffcopy (11 samples, 0.46%)</title><rect x="476.1" y="481" width="5.5" height="15.0" fill="rgb(235,126,34)" rx="2" ry="2" /> 2733 <text text-anchor="" x="479.13" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2734 </g> 2735 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2736 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="212.5" y="401" width="0.5" height="15.0" fill="rgb(205,138,31)" rx="2" ry="2" /> 2737 <text text-anchor="" x="215.47" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2738 </g> 2739 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2740 <title>runtime.step (1 samples, 0.04%)</title><rect x="1152.2" y="305" width="0.5" height="15.0" fill="rgb(254,134,20)" rx="2" ry="2" /> 2741 <text text-anchor="" x="1155.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2742 </g> 2743 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2744 <title>runtime.mapassign1 (13 samples, 0.55%)</title><rect x="877.1" y="417" width="6.5" height="15.0" fill="rgb(245,46,22)" rx="2" ry="2" /> 2745 <text text-anchor="" x="880.09" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2746 </g> 2747 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2748 <title>runtime.gcMarkTermination (6 samples, 0.25%)</title><rect x="1134.8" y="545" width="3.0" height="15.0" fill="rgb(235,103,42)" rx="2" ry="2" /> 2749 <text text-anchor="" x="1137.78" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2750 </g> 2751 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2752 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).collectStats (1 samples, 0.04%)</title><rect x="59.7" y="577" width="0.5" height="15.0" fill="rgb(244,58,27)" rx="2" ry="2" /> 2753 <text text-anchor="" x="62.75" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2754 </g> 2755 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2756 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).wrap.func1 (999 samples, 42.12%)</title><rect x="520.4" y="497" width="497.0" height="15.0" fill="rgb(220,193,47)" rx="2" ry="2" /> 2757 <text text-anchor="" x="523.40" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/hashicorp/consul/command/agent.(*HTTPServer).wrap.func1</text> 2758 </g> 2759 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2760 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="783.6" y="337" width="0.5" height="15.0" fill="rgb(213,210,40)" rx="2" ry="2" /> 2761 <text text-anchor="" x="786.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2762 </g> 2763 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2764 <title>runtime.mallocgc (12 samples, 0.51%)</title><rect x="736.8" y="353" width="6.0" height="15.0" fill="rgb(236,17,3)" rx="2" ry="2" /> 2765 <text text-anchor="" x="739.80" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2766 </g> 2767 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2768 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).gossip (3 samples, 0.13%)</title><rect x="60.7" y="545" width="1.5" height="15.0" fill="rgb(214,3,38)" rx="2" ry="2" /> 2769 <text text-anchor="" x="63.74" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2770 </g> 2771 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2772 <title>runtime.deferreturn.func1 (2 samples, 0.08%)</title><rect x="102.5" y="497" width="1.0" height="15.0" fill="rgb(228,51,11)" rx="2" ry="2" /> 2773 <text text-anchor="" x="105.53" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2774 </g> 2775 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2776 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="886.5" y="401" width="0.5" height="15.0" fill="rgb(210,158,28)" rx="2" ry="2" /> 2777 <text text-anchor="" x="889.54" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2778 </g> 2779 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2780 <title>runtime.duffzero (1 samples, 0.04%)</title><rect x="516.4" y="481" width="0.5" height="15.0" fill="rgb(227,86,28)" rx="2" ry="2" /> 2781 <text text-anchor="" x="519.42" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2782 </g> 2783 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2784 <title>runtime.shade (1 samples, 0.04%)</title><rect x="1048.2" y="417" width="0.5" height="15.0" fill="rgb(222,60,9)" rx="2" ry="2" /> 2785 <text text-anchor="" x="1051.22" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2786 </g> 2787 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2788 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="699.5" y="385" width="0.5" height="15.0" fill="rgb(246,217,51)" rx="2" ry="2" /> 2789 <text text-anchor="" x="702.49" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2790 </g> 2791 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2792 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="639.8" y="209" width="0.5" height="15.0" fill="rgb(247,49,51)" rx="2" ry="2" /> 2793 <text text-anchor="" x="642.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2794 </g> 2795 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2796 <title>sync.(*Mutex).Lock (3 samples, 0.13%)</title><rect x="1036.8" y="433" width="1.5" height="15.0" fill="rgb(214,218,3)" rx="2" ry="2" /> 2797 <text text-anchor="" x="1039.78" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2798 </g> 2799 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2800 <title>runtime.(*mheap).alloc_m (1 samples, 0.04%)</title><rect x="766.2" y="273" width="0.5" height="15.0" fill="rgb(210,86,41)" rx="2" ry="2" /> 2801 <text text-anchor="" x="769.16" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2802 </g> 2803 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2804 <title>runtime.gcAssistAlloc (2 samples, 0.08%)</title><rect x="242.8" y="465" width="1.0" height="15.0" fill="rgb(222,227,37)" rx="2" ry="2" /> 2805 <text text-anchor="" x="245.82" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2806 </g> 2807 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2808 <title>runtime.(*mcache).releaseAll (1 samples, 0.04%)</title><rect x="1181.5" y="417" width="0.5" height="15.0" fill="rgb(206,107,49)" rx="2" ry="2" /> 2809 <text text-anchor="" x="1184.54" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2810 </g> 2811 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2812 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1029.8" y="401" width="0.5" height="15.0" fill="rgb(249,51,2)" rx="2" ry="2" /> 2813 <text text-anchor="" x="1032.81" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2814 </g> 2815 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2816 <title>net/http.(*chunkWriter).close (2 samples, 0.08%)</title><rect x="456.2" y="545" width="1.0" height="15.0" fill="rgb(211,177,24)" rx="2" ry="2" /> 2817 <text text-anchor="" x="459.23" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2818 </g> 2819 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2820 <title>context.removeChild (8 samples, 0.34%)</title><rect x="70.2" y="529" width="4.0" height="15.0" fill="rgb(250,206,47)" rx="2" ry="2" /> 2821 <text text-anchor="" x="73.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2822 </g> 2823 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2824 <title>runtime.fastrand1 (2 samples, 0.08%)</title><rect x="957.7" y="401" width="1.0" height="15.0" fill="rgb(214,64,24)" rx="2" ry="2" /> 2825 <text text-anchor="" x="960.68" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2826 </g> 2827 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2828 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).Abort (1 samples, 0.04%)</title><rect x="661.2" y="257" width="0.5" height="15.0" fill="rgb(211,111,13)" rx="2" ry="2" /> 2829 <text text-anchor="" x="664.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2830 </g> 2831 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2832 <title>net/textproto.MIMEHeader.Get (2 samples, 0.08%)</title><rect x="772.1" y="401" width="1.0" height="15.0" fill="rgb(238,191,30)" rx="2" ry="2" /> 2833 <text text-anchor="" x="775.12" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2834 </g> 2835 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2836 <title>runtime.stopm (3 samples, 0.13%)</title><rect x="1138.8" y="561" width="1.5" height="15.0" fill="rgb(252,53,26)" rx="2" ry="2" /> 2837 <text text-anchor="" x="1141.76" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2838 </g> 2839 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2840 <title>runtime.handoffp (1 samples, 0.04%)</title><rect x="1137.8" y="497" width="0.5" height="15.0" fill="rgb(236,160,37)" rx="2" ry="2" /> 2841 <text text-anchor="" x="1140.77" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2842 </g> 2843 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2844 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="1014.4" y="433" width="0.5" height="15.0" fill="rgb(220,37,16)" rx="2" ry="2" /> 2845 <text text-anchor="" x="1017.39" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2846 </g> 2847 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2848 <title>net.(*conn).Write (2 samples, 0.08%)</title><rect x="64.7" y="433" width="1.0" height="15.0" fill="rgb(224,200,14)" rx="2" ry="2" /> 2849 <text text-anchor="" x="67.72" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2850 </g> 2851 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2852 <title>net/url.ParseQuery (27 samples, 1.14%)</title><rect x="735.3" y="417" width="13.4" height="15.0" fill="rgb(209,121,10)" rx="2" ry="2" /> 2853 <text text-anchor="" x="738.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2854 </g> 2855 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2856 <title>runtime.mapassign1 (7 samples, 0.30%)</title><rect x="86.6" y="513" width="3.5" height="15.0" fill="rgb(233,77,43)" rx="2" ry="2" /> 2857 <text text-anchor="" x="89.61" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2858 </g> 2859 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2860 <title>runtime.makemap (4 samples, 0.17%)</title><rect x="801.5" y="385" width="2.0" height="15.0" fill="rgb(218,101,24)" rx="2" ry="2" /> 2861 <text text-anchor="" x="804.48" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2862 </g> 2863 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2864 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="777.1" y="337" width="0.5" height="15.0" fill="rgb(213,46,52)" rx="2" ry="2" /> 2865 <text text-anchor="" x="780.10" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2866 </g> 2867 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2868 <title>runtime.gchelper (1 samples, 0.04%)</title><rect x="1152.2" y="497" width="0.5" height="15.0" fill="rgb(220,114,13)" rx="2" ry="2" /> 2869 <text text-anchor="" x="1155.19" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2870 </g> 2871 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2872 <title>runtime.(*mcentral).cacheSpan (2 samples, 0.08%)</title><rect x="1042.7" y="369" width="1.0" height="15.0" fill="rgb(214,165,2)" rx="2" ry="2" /> 2873 <text text-anchor="" x="1045.75" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2874 </g> 2875 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2876 <title>runtime.timerproc (1 samples, 0.04%)</title><rect x="1138.3" y="577" width="0.5" height="15.0" fill="rgb(243,62,12)" rx="2" ry="2" /> 2877 <text text-anchor="" x="1141.26" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2878 </g> 2879 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2880 <title>github.com/hashicorp/consul/consul/structs.(*KeyRequest).IsRead (1 samples, 0.04%)</title><rect x="691.5" y="289" width="0.5" height="15.0" fill="rgb(226,200,0)" rx="2" ry="2" /> 2881 <text text-anchor="" x="694.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2882 </g> 2883 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2884 <title>reflect.Value.Index (2 samples, 0.08%)</title><rect x="857.7" y="353" width="1.0" height="15.0" fill="rgb(218,14,9)" rx="2" ry="2" /> 2885 <text text-anchor="" x="860.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2886 </g> 2887 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2888 <title>runtime.duffzero (1 samples, 0.04%)</title><rect x="143.3" y="337" width="0.5" height="15.0" fill="rgb(245,73,49)" rx="2" ry="2" /> 2889 <text text-anchor="" x="146.32" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2890 </g> 2891 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2892 <title>runtime.greyobject (9 samples, 0.38%)</title><rect x="1095.5" y="401" width="4.5" height="15.0" fill="rgb(242,47,23)" rx="2" ry="2" /> 2893 <text text-anchor="" x="1098.48" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2894 </g> 2895 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2896 <title>net.(*netFD).writeTo (1 samples, 0.04%)</title><rect x="62.2" y="433" width="0.5" height="15.0" fill="rgb(249,205,37)" rx="2" ry="2" /> 2897 <text text-anchor="" x="65.23" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2898 </g> 2899 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2900 <title>runtime.newMarkBits (1 samples, 0.04%)</title><rect x="1011.9" y="321" width="0.5" height="15.0" fill="rgb(210,121,4)" rx="2" ry="2" /> 2901 <text text-anchor="" x="1014.91" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2902 </g> 2903 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2904 <title>runtime.resetspinning (2 samples, 0.08%)</title><rect x="1176.1" y="545" width="1.0" height="15.0" fill="rgb(230,182,45)" rx="2" ry="2" /> 2905 <text text-anchor="" x="1179.07" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2906 </g> 2907 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2908 <title>fmt.Sprintf (48 samples, 2.02%)</title><rect x="889.0" y="449" width="23.9" height="15.0" fill="rgb(216,148,19)" rx="2" ry="2" /> 2909 <text text-anchor="" x="892.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text> 2910 </g> 2911 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2912 <title>time.Time.date (2 samples, 0.08%)</title><rect x="328.9" y="449" width="1.0" height="15.0" fill="rgb(219,11,44)" rx="2" ry="2" /> 2913 <text text-anchor="" x="331.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2914 </g> 2915 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2916 <title>runtime.gentraceback (1 samples, 0.04%)</title><rect x="1182.5" y="369" width="0.5" height="15.0" fill="rgb(220,15,5)" rx="2" ry="2" /> 2917 <text text-anchor="" x="1185.54" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2918 </g> 2919 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2920 <title>runtime.injectglist (1 samples, 0.04%)</title><rect x="1141.7" y="513" width="0.5" height="15.0" fill="rgb(220,27,23)" rx="2" ry="2" /> 2921 <text text-anchor="" x="1144.75" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2922 </g> 2923 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2924 <title>runtime.mallocgc (13 samples, 0.55%)</title><rect x="239.3" y="481" width="6.5" height="15.0" fill="rgb(216,28,0)" rx="2" ry="2" /> 2925 <text text-anchor="" x="242.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2926 </g> 2927 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2928 <title>github.com/hashicorp/consul/consul/state.maxIndexTxn (84 samples, 3.54%)</title><rect x="598.5" y="241" width="41.8" height="15.0" fill="rgb(243,195,40)" rx="2" ry="2" /> 2929 <text text-anchor="" x="601.51" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> 2930 </g> 2931 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2932 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="730.8" y="257" width="0.5" height="15.0" fill="rgb(229,148,10)" rx="2" ry="2" /> 2933 <text text-anchor="" x="733.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2934 </g> 2935 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2936 <title>runtime.aeshashbody (2 samples, 0.08%)</title><rect x="237.8" y="497" width="1.0" height="15.0" fill="rgb(213,111,11)" rx="2" ry="2" /> 2937 <text text-anchor="" x="240.84" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2938 </g> 2939 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2940 <title>strings.Index (2 samples, 0.08%)</title><rect x="767.2" y="369" width="0.9" height="15.0" fill="rgb(222,160,18)" rx="2" ry="2" /> 2941 <text text-anchor="" x="770.15" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2942 </g> 2943 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2944 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.sendRPC (2 samples, 0.08%)</title><rect x="64.7" y="481" width="1.0" height="15.0" fill="rgb(209,173,14)" rx="2" ry="2" /> 2945 <text text-anchor="" x="67.72" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2946 </g> 2947 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2948 <title>net/url.QueryUnescape (1 samples, 0.04%)</title><rect x="795.0" y="369" width="0.5" height="15.0" fill="rgb(218,45,18)" rx="2" ry="2" /> 2949 <text text-anchor="" x="798.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2950 </g> 2951 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2952 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="941.3" y="433" width="1.5" height="15.0" fill="rgb(212,135,36)" rx="2" ry="2" /> 2953 <text text-anchor="" x="944.26" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2954 </g> 2955 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2956 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="961.2" y="369" width="0.5" height="15.0" fill="rgb(217,19,33)" rx="2" ry="2" /> 2957 <text text-anchor="" x="964.16" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2958 </g> 2959 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2960 <title>net/textproto.TrimString (2 samples, 0.08%)</title><rect x="320.4" y="465" width="1.0" height="15.0" fill="rgb(238,159,26)" rx="2" ry="2" /> 2961 <text text-anchor="" x="323.42" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2962 </g> 2963 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2964 <title>sync.runtime_procPin (1 samples, 0.04%)</title><rect x="912.4" y="385" width="0.5" height="15.0" fill="rgb(221,82,20)" rx="2" ry="2" /> 2965 <text text-anchor="" x="915.41" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2966 </g> 2967 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2968 <title>runtime.freespecial (1 samples, 0.04%)</title><rect x="280.6" y="433" width="0.5" height="15.0" fill="rgb(238,198,9)" rx="2" ry="2" /> 2969 <text text-anchor="" x="283.62" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2970 </g> 2971 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2972 <title>net/http.extraHeader.Write (4 samples, 0.17%)</title><rect x="329.9" y="481" width="2.0" height="15.0" fill="rgb(209,199,40)" rx="2" ry="2" /> 2973 <text text-anchor="" x="332.87" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2974 </g> 2975 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2976 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="813.4" y="385" width="1.0" height="15.0" fill="rgb(247,159,40)" rx="2" ry="2" /> 2977 <text text-anchor="" x="816.41" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2978 </g> 2979 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2980 <title>runtime.(*mcache).refill (3 samples, 0.13%)</title><rect x="713.9" y="273" width="1.5" height="15.0" fill="rgb(221,92,49)" rx="2" ry="2" /> 2981 <text text-anchor="" x="716.92" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2982 </g> 2983 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2984 <title>runtime.mallocgc (4 samples, 0.17%)</title><rect x="636.8" y="193" width="2.0" height="15.0" fill="rgb(214,86,45)" rx="2" ry="2" /> 2985 <text text-anchor="" x="639.81" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2986 </g> 2987 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2988 <title>net/url.unescape (2 samples, 0.08%)</title><rect x="758.7" y="353" width="1.0" height="15.0" fill="rgb(210,23,8)" rx="2" ry="2" /> 2989 <text text-anchor="" x="761.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2990 </g> 2991 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2992 <title>runtime.casgstatus (2 samples, 0.08%)</title><rect x="450.3" y="401" width="1.0" height="15.0" fill="rgb(214,67,46)" rx="2" ry="2" /> 2993 <text text-anchor="" x="453.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2994 </g> 2995 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 2996 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="717.9" y="353" width="0.5" height="15.0" fill="rgb(242,36,23)" rx="2" ry="2" /> 2997 <text text-anchor="" x="720.90" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 2998 </g> 2999 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3000 <title>runtime.scanobject (67 samples, 2.82%)</title><rect x="1101.5" y="545" width="33.3" height="15.0" fill="rgb(241,97,20)" rx="2" ry="2" /> 3001 <text text-anchor="" x="1104.45" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 3002 </g> 3003 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3004 <title>runtime/internal/atomic.Or8 (1 samples, 0.04%)</title><rect x="200.0" y="353" width="0.5" height="15.0" fill="rgb(231,49,5)" rx="2" ry="2" /> 3005 <text text-anchor="" x="203.03" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3006 </g> 3007 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3008 <title>runtime.stringiter2 (3 samples, 0.13%)</title><rect x="286.6" y="529" width="1.5" height="15.0" fill="rgb(213,178,11)" rx="2" ry="2" /> 3009 <text text-anchor="" x="289.59" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3010 </g> 3011 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3012 <title>runtime.lock (1 samples, 0.04%)</title><rect x="107.5" y="481" width="0.5" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" /> 3013 <text text-anchor="" x="110.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3014 </g> 3015 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3016 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="681.1" y="177" width="0.5" height="15.0" fill="rgb(232,100,2)" rx="2" ry="2" /> 3017 <text text-anchor="" x="684.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3018 </g> 3019 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3020 <title>runtime/internal/atomic.Or8 (2 samples, 0.08%)</title><rect x="224.9" y="369" width="1.0" height="15.0" fill="rgb(253,58,54)" rx="2" ry="2" /> 3021 <text text-anchor="" x="227.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3022 </g> 3023 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3024 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).getExistingInterval (6 samples, 0.25%)</title><rect x="679.1" y="225" width="3.0" height="15.0" fill="rgb(223,28,45)" rx="2" ry="2" /> 3025 <text text-anchor="" x="682.10" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3026 </g> 3027 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3028 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="863.2" y="369" width="0.5" height="15.0" fill="rgb(240,0,43)" rx="2" ry="2" /> 3029 <text text-anchor="" x="866.16" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3030 </g> 3031 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3032 <title>sync.(*Mutex).Lock (6 samples, 0.25%)</title><rect x="936.8" y="433" width="3.0" height="15.0" fill="rgb(230,199,48)" rx="2" ry="2" /> 3033 <text text-anchor="" x="939.79" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3034 </g> 3035 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3036 <title>runtime.trygetfull (1 samples, 0.04%)</title><rect x="242.8" y="385" width="0.5" height="15.0" fill="rgb(223,160,33)" rx="2" ry="2" /> 3037 <text text-anchor="" x="245.82" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3038 </g> 3039 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3040 <title>runtime.gcstopm (1 samples, 0.04%)</title><rect x="1152.2" y="529" width="0.5" height="15.0" fill="rgb(222,2,22)" rx="2" ry="2" /> 3041 <text text-anchor="" x="1155.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3042 </g> 3043 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3044 <title>runtime.gcAssistAlloc (2 samples, 0.08%)</title><rect x="230.4" y="481" width="1.0" height="15.0" fill="rgb(216,47,49)" rx="2" ry="2" /> 3045 <text text-anchor="" x="233.38" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3046 </g> 3047 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3048 <title>runtime.newobject (2 samples, 0.08%)</title><rect x="1046.2" y="497" width="1.0" height="15.0" fill="rgb(250,222,49)" rx="2" ry="2" /> 3049 <text text-anchor="" x="1049.23" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3050 </g> 3051 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3052 <title>runtime.deferproc (7 samples, 0.30%)</title><rect x="99.0" y="529" width="3.5" height="15.0" fill="rgb(223,2,51)" rx="2" ry="2" /> 3053 <text text-anchor="" x="102.05" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3054 </g> 3055 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3056 <title>runtime.deferreturn (1 samples, 0.04%)</title><rect x="954.7" y="417" width="0.5" height="15.0" fill="rgb(232,101,48)" rx="2" ry="2" /> 3057 <text text-anchor="" x="957.70" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3058 </g> 3059 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3060 <title>runtime.markroot.func1 (1 samples, 0.04%)</title><rect x="1152.2" y="433" width="0.5" height="15.0" fill="rgb(218,104,50)" rx="2" ry="2" /> 3061 <text text-anchor="" x="1155.19" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3062 </g> 3063 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3064 <title>runtime.duffcopy (2 samples, 0.08%)</title><rect x="1079.1" y="417" width="1.0" height="15.0" fill="rgb(220,151,33)" rx="2" ry="2" /> 3065 <text text-anchor="" x="1082.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3066 </g> 3067 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3068 <title>sync.(*Pool).Put (4 samples, 0.17%)</title><rect x="906.4" y="417" width="2.0" height="15.0" fill="rgb(214,31,31)" rx="2" ry="2" /> 3069 <text text-anchor="" x="909.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3070 </g> 3071 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3072 <title>runtime.goready.func1 (1 samples, 0.04%)</title><rect x="64.2" y="481" width="0.5" height="15.0" fill="rgb(228,61,23)" rx="2" ry="2" /> 3073 <text text-anchor="" x="67.22" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3074 </g> 3075 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3076 <title>net/url.ParseQuery (31 samples, 1.31%)</title><rect x="998.5" y="481" width="15.4" height="15.0" fill="rgb(238,177,2)" rx="2" ry="2" /> 3077 <text text-anchor="" x="1001.47" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3078 </g> 3079 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3080 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="741.3" y="337" width="1.0" height="15.0" fill="rgb(215,136,26)" rx="2" ry="2" /> 3081 <text text-anchor="" x="744.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3082 </g> 3083 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3084 <title>sync.(*Mutex).Lock (1 samples, 0.04%)</title><rect x="698.5" y="369" width="0.5" height="15.0" fill="rgb(231,132,11)" rx="2" ry="2" /> 3085 <text text-anchor="" x="701.50" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3086 </g> 3087 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3088 <title>runtime.rawstringtmp (3 samples, 0.13%)</title><rect x="722.4" y="321" width="1.5" height="15.0" fill="rgb(224,32,33)" rx="2" ry="2" /> 3089 <text text-anchor="" x="725.38" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3090 </g> 3091 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3092 <title>vendor/golang_org/x/net/lex/httplex.ValidHeaderFieldName (9 samples, 0.38%)</title><rect x="283.6" y="545" width="4.5" height="15.0" fill="rgb(247,130,24)" rx="2" ry="2" /> 3093 <text text-anchor="" x="286.61" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3094 </g> 3095 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3096 <title>runtime.goparkunlock (2 samples, 0.08%)</title><rect x="938.3" y="385" width="1.0" height="15.0" fill="rgb(240,176,11)" rx="2" ry="2" /> 3097 <text text-anchor="" x="941.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3098 </g> 3099 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3100 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*MemDB).getRoot (3 samples, 0.13%)</title><rect x="655.2" y="241" width="1.5" height="15.0" fill="rgb(240,2,33)" rx="2" ry="2" /> 3101 <text text-anchor="" x="658.22" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3102 </g> 3103 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3104 <title>net.(*netFD).Read (2 samples, 0.08%)</title><rect x="63.2" y="433" width="1.0" height="15.0" fill="rgb(221,136,6)" rx="2" ry="2" /> 3105 <text text-anchor="" x="66.23" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3106 </g> 3107 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3108 <title>runtime.markBits.setMarked (1 samples, 0.04%)</title><rect x="806.5" y="353" width="0.4" height="15.0" fill="rgb(249,169,47)" rx="2" ry="2" /> 3109 <text text-anchor="" x="809.45" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3110 </g> 3111 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3112 <title>runtime.deferproc (1 samples, 0.04%)</title><rect x="954.2" y="417" width="0.5" height="15.0" fill="rgb(230,162,5)" rx="2" ry="2" /> 3113 <text text-anchor="" x="957.20" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3114 </g> 3115 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3116 <title>runtime.stopm (1 samples, 0.04%)</title><rect x="1152.2" y="513" width="0.5" height="15.0" fill="rgb(208,86,37)" rx="2" ry="2" /> 3117 <text text-anchor="" x="1155.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3118 </g> 3119 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3120 <title>runtime.scanstack (1 samples, 0.04%)</title><rect x="1182.5" y="385" width="0.5" height="15.0" fill="rgb(250,144,25)" rx="2" ry="2" /> 3121 <text text-anchor="" x="1185.54" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3122 </g> 3123 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3124 <title>net/http.Header.Set (11 samples, 0.46%)</title><rect x="975.6" y="481" width="5.5" height="15.0" fill="rgb(230,95,52)" rx="2" ry="2" /> 3125 <text text-anchor="" x="978.59" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3126 </g> 3127 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3128 <title>runtime.pcdatavalue (1 samples, 0.04%)</title><rect x="1152.2" y="337" width="0.5" height="15.0" fill="rgb(226,7,17)" rx="2" ry="2" /> 3129 <text text-anchor="" x="1155.19" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3130 </g> 3131 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3132 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).getIndexValue (47 samples, 1.98%)</title><rect x="604.0" y="209" width="23.4" height="15.0" fill="rgb(226,132,51)" rx="2" ry="2" /> 3133 <text text-anchor="" x="606.98" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g..</text> 3134 </g> 3135 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3136 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="792.5" y="353" width="0.5" height="15.0" fill="rgb(229,138,21)" rx="2" ry="2" /> 3137 <text text-anchor="" x="795.52" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3138 </g> 3139 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3140 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="733.8" y="353" width="0.5" height="15.0" fill="rgb(235,158,29)" rx="2" ry="2" /> 3141 <text text-anchor="" x="736.82" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3142 </g> 3143 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3144 <title>encoding/json.(*sliceEncoder).encode (66 samples, 2.78%)</title><rect x="826.8" y="401" width="32.9" height="15.0" fill="rgb(215,218,16)" rx="2" ry="2" /> 3145 <text text-anchor="" x="829.85" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text> 3146 </g> 3147 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3148 <title>runtime.shade (1 samples, 0.04%)</title><rect x="954.2" y="353" width="0.5" height="15.0" fill="rgb(247,92,10)" rx="2" ry="2" /> 3149 <text text-anchor="" x="957.20" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3150 </g> 3151 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3152 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="273.7" y="513" width="0.5" height="15.0" fill="rgb(211,98,31)" rx="2" ry="2" /> 3153 <text text-anchor="" x="276.66" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3154 </g> 3155 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3156 <title>runtime.rawstringtmp (10 samples, 0.42%)</title><rect x="993.5" y="449" width="5.0" height="15.0" fill="rgb(205,151,18)" rx="2" ry="2" /> 3157 <text text-anchor="" x="996.50" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3158 </g> 3159 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3160 <title>encoding/json.(*structEncoder).encode (56 samples, 2.36%)</title><rect x="829.3" y="305" width="27.9" height="15.0" fill="rgb(226,29,9)" rx="2" ry="2" /> 3161 <text text-anchor="" x="832.33" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text> 3162 </g> 3163 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3164 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="991.5" y="417" width="0.5" height="15.0" fill="rgb(226,154,43)" rx="2" ry="2" /> 3165 <text text-anchor="" x="994.51" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3166 </g> 3167 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3168 <title>sync.(*Mutex).Unlock (1 samples, 0.04%)</title><rect x="939.8" y="433" width="0.5" height="15.0" fill="rgb(244,60,27)" rx="2" ry="2" /> 3169 <text text-anchor="" x="942.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3170 </g> 3171 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3172 <title>runtime.(*mheap).alloc.func1 (2 samples, 0.08%)</title><rect x="880.6" y="337" width="1.0" height="15.0" fill="rgb(225,136,45)" rx="2" ry="2" /> 3173 <text text-anchor="" x="883.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3174 </g> 3175 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3176 <title>runtime.newobject (3 samples, 0.13%)</title><rect x="782.6" y="369" width="1.5" height="15.0" fill="rgb(232,81,49)" rx="2" ry="2" /> 3177 <text text-anchor="" x="785.57" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3178 </g> 3179 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3180 <title>net/http.Header.Get (2 samples, 0.08%)</title><rect x="772.1" y="417" width="1.0" height="15.0" fill="rgb(226,140,23)" rx="2" ry="2" /> 3181 <text text-anchor="" x="775.12" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3182 </g> 3183 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3184 <title>runtime/internal/atomic.Load (1 samples, 0.04%)</title><rect x="1069.1" y="465" width="0.5" height="15.0" fill="rgb(249,100,28)" rx="2" ry="2" /> 3185 <text text-anchor="" x="1072.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3186 </g> 3187 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3188 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="998.0" y="417" width="0.5" height="15.0" fill="rgb(252,2,54)" rx="2" ry="2" /> 3189 <text text-anchor="" x="1000.98" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3190 </g> 3191 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3192 <title>runtime.scanblock (6 samples, 0.25%)</title><rect x="1061.2" y="513" width="2.9" height="15.0" fill="rgb(235,93,34)" rx="2" ry="2" /> 3193 <text text-anchor="" x="1064.16" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3194 </g> 3195 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3196 <title>go.(*struct (5 samples, 0.21%)</title><rect x="453.7" y="545" width="2.5" height="15.0" fill="rgb(215,219,15)" rx="2" ry="2" /> 3197 <text text-anchor="" x="456.74" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3198 </g> 3199 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3200 <title>runtime.deferreturn (2 samples, 0.08%)</title><rect x="1029.3" y="417" width="1.0" height="15.0" fill="rgb(230,155,42)" rx="2" ry="2" /> 3201 <text text-anchor="" x="1032.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3202 </g> 3203 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3204 <title>time.Time.Date (2 samples, 0.08%)</title><rect x="934.3" y="417" width="1.0" height="15.0" fill="rgb(240,80,16)" rx="2" ry="2" /> 3205 <text text-anchor="" x="937.30" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3206 </g> 3207 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3208 <title>runtime.systemstack (5 samples, 0.21%)</title><rect x="259.7" y="449" width="2.5" height="15.0" fill="rgb(209,176,31)" rx="2" ry="2" /> 3209 <text text-anchor="" x="262.73" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3210 </g> 3211 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3212 <title>runtime/internal/atomic.Or8 (1 samples, 0.04%)</title><rect x="249.3" y="353" width="0.5" height="15.0" fill="rgb(236,4,39)" rx="2" ry="2" /> 3213 <text text-anchor="" x="252.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3214 </g> 3215 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3216 <title>runtime.deferproc (4 samples, 0.17%)</title><rect x="1013.9" y="481" width="2.0" height="15.0" fill="rgb(246,204,16)" rx="2" ry="2" /> 3217 <text text-anchor="" x="1016.90" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3218 </g> 3219 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3220 <title>runtime.(*mcentral).grow (1 samples, 0.04%)</title><rect x="786.6" y="241" width="0.4" height="15.0" fill="rgb(210,30,22)" rx="2" ry="2" /> 3221 <text text-anchor="" x="789.55" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3222 </g> 3223 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3224 <title>runtime.mallocgc (8 samples, 0.34%)</title><rect x="560.2" y="321" width="4.0" height="15.0" fill="rgb(224,152,12)" rx="2" ry="2" /> 3225 <text text-anchor="" x="563.20" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3226 </g> 3227 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3228 <title>runtime.(*waitq).dequeue (2 samples, 0.08%)</title><rect x="74.2" y="513" width="1.0" height="15.0" fill="rgb(218,37,19)" rx="2" ry="2" /> 3229 <text text-anchor="" x="77.17" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3230 </g> 3231 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3232 <title>path.Clean (5 samples, 0.21%)</title><rect x="514.4" y="497" width="2.5" height="15.0" fill="rgb(249,24,50)" rx="2" ry="2" /> 3233 <text text-anchor="" x="517.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3234 </g> 3235 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3236 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="961.2" y="337" width="0.5" height="15.0" fill="rgb(243,136,21)" rx="2" ry="2" /> 3237 <text text-anchor="" x="964.16" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3238 </g> 3239 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3240 <title>runtime.gentraceback (1 samples, 0.04%)</title><rect x="1138.8" y="433" width="0.5" height="15.0" fill="rgb(233,204,21)" rx="2" ry="2" /> 3241 <text text-anchor="" x="1141.76" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3242 </g> 3243 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3244 <title>runtime.(*mspan).nextFreeIndex (1 samples, 0.04%)</title><rect x="240.8" y="449" width="0.5" height="15.0" fill="rgb(226,140,8)" rx="2" ry="2" /> 3245 <text text-anchor="" x="243.83" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3246 </g> 3247 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3248 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="765.7" y="305" width="1.0" height="15.0" fill="rgb(222,193,33)" rx="2" ry="2" /> 3249 <text text-anchor="" x="768.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3250 </g> 3251 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3252 <title>syscall.read (2 samples, 0.08%)</title><rect x="63.2" y="401" width="1.0" height="15.0" fill="rgb(224,127,19)" rx="2" ry="2" /> 3253 <text text-anchor="" x="66.23" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3254 </g> 3255 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3256 <title>github.com/hashicorp/consul/command/agent.NewDNSServer.func1 (1 samples, 0.04%)</title><rect x="59.2" y="577" width="0.5" height="15.0" fill="rgb(220,65,35)" rx="2" ry="2" /> 3257 <text text-anchor="" x="62.25" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3258 </g> 3259 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3260 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="882.1" y="369" width="1.0" height="15.0" fill="rgb(215,44,12)" rx="2" ry="2" /> 3261 <text text-anchor="" x="885.07" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3262 </g> 3263 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3264 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="790.5" y="337" width="0.5" height="15.0" fill="rgb(249,93,27)" rx="2" ry="2" /> 3265 <text text-anchor="" x="793.53" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3266 </g> 3267 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3268 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="680.6" y="193" width="1.0" height="15.0" fill="rgb(206,196,30)" rx="2" ry="2" /> 3269 <text text-anchor="" x="683.59" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3270 </g> 3271 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3272 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).decode (2 samples, 0.08%)</title><rect x="63.2" y="529" width="1.0" height="15.0" fill="rgb(217,158,10)" rx="2" ry="2" /> 3273 <text text-anchor="" x="66.23" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3274 </g> 3275 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3276 <title>reflect.Value.Elem (2 samples, 0.08%)</title><rect x="532.8" y="337" width="1.0" height="15.0" fill="rgb(242,115,28)" rx="2" ry="2" /> 3277 <text text-anchor="" x="535.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3278 </g> 3279 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3280 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="511.5" y="465" width="0.4" height="15.0" fill="rgb(220,227,34)" rx="2" ry="2" /> 3281 <text text-anchor="" x="514.45" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3282 </g> 3283 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3284 <title>net/url.parseQuery (22 samples, 0.93%)</title><rect x="758.2" y="385" width="10.9" height="15.0" fill="rgb(247,79,30)" rx="2" ry="2" /> 3285 <text text-anchor="" x="761.20" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3286 </g> 3287 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3288 <title>runtime.readgstatus (2 samples, 0.08%)</title><rect x="140.8" y="321" width="1.0" height="15.0" fill="rgb(254,38,10)" rx="2" ry="2" /> 3289 <text text-anchor="" x="143.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3290 </g> 3291 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3292 <title>runtime.gorecover (1 samples, 0.04%)</title><rect x="839.3" y="209" width="0.5" height="15.0" fill="rgb(231,165,2)" rx="2" ry="2" /> 3293 <text text-anchor="" x="842.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3294 </g> 3295 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3296 <title>reflect.(*rtype).Kind (2 samples, 0.08%)</title><rect x="843.8" y="257" width="1.0" height="15.0" fill="rgb(253,78,17)" rx="2" ry="2" /> 3297 <text text-anchor="" x="846.76" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3298 </g> 3299 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3300 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="1025.3" y="369" width="1.0" height="15.0" fill="rgb(234,220,0)" rx="2" ry="2" /> 3301 <text text-anchor="" x="1028.34" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3302 </g> 3303 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3304 <title>runtime.mapaccess2_faststr (1 samples, 0.04%)</title><rect x="887.0" y="465" width="0.5" height="15.0" fill="rgb(236,154,51)" rx="2" ry="2" /> 3305 <text text-anchor="" x="890.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3306 </g> 3307 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3308 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*StringFieldIndex).FromArgs (7 samples, 0.30%)</title><rect x="640.3" y="209" width="3.5" height="15.0" fill="rgb(231,69,12)" rx="2" ry="2" /> 3309 <text text-anchor="" x="643.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3310 </g> 3311 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3312 <title>net.(*fdMutex).rwunlock (1 samples, 0.04%)</title><rect x="344.3" y="449" width="0.5" height="15.0" fill="rgb(206,200,25)" rx="2" ry="2" /> 3313 <text text-anchor="" x="347.30" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3314 </g> 3315 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3316 <title>sync.(*Mutex).Lock (4 samples, 0.17%)</title><rect x="544.3" y="337" width="2.0" height="15.0" fill="rgb(252,141,5)" rx="2" ry="2" /> 3317 <text text-anchor="" x="547.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3318 </g> 3319 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3320 <title>runtime.memclr (2 samples, 0.08%)</title><rect x="93.6" y="497" width="1.0" height="15.0" fill="rgb(225,114,34)" rx="2" ry="2" /> 3321 <text text-anchor="" x="96.58" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3322 </g> 3323 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3324 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="617.4" y="145" width="0.5" height="15.0" fill="rgb(237,24,38)" rx="2" ry="2" /> 3325 <text text-anchor="" x="620.41" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3326 </g> 3327 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3328 <title>runtime.scang (1 samples, 0.04%)</title><rect x="1182.5" y="401" width="0.5" height="15.0" fill="rgb(210,214,42)" rx="2" ry="2" /> 3329 <text text-anchor="" x="1185.54" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3330 </g> 3331 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3332 <title>runtime.newobject (6 samples, 0.25%)</title><rect x="94.6" y="529" width="3.0" height="15.0" fill="rgb(214,199,32)" rx="2" ry="2" /> 3333 <text text-anchor="" x="97.57" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3334 </g> 3335 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3336 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="266.7" y="513" width="0.5" height="15.0" fill="rgb(213,57,11)" rx="2" ry="2" /> 3337 <text text-anchor="" x="269.69" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3338 </g> 3339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3340 <title>runtime.gosweepone.func1 (1 samples, 0.04%)</title><rect x="881.6" y="337" width="0.5" height="15.0" fill="rgb(233,188,23)" rx="2" ry="2" /> 3341 <text text-anchor="" x="884.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3342 </g> 3343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3344 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="802.5" y="353" width="1.0" height="15.0" fill="rgb(223,84,24)" rx="2" ry="2" /> 3345 <text text-anchor="" x="805.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3346 </g> 3347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3348 <title>runtime.scanframeworker (35 samples, 1.48%)</title><rect x="1083.5" y="433" width="17.5" height="15.0" fill="rgb(251,142,51)" rx="2" ry="2" /> 3349 <text text-anchor="" x="1086.54" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3350 </g> 3351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3352 <title>runtime.(*bucket).mp (2 samples, 0.08%)</title><rect x="1136.3" y="449" width="1.0" height="15.0" fill="rgb(235,132,52)" rx="2" ry="2" /> 3353 <text text-anchor="" x="1139.27" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3354 </g> 3355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3356 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="249.3" y="401" width="0.5" height="15.0" fill="rgb(208,52,43)" rx="2" ry="2" /> 3357 <text text-anchor="" x="252.28" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3358 </g> 3359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3360 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="1063.6" y="497" width="0.5" height="15.0" fill="rgb(234,200,7)" rx="2" ry="2" /> 3361 <text text-anchor="" x="1066.64" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3362 </g> 3363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3364 <title>runtime.(*mcache).nextFree (2 samples, 0.08%)</title><rect x="765.7" y="321" width="1.0" height="15.0" fill="rgb(214,60,22)" rx="2" ry="2" /> 3365 <text text-anchor="" x="768.66" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3366 </g> 3367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3368 <title>net/http.(*chunkWriter).writeHeader (90 samples, 3.79%)</title><rect x="294.1" y="497" width="44.7" height="15.0" fill="rgb(227,64,28)" rx="2" ry="2" /> 3369 <text text-anchor="" x="297.06" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/..</text> 3370 </g> 3371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3372 <title>runtime.mput (1 samples, 0.04%)</title><rect x="1171.6" y="513" width="0.5" height="15.0" fill="rgb(208,146,12)" rx="2" ry="2" /> 3373 <text text-anchor="" x="1174.59" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3374 </g> 3375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3376 <title>runtime.lock (1 samples, 0.04%)</title><rect x="1055.2" y="465" width="0.5" height="15.0" fill="rgb(227,60,25)" rx="2" ry="2" /> 3377 <text text-anchor="" x="1058.19" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3378 </g> 3379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3380 <title>runtime.heapBits.initSpan (1 samples, 0.04%)</title><rect x="270.2" y="401" width="0.5" height="15.0" fill="rgb(212,1,41)" rx="2" ry="2" /> 3381 <text text-anchor="" x="273.18" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3382 </g> 3383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3384 <title>runtime.deferproc.func1 (1 samples, 0.04%)</title><rect x="866.1" y="401" width="0.5" height="15.0" fill="rgb(254,150,13)" rx="2" ry="2" /> 3385 <text text-anchor="" x="869.15" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3386 </g> 3387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3388 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).Get (8 samples, 0.34%)</title><rect x="630.3" y="177" width="4.0" height="15.0" fill="rgb(220,211,35)" rx="2" ry="2" /> 3389 <text text-anchor="" x="633.35" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3390 </g> 3391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3392 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/logutils.(*LevelFilter).Write (8 samples, 0.34%)</title><rect x="923.4" y="417" width="3.9" height="15.0" fill="rgb(208,128,8)" rx="2" ry="2" /> 3393 <text text-anchor="" x="926.36" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3394 </g> 3395 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3396 <title>runtime.futexsleep (1 samples, 0.04%)</title><rect x="1175.6" y="497" width="0.5" height="15.0" fill="rgb(236,226,43)" rx="2" ry="2" /> 3397 <text text-anchor="" x="1178.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3398 </g> 3399 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3400 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*AggregateSample).Ingest (4 samples, 0.17%)</title><rect x="668.2" y="241" width="1.9" height="15.0" fill="rgb(245,183,31)" rx="2" ry="2" /> 3401 <text text-anchor="" x="671.15" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3402 </g> 3403 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3404 <title>runtime.futexwakeup (6 samples, 0.25%)</title><rect x="1154.2" y="481" width="3.0" height="15.0" fill="rgb(242,90,13)" rx="2" ry="2" /> 3405 <text text-anchor="" x="1157.18" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3406 </g> 3407 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3408 <title>runtime.(*mSpanList).insertBack (1 samples, 0.04%)</title><rect x="241.8" y="385" width="0.5" height="15.0" fill="rgb(228,42,46)" rx="2" ry="2" /> 3409 <text text-anchor="" x="244.82" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3410 </g> 3411 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3412 <title>runtime.(*mcache).nextFree.func1 (1 samples, 0.04%)</title><rect x="561.2" y="273" width="0.5" height="15.0" fill="rgb(218,192,47)" rx="2" ry="2" /> 3413 <text text-anchor="" x="564.20" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3414 </g> 3415 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3416 <title>runtime.scanstack (64 samples, 2.70%)</title><rect x="1069.6" y="481" width="31.9" height="15.0" fill="rgb(224,35,53)" rx="2" ry="2" /> 3417 <text text-anchor="" x="1072.61" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 3418 </g> 3419 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3420 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1138.8" y="497" width="0.5" height="15.0" fill="rgb(223,82,14)" rx="2" ry="2" /> 3421 <text text-anchor="" x="1141.76" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3422 </g> 3423 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3424 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="245.8" y="481" width="0.5" height="15.0" fill="rgb(226,161,8)" rx="2" ry="2" /> 3425 <text text-anchor="" x="248.80" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3426 </g> 3427 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3428 <title>runtime.getitab (3 samples, 0.13%)</title><rect x="321.9" y="449" width="1.5" height="15.0" fill="rgb(215,4,29)" rx="2" ry="2" /> 3429 <text text-anchor="" x="324.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3430 </g> 3431 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3432 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="89.6" y="497" width="0.5" height="15.0" fill="rgb(236,9,10)" rx="2" ry="2" /> 3433 <text text-anchor="" x="92.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3434 </g> 3435 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3436 <title>runtime.mapiternext (2 samples, 0.08%)</title><rect x="481.6" y="465" width="1.0" height="15.0" fill="rgb(244,178,3)" rx="2" ry="2" /> 3437 <text text-anchor="" x="484.60" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3438 </g> 3439 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3440 <title>runtime.memmove (3 samples, 0.13%)</title><rect x="946.7" y="433" width="1.5" height="15.0" fill="rgb(223,174,19)" rx="2" ry="2" /> 3441 <text text-anchor="" x="949.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3442 </g> 3443 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3444 <title>runtime.gcAssistAlloc.func1 (2 samples, 0.08%)</title><rect x="1043.7" y="401" width="1.0" height="15.0" fill="rgb(252,63,41)" rx="2" ry="2" /> 3445 <text text-anchor="" x="1046.74" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3446 </g> 3447 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3448 <title>runtime.strequal (1 samples, 0.04%)</title><rect x="276.6" y="529" width="0.5" height="15.0" fill="rgb(230,135,34)" rx="2" ry="2" /> 3449 <text text-anchor="" x="279.64" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3450 </g> 3451 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3452 <title>bytes.HasPrefix (1 samples, 0.04%)</title><rect x="632.3" y="161" width="0.5" height="15.0" fill="rgb(225,216,7)" rx="2" ry="2" /> 3453 <text text-anchor="" x="635.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3454 </g> 3455 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3456 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="690.0" y="257" width="0.5" height="15.0" fill="rgb(219,173,12)" rx="2" ry="2" /> 3457 <text text-anchor="" x="693.04" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3458 </g> 3459 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3460 <title>runtime.memeqbody (4 samples, 0.17%)</title><rect x="1034.8" y="433" width="2.0" height="15.0" fill="rgb(223,218,21)" rx="2" ry="2" /> 3461 <text text-anchor="" x="1037.79" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3462 </g> 3463 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3464 <title>runtime.duffcopy (1 samples, 0.04%)</title><rect x="856.7" y="289" width="0.5" height="15.0" fill="rgb(248,219,11)" rx="2" ry="2" /> 3465 <text text-anchor="" x="859.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3466 </g> 3467 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3468 <title>runtime.park_m (71 samples, 2.99%)</title><rect x="1143.7" y="577" width="35.4" height="15.0" fill="rgb(211,107,46)" rx="2" ry="2" /> 3469 <text text-anchor="" x="1146.74" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 3470 </g> 3471 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3472 <title>net/url.(*URL).Query (17 samples, 0.72%)</title><rect x="795.0" y="417" width="8.5" height="15.0" fill="rgb(253,25,15)" rx="2" ry="2" /> 3473 <text text-anchor="" x="798.01" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3474 </g> 3475 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3476 <title>runtime.cmpbody (2 samples, 0.08%)</title><rect x="318.9" y="385" width="1.0" height="15.0" fill="rgb(236,72,33)" rx="2" ry="2" /> 3477 <text text-anchor="" x="321.93" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3478 </g> 3479 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3480 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="905.4" y="353" width="0.5" height="15.0" fill="rgb(225,2,37)" rx="2" ry="2" /> 3481 <text text-anchor="" x="908.45" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3482 </g> 3483 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3484 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="778.6" y="273" width="0.5" height="15.0" fill="rgb(213,141,10)" rx="2" ry="2" /> 3485 <text text-anchor="" x="781.59" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3486 </g> 3487 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3488 <title>runtime.readgstatus (1 samples, 0.04%)</title><rect x="1065.6" y="529" width="0.5" height="15.0" fill="rgb(229,134,31)" rx="2" ry="2" /> 3489 <text text-anchor="" x="1068.63" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3490 </g> 3491 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3492 <title>runtime.notesleep (5 samples, 0.21%)</title><rect x="1172.1" y="513" width="2.5" height="15.0" fill="rgb(216,170,28)" rx="2" ry="2" /> 3493 <text text-anchor="" x="1175.09" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3494 </g> 3495 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3496 <title>runtime.readvarint (6 samples, 0.25%)</title><rect x="1090.0" y="369" width="3.0" height="15.0" fill="rgb(226,131,53)" rx="2" ry="2" /> 3497 <text text-anchor="" x="1093.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3498 </g> 3499 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3500 <title>runtime.newobject (7 samples, 0.30%)</title><rect x="223.4" y="497" width="3.5" height="15.0" fill="rgb(223,128,25)" rx="2" ry="2" /> 3501 <text text-anchor="" x="226.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3502 </g> 3503 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3504 <title>runtime.futexwakeup (1 samples, 0.04%)</title><rect x="1135.8" y="449" width="0.5" height="15.0" fill="rgb(233,6,29)" rx="2" ry="2" /> 3505 <text text-anchor="" x="1138.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3506 </g> 3507 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3508 <title>runtime.ready (1 samples, 0.04%)</title><rect x="64.2" y="465" width="0.5" height="15.0" fill="rgb(213,139,42)" rx="2" ry="2" /> 3509 <text text-anchor="" x="67.22" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3510 </g> 3511 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3512 <title>runtime.newMarkBits (1 samples, 0.04%)</title><rect x="881.6" y="289" width="0.5" height="15.0" fill="rgb(244,18,32)" rx="2" ry="2" /> 3513 <text text-anchor="" x="884.57" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3514 </g> 3515 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3516 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="102.0" y="497" width="0.5" height="15.0" fill="rgb(232,178,9)" rx="2" ry="2" /> 3517 <text text-anchor="" x="105.03" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3518 </g> 3519 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3520 <title>net/url.split (3 samples, 0.13%)</title><rect x="255.8" y="497" width="1.4" height="15.0" fill="rgb(210,139,46)" rx="2" ry="2" /> 3521 <text text-anchor="" x="258.75" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3522 </g> 3523 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3524 <title>net.(*netFD).Write (227 samples, 9.57%)</title><rect x="340.8" y="481" width="112.9" height="15.0" fill="rgb(226,101,34)" rx="2" ry="2" /> 3525 <text text-anchor="" x="343.82" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net.(*netFD)...</text> 3526 </g> 3527 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3528 <title>runtime.(*mcache).nextFree (2 samples, 0.08%)</title><rect x="1042.7" y="433" width="1.0" height="15.0" fill="rgb(248,25,26)" rx="2" ry="2" /> 3529 <text text-anchor="" x="1045.75" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3530 </g> 3531 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3532 <title>net/url.parseQuery (26 samples, 1.10%)</title><rect x="998.5" y="465" width="12.9" height="15.0" fill="rgb(213,218,12)" rx="2" ry="2" /> 3533 <text text-anchor="" x="1001.47" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3534 </g> 3535 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3536 <title>runtime.heapBitsSetType (3 samples, 0.13%)</title><rect x="958.7" y="369" width="1.5" height="15.0" fill="rgb(242,1,44)" rx="2" ry="2" /> 3537 <text text-anchor="" x="961.68" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3538 </g> 3539 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3540 <title>bytes.(*Buffer).WriteByte (1 samples, 0.04%)</title><rect x="984.5" y="465" width="0.5" height="15.0" fill="rgb(252,107,1)" rx="2" ry="2" /> 3541 <text text-anchor="" x="987.54" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3542 </g> 3543 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3544 <title>runtime.mapaccess2_faststr (1 samples, 0.04%)</title><rect x="793.0" y="417" width="0.5" height="15.0" fill="rgb(212,100,53)" rx="2" ry="2" /> 3545 <text text-anchor="" x="796.02" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3546 </g> 3547 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3548 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).wrap.func1.1 (125 samples, 5.27%)</title><rect x="887.5" y="481" width="62.2" height="15.0" fill="rgb(227,77,34)" rx="2" ry="2" /> 3549 <text text-anchor="" x="890.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github..</text> 3550 </g> 3551 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3552 <title>runtime.notesleep (1 samples, 0.04%)</title><rect x="1183.0" y="481" width="0.5" height="15.0" fill="rgb(213,124,26)" rx="2" ry="2" /> 3553 <text text-anchor="" x="1186.04" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3554 </g> 3555 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3556 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="868.1" y="417" width="0.5" height="15.0" fill="rgb(234,196,31)" rx="2" ry="2" /> 3557 <text text-anchor="" x="871.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3558 </g> 3559 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3560 <title>reflect.Indirect (2 samples, 0.08%)</title><rect x="567.7" y="337" width="1.0" height="15.0" fill="rgb(228,195,49)" rx="2" ry="2" /> 3561 <text text-anchor="" x="570.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3562 </g> 3563 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3564 <title>runtime.deferproc (1 samples, 0.04%)</title><rect x="866.1" y="433" width="0.5" height="15.0" fill="rgb(223,113,43)" rx="2" ry="2" /> 3565 <text text-anchor="" x="869.15" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3566 </g> 3567 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3568 <title>runtime.(*gcWork).dispose (1 samples, 0.04%)</title><rect x="790.5" y="273" width="0.5" height="15.0" fill="rgb(238,97,50)" rx="2" ry="2" /> 3569 <text text-anchor="" x="793.53" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3570 </g> 3571 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3572 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).KVSGet (457 samples, 19.27%)</title><rect x="528.9" y="449" width="227.3" height="15.0" fill="rgb(211,31,13)" rx="2" ry="2" /> 3573 <text text-anchor="" x="531.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/hashicorp/consul/co..</text> 3574 </g> 3575 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3576 <title>runtime.scanstack (2 samples, 0.08%)</title><rect x="1174.6" y="417" width="1.0" height="15.0" fill="rgb(220,115,24)" rx="2" ry="2" /> 3577 <text text-anchor="" x="1177.58" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3578 </g> 3579 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3580 <title>syscall.write (207 samples, 8.73%)</title><rect x="350.8" y="449" width="102.9" height="15.0" fill="rgb(214,133,17)" rx="2" ry="2" /> 3581 <text text-anchor="" x="353.77" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syscall.write</text> 3582 </g> 3583 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3584 <title>runtime.stopm (3 samples, 0.13%)</title><rect x="1182.0" y="497" width="1.5" height="15.0" fill="rgb(239,134,36)" rx="2" ry="2" /> 3585 <text text-anchor="" x="1185.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3586 </g> 3587 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3588 <title>time.Time.Sub (1 samples, 0.04%)</title><rect x="949.2" y="465" width="0.5" height="15.0" fill="rgb(223,48,18)" rx="2" ry="2" /> 3589 <text text-anchor="" x="952.22" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3590 </g> 3591 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3592 <title>encoding/json.(*encodeState).string (3 samples, 0.13%)</title><rect x="851.7" y="273" width="1.5" height="15.0" fill="rgb(251,126,23)" rx="2" ry="2" /> 3593 <text text-anchor="" x="854.72" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3594 </g> 3595 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3596 <title>runtime.(*mcentral).cacheSpan (1 samples, 0.04%)</title><rect x="1011.9" y="353" width="0.5" height="15.0" fill="rgb(224,158,8)" rx="2" ry="2" /> 3597 <text text-anchor="" x="1014.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3598 </g> 3599 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3600 <title>runtime/internal/atomic.Xadd (1 samples, 0.04%)</title><rect x="1176.6" y="529" width="0.5" height="15.0" fill="rgb(233,130,45)" rx="2" ry="2" /> 3601 <text text-anchor="" x="1179.57" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3602 </g> 3603 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3604 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="1181.5" y="369" width="0.5" height="15.0" fill="rgb(226,202,53)" rx="2" ry="2" /> 3605 <text text-anchor="" x="1184.54" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3606 </g> 3607 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3608 <title>runtime.heapBitsForObject (2 samples, 0.08%)</title><rect x="510.0" y="369" width="1.0" height="15.0" fill="rgb(217,183,36)" rx="2" ry="2" /> 3609 <text text-anchor="" x="512.96" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3610 </g> 3611 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3612 <title>runtime.gcMarkTermination.func1 (1 samples, 0.04%)</title><rect x="778.6" y="257" width="0.5" height="15.0" fill="rgb(205,171,34)" rx="2" ry="2" /> 3613 <text text-anchor="" x="781.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3614 </g> 3615 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3616 <title>runtime.(*mheap).allocSpanLocked (1 samples, 0.04%)</title><rect x="880.6" y="305" width="0.5" height="15.0" fill="rgb(249,25,39)" rx="2" ry="2" /> 3617 <text text-anchor="" x="883.57" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3618 </g> 3619 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3620 <title>runtime.markroot (1 samples, 0.04%)</title><rect x="1181.5" y="449" width="0.5" height="15.0" fill="rgb(215,206,40)" rx="2" ry="2" /> 3621 <text text-anchor="" x="1184.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3622 </g> 3623 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3624 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).readableIndex (18 samples, 0.76%)</title><rect x="627.4" y="209" width="8.9" height="15.0" fill="rgb(229,148,3)" rx="2" ry="2" /> 3625 <text text-anchor="" x="630.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3626 </g> 3627 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3628 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="639.8" y="161" width="0.5" height="15.0" fill="rgb(224,180,52)" rx="2" ry="2" /> 3629 <text text-anchor="" x="642.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3630 </g> 3631 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3632 <title>net/textproto.MIMEHeader.Del (4 samples, 0.17%)</title><rect x="302.5" y="449" width="2.0" height="15.0" fill="rgb(230,221,54)" rx="2" ry="2" /> 3633 <text text-anchor="" x="305.51" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3634 </g> 3635 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3636 <title>runtime.deferreturn (2 samples, 0.08%)</title><rect x="511.0" y="497" width="0.9" height="15.0" fill="rgb(210,2,43)" rx="2" ry="2" /> 3637 <text text-anchor="" x="513.95" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3638 </g> 3639 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3640 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="687.1" y="225" width="1.0" height="15.0" fill="rgb(234,46,16)" rx="2" ry="2" /> 3641 <text text-anchor="" x="690.06" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3642 </g> 3643 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3644 <title>runtime.gcDrain (1 samples, 0.04%)</title><rect x="259.2" y="369" width="0.5" height="15.0" fill="rgb(229,81,44)" rx="2" ry="2" /> 3645 <text text-anchor="" x="262.23" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3646 </g> 3647 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3648 <title>runtime.newobject (5 samples, 0.21%)</title><rect x="990.5" y="465" width="2.5" height="15.0" fill="rgb(224,141,29)" rx="2" ry="2" /> 3649 <text text-anchor="" x="993.51" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3650 </g> 3651 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3652 <title>runtime.(*mcache).refill (1 samples, 0.04%)</title><rect x="747.7" y="305" width="0.5" height="15.0" fill="rgb(242,172,1)" rx="2" ry="2" /> 3653 <text text-anchor="" x="750.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3654 </g> 3655 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3656 <title>strings.IndexAny (7 samples, 0.30%)</title><rect x="742.8" y="385" width="3.5" height="15.0" fill="rgb(208,41,7)" rx="2" ry="2" /> 3657 <text text-anchor="" x="745.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3658 </g> 3659 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3660 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="747.7" y="353" width="0.5" height="15.0" fill="rgb(219,49,31)" rx="2" ry="2" /> 3661 <text text-anchor="" x="750.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3662 </g> 3663 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3664 <title>runtime.gcMarkTermination.func2 (2 samples, 0.08%)</title><rect x="1136.3" y="513" width="1.0" height="15.0" fill="rgb(247,143,52)" rx="2" ry="2" /> 3665 <text text-anchor="" x="1139.27" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3666 </g> 3667 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3668 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="1100.0" y="401" width="0.5" height="15.0" fill="rgb(216,167,40)" rx="2" ry="2" /> 3669 <text text-anchor="" x="1102.96" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3670 </g> 3671 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3672 <title>runtime.helpgc (1 samples, 0.04%)</title><rect x="1135.8" y="481" width="0.5" height="15.0" fill="rgb(221,224,38)" rx="2" ry="2" /> 3673 <text text-anchor="" x="1138.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3674 </g> 3675 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3676 <title>runtime.(*mcache).nextFree (7 samples, 0.30%)</title><rect x="878.6" y="369" width="3.5" height="15.0" fill="rgb(241,147,0)" rx="2" ry="2" /> 3677 <text text-anchor="" x="881.58" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3678 </g> 3679 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3680 <title>reflect.Value.Call (245 samples, 10.33%)</title><rect x="575.1" y="369" width="121.9" height="15.0" fill="rgb(206,120,30)" rx="2" ry="2" /> 3681 <text text-anchor="" x="578.13" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >reflect.Value.C..</text> 3682 </g> 3683 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3684 <title>runtime/internal/atomic.Or8 (1 samples, 0.04%)</title><rect x="1044.2" y="337" width="0.5" height="15.0" fill="rgb(239,168,53)" rx="2" ry="2" /> 3685 <text text-anchor="" x="1047.24" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3686 </g> 3687 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3688 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="326.4" y="401" width="0.5" height="15.0" fill="rgb(231,71,3)" rx="2" ry="2" /> 3689 <text text-anchor="" x="329.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3690 </g> 3691 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3692 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="615.4" y="113" width="1.0" height="15.0" fill="rgb(242,47,49)" rx="2" ry="2" /> 3693 <text text-anchor="" x="618.42" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3694 </g> 3695 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3696 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="638.3" y="177" width="0.5" height="15.0" fill="rgb(213,76,29)" rx="2" ry="2" /> 3697 <text text-anchor="" x="641.31" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3698 </g> 3699 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3700 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.MeasureSince (55 samples, 2.32%)</title><rect x="1017.4" y="497" width="27.3" height="15.0" fill="rgb(208,171,27)" rx="2" ry="2" /> 3701 <text text-anchor="" x="1020.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g..</text> 3702 </g> 3703 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3704 <title>runtime.systemstack (3 samples, 0.13%)</title><rect x="106.0" y="481" width="1.5" height="15.0" fill="rgb(249,180,28)" rx="2" ry="2" /> 3705 <text text-anchor="" x="109.01" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3706 </g> 3707 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3708 <title>runtime.gcMarkDone (1 samples, 0.04%)</title><rect x="259.2" y="449" width="0.5" height="15.0" fill="rgb(205,43,48)" rx="2" ry="2" /> 3709 <text text-anchor="" x="262.23" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3710 </g> 3711 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3712 <title>runtime.stringiter2 (2 samples, 0.08%)</title><rect x="1010.4" y="433" width="1.0" height="15.0" fill="rgb(218,156,5)" rx="2" ry="2" /> 3713 <text text-anchor="" x="1013.41" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3714 </g> 3715 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3716 <title>runtime.stringiter2 (7 samples, 0.30%)</title><rect x="742.8" y="369" width="3.5" height="15.0" fill="rgb(217,194,6)" rx="2" ry="2" /> 3717 <text text-anchor="" x="745.77" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3718 </g> 3719 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3720 <title>runtime.(*mheap).allocSpanLocked (1 samples, 0.04%)</title><rect x="242.3" y="401" width="0.5" height="15.0" fill="rgb(209,220,22)" rx="2" ry="2" /> 3721 <text text-anchor="" x="245.32" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3722 </g> 3723 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3724 <title>runtime.mapaccess1_faststr (1 samples, 0.04%)</title><rect x="61.2" y="481" width="0.5" height="15.0" fill="rgb(226,112,18)" rx="2" ry="2" /> 3725 <text text-anchor="" x="64.24" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3726 </g> 3727 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3728 <title>runtime.lock (1 samples, 0.04%)</title><rect x="1011.9" y="305" width="0.5" height="15.0" fill="rgb(210,181,33)" rx="2" ry="2" /> 3729 <text text-anchor="" x="1014.91" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3730 </g> 3731 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3732 <title>runtime.(*mspan).sweep (2 samples, 0.08%)</title><rect x="787.0" y="241" width="1.0" height="15.0" fill="rgb(211,180,3)" rx="2" ry="2" /> 3733 <text text-anchor="" x="790.05" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3734 </g> 3735 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3736 <title>strconv.AppendInt (2 samples, 0.08%)</title><rect x="337.8" y="481" width="1.0" height="15.0" fill="rgb(221,125,53)" rx="2" ry="2" /> 3737 <text text-anchor="" x="340.83" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3738 </g> 3739 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3740 <title>runtime.newobject (2 samples, 0.08%)</title><rect x="689.5" y="289" width="1.0" height="15.0" fill="rgb(218,86,0)" rx="2" ry="2" /> 3741 <text text-anchor="" x="692.54" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3742 </g> 3743 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3744 <title>runtime.gcSweep (2 samples, 0.08%)</title><rect x="1136.3" y="497" width="1.0" height="15.0" fill="rgb(217,30,48)" rx="2" ry="2" /> 3745 <text text-anchor="" x="1139.27" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3746 </g> 3747 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3748 <title>runtime.mapaccess1_faststr (1 samples, 0.04%)</title><rect x="126.4" y="513" width="0.5" height="15.0" fill="rgb(241,190,10)" rx="2" ry="2" /> 3749 <text text-anchor="" x="129.41" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3750 </g> 3751 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3752 <title>runtime.readgstatus (1 samples, 0.04%)</title><rect x="1069.1" y="481" width="0.5" height="15.0" fill="rgb(232,60,53)" rx="2" ry="2" /> 3753 <text text-anchor="" x="1072.11" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3754 </g> 3755 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3756 <title>runtime.(*mcache).nextFree.func1 (4 samples, 0.17%)</title><rect x="786.6" y="289" width="1.9" height="15.0" fill="rgb(251,193,48)" rx="2" ry="2" /> 3757 <text text-anchor="" x="789.55" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3758 </g> 3759 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3760 <title>net/http.Header.sortedKeyValues (25 samples, 1.05%)</title><rect x="308.0" y="465" width="12.4" height="15.0" fill="rgb(228,172,18)" rx="2" ry="2" /> 3761 <text text-anchor="" x="310.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3762 </g> 3763 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3764 <title>runtime.mallocgc (9 samples, 0.38%)</title><rect x="227.9" y="497" width="4.5" height="15.0" fill="rgb(249,159,54)" rx="2" ry="2" /> 3765 <text text-anchor="" x="230.89" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3766 </g> 3767 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3768 <title>runtime.mapiternext (4 samples, 0.17%)</title><rect x="970.6" y="401" width="2.0" height="15.0" fill="rgb(218,133,4)" rx="2" ry="2" /> 3769 <text text-anchor="" x="973.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3770 </g> 3771 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3772 <title>runtime.(*mheap).alloc (1 samples, 0.04%)</title><rect x="1043.2" y="337" width="0.5" height="15.0" fill="rgb(211,210,19)" rx="2" ry="2" /> 3773 <text text-anchor="" x="1046.25" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3774 </g> 3775 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3776 <title>net/http.cleanPath (7 samples, 0.30%)</title><rect x="513.4" y="513" width="3.5" height="15.0" fill="rgb(233,114,22)" rx="2" ry="2" /> 3777 <text text-anchor="" x="516.44" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3778 </g> 3779 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3780 <title>runtime.(*mcentral).grow (1 samples, 0.04%)</title><rect x="270.2" y="417" width="0.5" height="15.0" fill="rgb(253,144,43)" rx="2" ry="2" /> 3781 <text text-anchor="" x="273.18" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3782 </g> 3783 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3784 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="790.5" y="321" width="0.5" height="15.0" fill="rgb(233,125,7)" rx="2" ry="2" /> 3785 <text text-anchor="" x="793.53" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3786 </g> 3787 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3788 <title>reflect.unsafe_New (8 samples, 0.34%)</title><rect x="560.2" y="353" width="4.0" height="15.0" fill="rgb(242,46,25)" rx="2" ry="2" /> 3789 <text text-anchor="" x="563.20" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3790 </g> 3791 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3792 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="904.5" y="369" width="0.4" height="15.0" fill="rgb(220,142,43)" rx="2" ry="2" /> 3793 <text text-anchor="" x="907.45" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3794 </g> 3795 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3796 <title>net/textproto.MIMEHeader.Set (16 samples, 0.67%)</title><rect x="726.4" y="385" width="7.9" height="15.0" fill="rgb(235,82,23)" rx="2" ry="2" /> 3797 <text text-anchor="" x="729.36" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3798 </g> 3799 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3800 <title>net.(*netFD).readLock (2 samples, 0.08%)</title><rect x="136.4" y="401" width="1.0" height="15.0" fill="rgb(224,49,38)" rx="2" ry="2" /> 3801 <text text-anchor="" x="139.36" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3802 </g> 3803 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3804 <title>runtime.notetsleep (1 samples, 0.04%)</title><rect x="1186.0" y="545" width="0.5" height="15.0" fill="rgb(238,12,2)" rx="2" ry="2" /> 3805 <text text-anchor="" x="1189.02" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3806 </g> 3807 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3808 <title>runtime.rawstring (1 samples, 0.04%)</title><rect x="902.5" y="321" width="0.5" height="15.0" fill="rgb(240,181,46)" rx="2" ry="2" /> 3809 <text text-anchor="" x="905.46" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3810 </g> 3811 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3812 <title>runtime.memeqbody (1 samples, 0.04%)</title><rect x="336.8" y="465" width="0.5" height="15.0" fill="rgb(209,188,40)" rx="2" ry="2" /> 3813 <text text-anchor="" x="339.84" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3814 </g> 3815 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3816 <title>runtime.gcDrainN (2 samples, 0.08%)</title><rect x="242.8" y="417" width="1.0" height="15.0" fill="rgb(222,149,45)" rx="2" ry="2" /> 3817 <text text-anchor="" x="245.82" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3818 </g> 3819 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3820 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="905.4" y="385" width="0.5" height="15.0" fill="rgb(224,214,31)" rx="2" ry="2" /> 3821 <text text-anchor="" x="908.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3822 </g> 3823 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3824 <title>runtime.greyobject (10 samples, 0.42%)</title><rect x="1124.8" y="529" width="5.0" height="15.0" fill="rgb(242,225,34)" rx="2" ry="2" /> 3825 <text text-anchor="" x="1127.83" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3826 </g> 3827 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3828 <title>runtime.gcMarkDone.func1 (1 samples, 0.04%)</title><rect x="1137.8" y="529" width="0.5" height="15.0" fill="rgb(241,156,45)" rx="2" ry="2" /> 3829 <text text-anchor="" x="1140.77" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3830 </g> 3831 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3832 <title>runtime.memclr (3 samples, 0.13%)</title><rect x="713.9" y="209" width="1.5" height="15.0" fill="rgb(206,225,43)" rx="2" ry="2" /> 3833 <text text-anchor="" x="716.92" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3834 </g> 3835 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3836 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="212.5" y="481" width="0.5" height="15.0" fill="rgb(246,170,44)" rx="2" ry="2" /> 3837 <text text-anchor="" x="215.47" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3838 </g> 3839 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3840 <title>net/url.shouldEscape (4 samples, 0.17%)</title><rect x="253.8" y="465" width="2.0" height="15.0" fill="rgb(248,3,31)" rx="2" ry="2" /> 3841 <text text-anchor="" x="256.76" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3842 </g> 3843 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3844 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="954.2" y="401" width="0.5" height="15.0" fill="rgb(208,2,35)" rx="2" ry="2" /> 3845 <text text-anchor="" x="957.20" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3846 </g> 3847 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3848 <title>strconv.formatBits (2 samples, 0.08%)</title><rect x="734.3" y="385" width="1.0" height="15.0" fill="rgb(231,168,37)" rx="2" ry="2" /> 3849 <text text-anchor="" x="737.32" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3850 </g> 3851 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3852 <title>runtime.(*mcentral).cacheSpan (1 samples, 0.04%)</title><rect x="991.5" y="369" width="0.5" height="15.0" fill="rgb(223,134,14)" rx="2" ry="2" /> 3853 <text text-anchor="" x="994.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3854 </g> 3855 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3856 <title>reflect.(*rtype).In (1 samples, 0.04%)</title><rect x="583.1" y="337" width="0.5" height="15.0" fill="rgb(227,132,1)" rx="2" ry="2" /> 3857 <text text-anchor="" x="586.09" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3858 </g> 3859 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3860 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.IncrCounter (47 samples, 1.98%)</title><rect x="665.2" y="289" width="23.3" height="15.0" fill="rgb(210,215,42)" rx="2" ry="2" /> 3861 <text text-anchor="" x="668.17" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g..</text> 3862 </g> 3863 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3864 <title>runtime.globrunqget (2 samples, 0.08%)</title><rect x="1152.7" y="529" width="1.0" height="15.0" fill="rgb(230,56,18)" rx="2" ry="2" /> 3865 <text text-anchor="" x="1155.69" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3866 </g> 3867 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3868 <title>reflect.Value.Field (5 samples, 0.21%)</title><rect x="847.7" y="273" width="2.5" height="15.0" fill="rgb(234,64,13)" rx="2" ry="2" /> 3869 <text text-anchor="" x="850.74" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3870 </g> 3871 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3872 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="660.7" y="225" width="0.5" height="15.0" fill="rgb(228,220,48)" rx="2" ry="2" /> 3873 <text text-anchor="" x="663.69" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3874 </g> 3875 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3876 <title>sync.(*Pool).Put (2 samples, 0.08%)</title><rect x="325.9" y="465" width="1.0" height="15.0" fill="rgb(235,194,44)" rx="2" ry="2" /> 3877 <text text-anchor="" x="328.89" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3878 </g> 3879 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3880 <title>runtime.notewakeup (1 samples, 0.04%)</title><rect x="64.2" y="417" width="0.5" height="15.0" fill="rgb(251,14,18)" rx="2" ry="2" /> 3881 <text text-anchor="" x="67.22" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3882 </g> 3883 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3884 <title>net.(*netFD).readFrom (1 samples, 0.04%)</title><rect x="62.7" y="529" width="0.5" height="15.0" fill="rgb(246,102,27)" rx="2" ry="2" /> 3885 <text text-anchor="" x="65.73" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3886 </g> 3887 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3888 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="733.8" y="337" width="0.5" height="15.0" fill="rgb(222,205,20)" rx="2" ry="2" /> 3889 <text text-anchor="" x="736.82" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3890 </g> 3891 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3892 <title>runtime.gogo (2 samples, 0.08%)</title><rect x="47.3" y="577" width="1.0" height="15.0" fill="rgb(234,22,46)" rx="2" ry="2" /> 3893 <text text-anchor="" x="50.31" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3894 </g> 3895 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3896 <title>runtime.mallocgc (8 samples, 0.34%)</title><rect x="786.1" y="337" width="3.9" height="15.0" fill="rgb(247,99,31)" rx="2" ry="2" /> 3897 <text text-anchor="" x="789.05" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3898 </g> 3899 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3900 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="998.0" y="401" width="0.5" height="15.0" fill="rgb(219,149,45)" rx="2" ry="2" /> 3901 <text text-anchor="" x="1000.98" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3902 </g> 3903 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3904 <title>runtime.casgstatus (2 samples, 0.08%)</title><rect x="1151.2" y="529" width="1.0" height="15.0" fill="rgb(220,177,50)" rx="2" ry="2" /> 3905 <text text-anchor="" x="1154.20" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3906 </g> 3907 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3908 <title>io.(*multiWriter).Write (22 samples, 0.93%)</title><rect x="916.4" y="433" width="10.9" height="15.0" fill="rgb(245,140,4)" rx="2" ry="2" /> 3909 <text text-anchor="" x="919.39" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3910 </g> 3911 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3912 <title>sync.runtime_Semacquire (4 samples, 0.17%)</title><rect x="937.8" y="417" width="2.0" height="15.0" fill="rgb(232,151,36)" rx="2" ry="2" /> 3913 <text text-anchor="" x="940.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3914 </g> 3915 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3916 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="641.3" y="129" width="0.5" height="15.0" fill="rgb(214,197,46)" rx="2" ry="2" /> 3917 <text text-anchor="" x="644.29" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3918 </g> 3919 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3920 <title>encoding/json.(*ptrEncoder).encode (58 samples, 2.45%)</title><rect x="828.8" y="337" width="28.9" height="15.0" fill="rgb(235,83,19)" rx="2" ry="2" /> 3921 <text text-anchor="" x="831.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text> 3922 </g> 3923 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3924 <title>github.com/hashicorp/consul/vendor/github.com/miekg/dns.ReadFromSessionUDP (1 samples, 0.04%)</title><rect x="59.2" y="497" width="0.5" height="15.0" fill="rgb(245,93,39)" rx="2" ry="2" /> 3925 <text text-anchor="" x="62.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3926 </g> 3927 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3928 <title>strings.Index (2 samples, 0.08%)</title><rect x="1007.9" y="449" width="1.0" height="15.0" fill="rgb(226,182,18)" rx="2" ry="2" /> 3929 <text text-anchor="" x="1010.93" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3930 </g> 3931 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3932 <title>runtime.gcAssistAlloc.func1 (2 samples, 0.08%)</title><rect x="242.8" y="433" width="1.0" height="15.0" fill="rgb(234,180,47)" rx="2" ry="2" /> 3933 <text text-anchor="" x="245.82" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3934 </g> 3935 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3936 <title>runtime.newMarkBits (1 samples, 0.04%)</title><rect x="786.6" y="209" width="0.4" height="15.0" fill="rgb(230,198,52)" rx="2" ry="2" /> 3937 <text text-anchor="" x="789.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3938 </g> 3939 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3940 <title>runtime.deferproc.func1 (2 samples, 0.08%)</title><rect x="662.2" y="225" width="1.0" height="15.0" fill="rgb(237,89,48)" rx="2" ry="2" /> 3941 <text text-anchor="" x="665.18" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3942 </g> 3943 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3944 <title>runtime.(*mcache).refill (1 samples, 0.04%)</title><rect x="1011.9" y="369" width="0.5" height="15.0" fill="rgb(217,65,6)" rx="2" ry="2" /> 3945 <text text-anchor="" x="1014.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3946 </g> 3947 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3948 <title>net/http.(*response).finishRequest (336 samples, 14.17%)</title><rect x="291.1" y="561" width="167.1" height="15.0" fill="rgb(234,2,43)" rx="2" ry="2" /> 3949 <text text-anchor="" x="294.07" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.(*response)...</text> 3950 </g> 3951 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3952 <title>runtime.gopark (4 samples, 0.17%)</title><rect x="139.8" y="337" width="2.0" height="15.0" fill="rgb(250,68,18)" rx="2" ry="2" /> 3953 <text text-anchor="" x="142.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3954 </g> 3955 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3956 <title>sync.(*Pool).Get (1 samples, 0.04%)</title><rect x="108.0" y="529" width="0.5" height="15.0" fill="rgb(208,13,21)" rx="2" ry="2" /> 3957 <text text-anchor="" x="111.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3958 </g> 3959 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3960 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1152.2" y="449" width="0.5" height="15.0" fill="rgb(207,48,21)" rx="2" ry="2" /> 3961 <text text-anchor="" x="1155.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3962 </g> 3963 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3964 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="954.2" y="369" width="0.5" height="15.0" fill="rgb(235,169,9)" rx="2" ry="2" /> 3965 <text text-anchor="" x="957.20" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3966 </g> 3967 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3968 <title>runtime.(*mcache).refill (3 samples, 0.13%)</title><rect x="739.3" y="289" width="1.5" height="15.0" fill="rgb(223,77,42)" rx="2" ry="2" /> 3969 <text text-anchor="" x="742.29" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3970 </g> 3971 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3972 <title>sync.(*Mutex).Unlock (2 samples, 0.08%)</title><rect x="546.3" y="337" width="1.0" height="15.0" fill="rgb(232,124,5)" rx="2" ry="2" /> 3973 <text text-anchor="" x="549.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3974 </g> 3975 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3976 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="790.5" y="369" width="0.5" height="15.0" fill="rgb(244,209,4)" rx="2" ry="2" /> 3977 <text text-anchor="" x="793.53" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3978 </g> 3979 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3980 <title>runtime.shade (1 samples, 0.04%)</title><rect x="998.0" y="337" width="0.5" height="15.0" fill="rgb(223,168,10)" rx="2" ry="2" /> 3981 <text text-anchor="" x="1000.98" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3982 </g> 3983 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3984 <title>log.(*Logger).formatHeader (16 samples, 0.67%)</title><rect x="927.3" y="433" width="8.0" height="15.0" fill="rgb(252,110,54)" rx="2" ry="2" /> 3985 <text text-anchor="" x="930.34" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3986 </g> 3987 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3988 <title>runtime/internal/atomic.Cas (1 samples, 0.04%)</title><rect x="173.7" y="321" width="0.5" height="15.0" fill="rgb(235,14,51)" rx="2" ry="2" /> 3989 <text text-anchor="" x="176.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3990 </g> 3991 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3992 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*MemDB).Txn (16 samples, 0.67%)</title><rect x="653.2" y="257" width="8.0" height="15.0" fill="rgb(217,112,38)" rx="2" ry="2" /> 3993 <text text-anchor="" x="656.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3994 </g> 3995 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 3996 <title>runtime.mapaccess1_fast32 (2 samples, 0.08%)</title><rect x="559.2" y="289" width="1.0" height="15.0" fill="rgb(244,171,10)" rx="2" ry="2" /> 3997 <text text-anchor="" x="562.21" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 3998 </g> 3999 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4000 <title>runtime.ReadMemStats (1 samples, 0.04%)</title><rect x="59.7" y="545" width="0.5" height="15.0" fill="rgb(240,200,0)" rx="2" ry="2" /> 4001 <text text-anchor="" x="62.75" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4002 </g> 4003 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4004 <title>runtime.goready (1 samples, 0.04%)</title><rect x="64.2" y="513" width="0.5" height="15.0" fill="rgb(210,159,43)" rx="2" ry="2" /> 4005 <text text-anchor="" x="67.22" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4006 </g> 4007 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4008 <title>runtime.step (5 samples, 0.21%)</title><rect x="1080.1" y="417" width="2.4" height="15.0" fill="rgb(228,85,46)" rx="2" ry="2" /> 4009 <text text-anchor="" x="1083.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4010 </g> 4011 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4012 <title>github.com/hashicorp/consul/vendor/github.com/miekg/dns.(*Server).ListenAndServe (1 samples, 0.04%)</title><rect x="59.2" y="561" width="0.5" height="15.0" fill="rgb(212,86,44)" rx="2" ry="2" /> 4013 <text text-anchor="" x="62.25" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4014 </g> 4015 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4016 <title>syscall.Read (2 samples, 0.08%)</title><rect x="63.2" y="417" width="1.0" height="15.0" fill="rgb(216,221,30)" rx="2" ry="2" /> 4017 <text text-anchor="" x="66.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4018 </g> 4019 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4020 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="89.6" y="481" width="0.5" height="15.0" fill="rgb(243,82,19)" rx="2" ry="2" /> 4021 <text text-anchor="" x="92.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4022 </g> 4023 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4024 <title>reflect.(*rtype).ptrTo (5 samples, 0.21%)</title><rect x="557.7" y="353" width="2.5" height="15.0" fill="rgb(216,87,31)" rx="2" ry="2" /> 4025 <text text-anchor="" x="560.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4026 </g> 4027 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4028 <title>runtime/internal/atomic.Xadd64 (1 samples, 0.04%)</title><rect x="788.0" y="225" width="0.5" height="15.0" fill="rgb(218,167,47)" rx="2" ry="2" /> 4029 <text text-anchor="" x="791.04" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4030 </g> 4031 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4032 <title>runtime.gcAssistAlloc (6 samples, 0.25%)</title><rect x="259.2" y="465" width="3.0" height="15.0" fill="rgb(250,81,6)" rx="2" ry="2" /> 4033 <text text-anchor="" x="262.23" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4034 </g> 4035 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4036 <title>runtime.gcDrainN (2 samples, 0.08%)</title><rect x="224.9" y="417" width="1.0" height="15.0" fill="rgb(217,161,11)" rx="2" ry="2" /> 4037 <text text-anchor="" x="227.91" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4038 </g> 4039 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4040 <title>runtime.(*mcache).nextFree (2 samples, 0.08%)</title><rect x="280.1" y="513" width="1.0" height="15.0" fill="rgb(243,229,45)" rx="2" ry="2" /> 4041 <text text-anchor="" x="283.13" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4042 </g> 4043 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4044 <title>runtime.stringiter2 (5 samples, 0.21%)</title><rect x="620.9" y="145" width="2.5" height="15.0" fill="rgb(222,142,15)" rx="2" ry="2" /> 4045 <text text-anchor="" x="623.89" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4046 </g> 4047 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4048 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="689.5" y="273" width="1.0" height="15.0" fill="rgb(234,14,44)" rx="2" ry="2" /> 4049 <text text-anchor="" x="692.54" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4050 </g> 4051 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4052 <title>runtime.exitsyscall (11 samples, 0.46%)</title><rect x="448.3" y="417" width="5.4" height="15.0" fill="rgb(223,188,15)" rx="2" ry="2" /> 4053 <text text-anchor="" x="451.27" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4054 </g> 4055 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4056 <title>net/http.shouldClose (5 samples, 0.21%)</title><rect x="124.4" y="529" width="2.5" height="15.0" fill="rgb(214,146,42)" rx="2" ry="2" /> 4057 <text text-anchor="" x="127.42" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4058 </g> 4059 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4060 <title>net/http.Header.Set (25 samples, 1.05%)</title><rect x="706.0" y="401" width="12.4" height="15.0" fill="rgb(220,165,25)" rx="2" ry="2" /> 4061 <text text-anchor="" x="708.96" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4062 </g> 4063 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4064 <title>runtime.mallocgc (5 samples, 0.21%)</title><rect x="753.7" y="417" width="2.5" height="15.0" fill="rgb(248,206,19)" rx="2" ry="2" /> 4065 <text text-anchor="" x="756.72" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4066 </g> 4067 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4068 <title>net/http.Header.Del (4 samples, 0.17%)</title><rect x="121.4" y="497" width="2.0" height="15.0" fill="rgb(229,202,15)" rx="2" ry="2" /> 4069 <text text-anchor="" x="124.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4070 </g> 4071 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4072 <title>runtime.adjustpointers (1 samples, 0.04%)</title><rect x="1179.1" y="513" width="0.5" height="15.0" fill="rgb(225,148,1)" rx="2" ry="2" /> 4073 <text text-anchor="" x="1182.06" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4074 </g> 4075 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4076 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="761.2" y="353" width="0.5" height="15.0" fill="rgb(242,141,12)" rx="2" ry="2" /> 4077 <text text-anchor="" x="764.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4078 </g> 4079 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4080 <title>runtime.gcSweep (1 samples, 0.04%)</title><rect x="734.8" y="225" width="0.5" height="15.0" fill="rgb(244,21,6)" rx="2" ry="2" /> 4081 <text text-anchor="" x="737.81" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4082 </g> 4083 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4084 <title>bufio.(*Reader).fill (2 samples, 0.08%)</title><rect x="63.2" y="465" width="1.0" height="15.0" fill="rgb(252,86,36)" rx="2" ry="2" /> 4085 <text text-anchor="" x="66.23" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4086 </g> 4087 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4088 <title>net/rpc.(*service).call (271 samples, 11.42%)</title><rect x="564.7" y="385" width="134.8" height="15.0" fill="rgb(240,103,21)" rx="2" ry="2" /> 4089 <text text-anchor="" x="567.68" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/rpc.(*service..</text> 4090 </g> 4091 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4092 <title>net/http.(*connReader).Read (88 samples, 3.71%)</title><rect x="130.4" y="449" width="43.8" height="15.0" fill="rgb(226,85,31)" rx="2" ry="2" /> 4093 <text text-anchor="" x="133.39" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/..</text> 4094 </g> 4095 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4096 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="617.9" y="145" width="0.5" height="15.0" fill="rgb(227,228,40)" rx="2" ry="2" /> 4097 <text text-anchor="" x="620.91" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4098 </g> 4099 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4100 <title>runtime.unlock (1 samples, 0.04%)</title><rect x="703.0" y="273" width="0.5" height="15.0" fill="rgb(246,97,6)" rx="2" ry="2" /> 4101 <text text-anchor="" x="705.98" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4102 </g> 4103 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4104 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="1024.8" y="417" width="0.5" height="15.0" fill="rgb(221,182,42)" rx="2" ry="2" /> 4105 <text text-anchor="" x="1027.84" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4106 </g> 4107 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4108 <title>runtime.(*fixalloc).alloc (1 samples, 0.04%)</title><rect x="880.6" y="289" width="0.5" height="15.0" fill="rgb(252,102,22)" rx="2" ry="2" /> 4109 <text text-anchor="" x="883.57" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4110 </g> 4111 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4112 <title>runtime.mapassign1 (9 samples, 0.38%)</title><rect x="786.1" y="369" width="4.4" height="15.0" fill="rgb(213,64,9)" rx="2" ry="2" /> 4113 <text text-anchor="" x="789.05" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4114 </g> 4115 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4116 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="212.5" y="497" width="0.5" height="15.0" fill="rgb(208,79,3)" rx="2" ry="2" /> 4117 <text text-anchor="" x="215.47" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4118 </g> 4119 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4120 <title>runtime.mapassign1 (1 samples, 0.04%)</title><rect x="723.9" y="369" width="0.5" height="15.0" fill="rgb(206,190,40)" rx="2" ry="2" /> 4121 <text text-anchor="" x="726.87" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4122 </g> 4123 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4124 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="59.2" y="385" width="0.5" height="15.0" fill="rgb(240,92,38)" rx="2" ry="2" /> 4125 <text text-anchor="" x="62.25" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4126 </g> 4127 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4128 <title>runtime.schedule (5 samples, 0.21%)</title><rect x="1141.2" y="545" width="2.5" height="15.0" fill="rgb(244,142,21)" rx="2" ry="2" /> 4129 <text text-anchor="" x="1144.25" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4130 </g> 4131 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4132 <title>runtime.(*mcache).refill (1 samples, 0.04%)</title><rect x="806.0" y="321" width="0.5" height="15.0" fill="rgb(225,91,5)" rx="2" ry="2" /> 4133 <text text-anchor="" x="808.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4134 </g> 4135 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4136 <title>strings.Join (7 samples, 0.30%)</title><rect x="1022.8" y="433" width="3.5" height="15.0" fill="rgb(249,77,14)" rx="2" ry="2" /> 4137 <text text-anchor="" x="1025.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4138 </g> 4139 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4140 <title>runtime.rawbyteslice (4 samples, 0.17%)</title><rect x="616.4" y="161" width="2.0" height="15.0" fill="rgb(231,129,48)" rx="2" ry="2" /> 4141 <text text-anchor="" x="619.42" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4142 </g> 4143 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4144 <title>runtime.indexbytebody (1 samples, 0.04%)</title><rect x="210.5" y="449" width="0.5" height="15.0" fill="rgb(251,140,37)" rx="2" ry="2" /> 4145 <text text-anchor="" x="213.48" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4146 </g> 4147 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4148 <title>reflect.mapassign (1 samples, 0.04%)</title><rect x="60.2" y="401" width="0.5" height="15.0" fill="rgb(234,35,39)" rx="2" ry="2" /> 4149 <text text-anchor="" x="63.24" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4150 </g> 4151 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4152 <title>sync/atomic.AddUint32 (1 samples, 0.04%)</title><rect x="573.6" y="321" width="0.5" height="15.0" fill="rgb(245,158,19)" rx="2" ry="2" /> 4153 <text text-anchor="" x="576.63" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4154 </g> 4155 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4156 <title>time.(*Duration).String (6 samples, 0.25%)</title><rect x="901.0" y="385" width="3.0" height="15.0" fill="rgb(212,108,37)" rx="2" ry="2" /> 4157 <text text-anchor="" x="903.97" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4158 </g> 4159 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4160 <title>runtime.exitsyscall0 (3 samples, 0.13%)</title><rect x="1138.8" y="577" width="1.5" height="15.0" fill="rgb(245,174,21)" rx="2" ry="2" /> 4161 <text text-anchor="" x="1141.76" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4162 </g> 4163 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4164 <title>runtime.gosweepone.func1 (1 samples, 0.04%)</title><rect x="229.9" y="449" width="0.5" height="15.0" fill="rgb(206,135,42)" rx="2" ry="2" /> 4165 <text text-anchor="" x="232.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4166 </g> 4167 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4168 <title>runtime.deferreturn.func1 (1 samples, 0.04%)</title><rect x="1029.8" y="385" width="0.5" height="15.0" fill="rgb(240,210,13)" rx="2" ry="2" /> 4169 <text text-anchor="" x="1032.81" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4170 </g> 4171 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4172 <title>runtime.startm (1 samples, 0.04%)</title><rect x="64.2" y="433" width="0.5" height="15.0" fill="rgb(238,42,32)" rx="2" ry="2" /> 4173 <text text-anchor="" x="67.22" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4174 </g> 4175 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4176 <title>strings.Index (1 samples, 0.04%)</title><rect x="883.6" y="417" width="0.5" height="15.0" fill="rgb(239,226,18)" rx="2" ry="2" /> 4177 <text text-anchor="" x="886.56" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4178 </g> 4179 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4180 <title>runtime.shade (1 samples, 0.04%)</title><rect x="660.7" y="161" width="0.5" height="15.0" fill="rgb(237,226,6)" rx="2" ry="2" /> 4181 <text text-anchor="" x="663.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4182 </g> 4183 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4184 <title>runtime.deferreturn.func1 (1 samples, 0.04%)</title><rect x="143.3" y="369" width="0.5" height="15.0" fill="rgb(225,217,50)" rx="2" ry="2" /> 4185 <text text-anchor="" x="146.32" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4186 </g> 4187 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4188 <title>net.(*UDPConn).readFrom (1 samples, 0.04%)</title><rect x="62.7" y="545" width="0.5" height="15.0" fill="rgb(228,164,48)" rx="2" ry="2" /> 4189 <text text-anchor="" x="65.73" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4190 </g> 4191 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4192 <title>runtime.newobject (7 samples, 0.30%)</title><rect x="279.1" y="545" width="3.5" height="15.0" fill="rgb(242,166,30)" rx="2" ry="2" /> 4193 <text text-anchor="" x="282.13" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4194 </g> 4195 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4196 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="1043.2" y="321" width="0.5" height="15.0" fill="rgb(233,98,50)" rx="2" ry="2" /> 4197 <text text-anchor="" x="1046.25" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4198 </g> 4199 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4200 <title>runtime.makeslice (6 samples, 0.25%)</title><rect x="104.5" y="529" width="3.0" height="15.0" fill="rgb(249,228,21)" rx="2" ry="2" /> 4201 <text text-anchor="" x="107.52" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4202 </g> 4203 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4204 <title>runtime/internal/atomic.Xadd64 (1 samples, 0.04%)</title><rect x="561.2" y="209" width="0.5" height="15.0" fill="rgb(245,81,8)" rx="2" ry="2" /> 4205 <text text-anchor="" x="564.20" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4206 </g> 4207 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4208 <title>runtime.(*mspan).refillAllocCache (1 samples, 0.04%)</title><rect x="921.9" y="305" width="0.5" height="15.0" fill="rgb(209,10,34)" rx="2" ry="2" /> 4209 <text text-anchor="" x="924.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4210 </g> 4211 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4212 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="806.0" y="353" width="0.5" height="15.0" fill="rgb(230,58,37)" rx="2" ry="2" /> 4213 <text text-anchor="" x="808.95" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4214 </g> 4215 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4216 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="783.1" y="353" width="1.0" height="15.0" fill="rgb(246,24,21)" rx="2" ry="2" /> 4217 <text text-anchor="" x="786.07" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4218 </g> 4219 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4220 <title>runtime.netpoll (10 samples, 0.42%)</title><rect x="1159.2" y="529" width="4.9" height="15.0" fill="rgb(251,151,1)" rx="2" ry="2" /> 4221 <text text-anchor="" x="1162.16" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4222 </g> 4223 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4224 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="954.7" y="369" width="0.5" height="15.0" fill="rgb(251,219,27)" rx="2" ry="2" /> 4225 <text text-anchor="" x="957.70" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4226 </g> 4227 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4228 <title>fmt.(*pp).printArg (26 samples, 1.10%)</title><rect x="891.5" y="417" width="13.0" height="15.0" fill="rgb(246,140,49)" rx="2" ry="2" /> 4229 <text text-anchor="" x="894.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4230 </g> 4231 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4232 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1189.5" y="593" width="0.5" height="15.0" fill="rgb(241,42,17)" rx="2" ry="2" /> 4233 <text text-anchor="" x="1192.50" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4234 </g> 4235 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4236 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="883.1" y="321" width="0.5" height="15.0" fill="rgb(226,143,17)" rx="2" ry="2" /> 4237 <text text-anchor="" x="886.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4238 </g> 4239 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4240 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).Get (5 samples, 0.21%)</title><rect x="644.3" y="193" width="2.5" height="15.0" fill="rgb(253,68,32)" rx="2" ry="2" /> 4241 <text text-anchor="" x="647.27" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4242 </g> 4243 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4244 <title>bufio.(*Writer).WriteString (7 samples, 0.30%)</title><rect x="304.5" y="465" width="3.5" height="15.0" fill="rgb(213,176,45)" rx="2" ry="2" /> 4245 <text text-anchor="" x="307.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4246 </g> 4247 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4248 <title>github.com/hashicorp/consul/consul/state.(*StateStore).KVSGet (134 samples, 5.65%)</title><rect x="597.5" y="273" width="66.7" height="15.0" fill="rgb(250,170,47)" rx="2" ry="2" /> 4249 <text text-anchor="" x="600.51" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> 4250 </g> 4251 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4252 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="511.0" y="481" width="0.9" height="15.0" fill="rgb(237,203,21)" rx="2" ry="2" /> 4253 <text text-anchor="" x="513.95" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4254 </g> 4255 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4256 <title>runtime.makemap (2 samples, 0.08%)</title><rect x="792.0" y="385" width="1.0" height="15.0" fill="rgb(208,109,45)" rx="2" ry="2" /> 4257 <text text-anchor="" x="795.02" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4258 </g> 4259 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4260 <title>runtime.gcAssistAlloc (2 samples, 0.08%)</title><rect x="1043.7" y="433" width="1.0" height="15.0" fill="rgb(218,74,45)" rx="2" ry="2" /> 4261 <text text-anchor="" x="1046.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4262 </g> 4263 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4264 <title>bytes.(*Buffer).grow (3 samples, 0.13%)</title><rect x="838.8" y="257" width="1.5" height="15.0" fill="rgb(252,198,27)" rx="2" ry="2" /> 4265 <text text-anchor="" x="841.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4266 </g> 4267 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4268 <title>sort.Search (3 samples, 0.13%)</title><rect x="632.8" y="145" width="1.5" height="15.0" fill="rgb(228,229,47)" rx="2" ry="2" /> 4269 <text text-anchor="" x="635.83" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4270 </g> 4271 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4272 <title>net/textproto.(*Reader).readLineSlice (95 samples, 4.01%)</title><rect x="126.9" y="513" width="47.3" height="15.0" fill="rgb(250,205,40)" rx="2" ry="2" /> 4273 <text text-anchor="" x="129.91" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/..</text> 4274 </g> 4275 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4276 <title>runtime.futex (1 samples, 0.04%)</title><rect x="1158.2" y="497" width="0.5" height="15.0" fill="rgb(230,44,44)" rx="2" ry="2" /> 4277 <text text-anchor="" x="1161.16" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4278 </g> 4279 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4280 <title>time.Now (1 samples, 0.04%)</title><rect x="1022.4" y="433" width="0.4" height="15.0" fill="rgb(221,119,11)" rx="2" ry="2" /> 4281 <text text-anchor="" x="1025.35" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4282 </g> 4283 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4284 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="730.8" y="337" width="0.5" height="15.0" fill="rgb(226,68,10)" rx="2" ry="2" /> 4285 <text text-anchor="" x="733.83" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4286 </g> 4287 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4288 <title>net/textproto.CanonicalMIMEHeaderKey (7 samples, 0.30%)</title><rect x="726.4" y="369" width="3.4" height="15.0" fill="rgb(209,73,3)" rx="2" ry="2" /> 4289 <text text-anchor="" x="729.36" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4290 </g> 4291 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4292 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="748.2" y="353" width="0.5" height="15.0" fill="rgb(237,203,54)" rx="2" ry="2" /> 4293 <text text-anchor="" x="751.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4294 </g> 4295 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4296 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="696.0" y="321" width="0.5" height="15.0" fill="rgb(249,142,25)" rx="2" ry="2" /> 4297 <text text-anchor="" x="699.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4298 </g> 4299 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4300 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge.func1 (2 samples, 0.08%)</title><rect x="633.3" y="129" width="1.0" height="15.0" fill="rgb(217,197,41)" rx="2" ry="2" /> 4301 <text text-anchor="" x="636.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4302 </g> 4303 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4304 <title>sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%)</title><rect x="571.6" y="321" width="0.5" height="15.0" fill="rgb(231,72,6)" rx="2" ry="2" /> 4305 <text text-anchor="" x="574.64" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4306 </g> 4307 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4308 <title>reflect.(*rtype).AssignableTo (1 samples, 0.04%)</title><rect x="582.6" y="337" width="0.5" height="15.0" fill="rgb(231,177,20)" rx="2" ry="2" /> 4309 <text text-anchor="" x="585.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4310 </g> 4311 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4312 <title>sync.(*Mutex).Unlock (1 samples, 0.04%)</title><rect x="1039.3" y="433" width="0.5" height="15.0" fill="rgb(242,125,31)" rx="2" ry="2" /> 4313 <text text-anchor="" x="1042.27" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4314 </g> 4315 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4316 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="766.7" y="353" width="0.5" height="15.0" fill="rgb(241,116,0)" rx="2" ry="2" /> 4317 <text text-anchor="" x="769.65" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4318 </g> 4319 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4320 <title>runtime.scanobject (2 samples, 0.08%)</title><rect x="224.9" y="401" width="1.0" height="15.0" fill="rgb(229,74,4)" rx="2" ry="2" /> 4321 <text text-anchor="" x="227.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4322 </g> 4323 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4324 <title>net/textproto.(*Reader).closeDot (1 samples, 0.04%)</title><rect x="211.0" y="481" width="0.5" height="15.0" fill="rgb(230,69,50)" rx="2" ry="2" /> 4325 <text text-anchor="" x="213.98" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4326 </g> 4327 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4328 <title>net/http.(*conn).setState (2 samples, 0.08%)</title><rect x="290.1" y="561" width="1.0" height="15.0" fill="rgb(214,198,9)" rx="2" ry="2" /> 4329 <text text-anchor="" x="293.08" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4330 </g> 4331 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4332 <title>runtime.step (1 samples, 0.04%)</title><rect x="1179.6" y="481" width="0.5" height="15.0" fill="rgb(217,77,53)" rx="2" ry="2" /> 4333 <text text-anchor="" x="1182.55" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4334 </g> 4335 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4336 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="61.7" y="449" width="0.5" height="15.0" fill="rgb(251,164,24)" rx="2" ry="2" /> 4337 <text text-anchor="" x="64.74" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4338 </g> 4339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4340 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="660.7" y="241" width="0.5" height="15.0" fill="rgb(243,116,5)" rx="2" ry="2" /> 4341 <text text-anchor="" x="663.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4342 </g> 4343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4344 <title>sync.(*RWMutex).RLock (3 samples, 0.13%)</title><rect x="1030.3" y="417" width="1.5" height="15.0" fill="rgb(254,72,4)" rx="2" ry="2" /> 4345 <text text-anchor="" x="1033.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4346 </g> 4347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4348 <title>context.parentCancelCtx (2 samples, 0.08%)</title><rect x="70.2" y="513" width="1.0" height="15.0" fill="rgb(253,5,36)" rx="2" ry="2" /> 4349 <text text-anchor="" x="73.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4350 </g> 4351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4352 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="953.7" y="417" width="0.5" height="15.0" fill="rgb(252,129,41)" rx="2" ry="2" /> 4353 <text text-anchor="" x="956.70" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4354 </g> 4355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4356 <title>runtime.reimburseSweepCredit (1 samples, 0.04%)</title><rect x="561.2" y="225" width="0.5" height="15.0" fill="rgb(238,136,27)" rx="2" ry="2" /> 4357 <text text-anchor="" x="564.20" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4358 </g> 4359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4360 <title>runtime.growslice (1 samples, 0.04%)</title><rect x="735.8" y="385" width="0.5" height="15.0" fill="rgb(224,126,20)" rx="2" ry="2" /> 4361 <text text-anchor="" x="738.81" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4362 </g> 4363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4364 <title>runtime.scanstack.func1 (1 samples, 0.04%)</title><rect x="1101.0" y="449" width="0.5" height="15.0" fill="rgb(232,129,25)" rx="2" ry="2" /> 4365 <text text-anchor="" x="1103.95" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4366 </g> 4367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4368 <title>runtime.sweepone (20 samples, 0.84%)</title><rect x="1050.7" y="513" width="10.0" height="15.0" fill="rgb(252,42,43)" rx="2" ry="2" /> 4369 <text text-anchor="" x="1053.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4370 </g> 4371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4372 <title>runtime.(*mcache).nextFree (4 samples, 0.17%)</title><rect x="1005.4" y="401" width="2.0" height="15.0" fill="rgb(238,165,24)" rx="2" ry="2" /> 4373 <text text-anchor="" x="1008.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4374 </g> 4375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4376 <title>sort.insertionSort (6 samples, 0.25%)</title><rect x="317.4" y="417" width="3.0" height="15.0" fill="rgb(226,174,26)" rx="2" ry="2" /> 4377 <text text-anchor="" x="320.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4378 </g> 4379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4380 <title>runtime.heapBitsSetType (4 samples, 0.17%)</title><rect x="271.7" y="497" width="2.0" height="15.0" fill="rgb(233,189,37)" rx="2" ry="2" /> 4381 <text text-anchor="" x="274.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4382 </g> 4383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4384 <title>runtime.lock (2 samples, 0.08%)</title><rect x="178.6" y="433" width="1.0" height="15.0" fill="rgb(237,93,51)" rx="2" ry="2" /> 4385 <text text-anchor="" x="181.64" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4386 </g> 4387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4388 <title>syscall.Syscall (202 samples, 8.52%)</title><rect x="353.3" y="433" width="100.4" height="15.0" fill="rgb(247,200,19)" rx="2" ry="2" /> 4389 <text text-anchor="" x="356.25" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syscall.Sysc..</text> 4390 </g> 4391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4392 <title>net/url.ParseQuery (20 samples, 0.84%)</title><rect x="804.5" y="433" width="9.9" height="15.0" fill="rgb(243,204,7)" rx="2" ry="2" /> 4393 <text text-anchor="" x="807.46" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4394 </g> 4395 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4396 <title>runtime.(*mcache).refill (2 samples, 0.08%)</title><rect x="241.3" y="417" width="1.0" height="15.0" fill="rgb(247,202,23)" rx="2" ry="2" /> 4397 <text text-anchor="" x="244.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4398 </g> 4399 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4400 <title>sync.(*Pool).pin (1 samples, 0.04%)</title><rect x="108.0" y="513" width="0.5" height="15.0" fill="rgb(219,84,24)" rx="2" ry="2" /> 4401 <text text-anchor="" x="111.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4402 </g> 4403 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4404 <title>net/rpc.(*Server).readRequest (66 samples, 2.78%)</title><rect x="531.8" y="385" width="32.9" height="15.0" fill="rgb(237,176,1)" rx="2" ry="2" /> 4405 <text text-anchor="" x="534.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ne..</text> 4406 </g> 4407 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4408 <title>runtime.rawstring (5 samples, 0.21%)</title><rect x="247.3" y="481" width="2.5" height="15.0" fill="rgb(252,155,3)" rx="2" ry="2" /> 4409 <text text-anchor="" x="250.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4410 </g> 4411 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4412 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="904.0" y="305" width="0.5" height="15.0" fill="rgb(226,193,32)" rx="2" ry="2" /> 4413 <text text-anchor="" x="906.95" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4414 </g> 4415 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4416 <title>runtime.newobject (2 samples, 0.08%)</title><rect x="813.4" y="401" width="1.0" height="15.0" fill="rgb(231,197,44)" rx="2" ry="2" /> 4417 <text text-anchor="" x="816.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4418 </g> 4419 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4420 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="968.1" y="369" width="1.0" height="15.0" fill="rgb(211,218,22)" rx="2" ry="2" /> 4421 <text text-anchor="" x="971.13" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4422 </g> 4423 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4424 <title>runtime.systemstack (20 samples, 0.84%)</title><rect x="49.3" y="577" width="9.9" height="15.0" fill="rgb(239,204,47)" rx="2" ry="2" /> 4425 <text text-anchor="" x="52.30" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4426 </g> 4427 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4428 <title>net.(*fdMutex).rwlock (2 samples, 0.08%)</title><rect x="136.4" y="385" width="1.0" height="15.0" fill="rgb(214,20,31)" rx="2" ry="2" /> 4429 <text text-anchor="" x="139.36" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4430 </g> 4431 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4432 <title>runtime.(*mheap).alloc (1 samples, 0.04%)</title><rect x="1006.9" y="305" width="0.5" height="15.0" fill="rgb(215,41,41)" rx="2" ry="2" /> 4433 <text text-anchor="" x="1009.93" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4434 </g> 4435 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4436 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="998.0" y="353" width="0.5" height="15.0" fill="rgb(227,129,37)" rx="2" ry="2" /> 4437 <text text-anchor="" x="1000.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4438 </g> 4439 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4440 <title>runtime.growslice (1 samples, 0.04%)</title><rect x="904.5" y="417" width="0.4" height="15.0" fill="rgb(221,33,17)" rx="2" ry="2" /> 4441 <text text-anchor="" x="907.45" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4442 </g> 4443 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4444 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="723.4" y="289" width="0.5" height="15.0" fill="rgb(247,151,4)" rx="2" ry="2" /> 4445 <text text-anchor="" x="726.37" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4446 </g> 4447 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4448 <title>reflect.(*rtype).Elem (2 samples, 0.08%)</title><rect x="842.8" y="257" width="1.0" height="15.0" fill="rgb(244,18,0)" rx="2" ry="2" /> 4449 <text text-anchor="" x="845.77" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4450 </g> 4451 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4452 <title>net.(*netFD).Write (2 samples, 0.08%)</title><rect x="64.7" y="417" width="1.0" height="15.0" fill="rgb(211,179,5)" rx="2" ry="2" /> 4453 <text text-anchor="" x="67.72" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4454 </g> 4455 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4456 <title>net.(*fdMutex).rwlock (2 samples, 0.08%)</title><rect x="342.8" y="449" width="1.0" height="15.0" fill="rgb(242,122,6)" rx="2" ry="2" /> 4457 <text text-anchor="" x="345.81" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4458 </g> 4459 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4460 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="776.1" y="353" width="1.5" height="15.0" fill="rgb(251,66,53)" rx="2" ry="2" /> 4461 <text text-anchor="" x="779.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4462 </g> 4463 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4464 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).getInterval (7 samples, 0.30%)</title><rect x="679.1" y="241" width="3.5" height="15.0" fill="rgb(237,23,4)" rx="2" ry="2" /> 4465 <text text-anchor="" x="682.10" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4466 </g> 4467 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4468 <title>syscall.Sendto (1 samples, 0.04%)</title><rect x="62.2" y="417" width="0.5" height="15.0" fill="rgb(248,20,8)" rx="2" ry="2" /> 4469 <text text-anchor="" x="65.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4470 </g> 4471 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4472 <title>runtime.systemstack (6 samples, 0.25%)</title><rect x="508.0" y="433" width="3.0" height="15.0" fill="rgb(205,119,32)" rx="2" ry="2" /> 4473 <text text-anchor="" x="510.97" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4474 </g> 4475 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4476 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="695.0" y="321" width="1.0" height="15.0" fill="rgb(233,190,33)" rx="2" ry="2" /> 4477 <text text-anchor="" x="698.02" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4478 </g> 4479 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4480 <title>runtime.heapBits.initSpan (1 samples, 0.04%)</title><rect x="786.6" y="225" width="0.4" height="15.0" fill="rgb(224,117,37)" rx="2" ry="2" /> 4481 <text text-anchor="" x="789.55" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4482 </g> 4483 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4484 <title>net.(*UDPConn).readMsg (1 samples, 0.04%)</title><rect x="59.2" y="465" width="0.5" height="15.0" fill="rgb(235,74,54)" rx="2" ry="2" /> 4485 <text text-anchor="" x="62.25" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4486 </g> 4487 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4488 <title>runtime.memeqbody (1 samples, 0.04%)</title><rect x="61.2" y="465" width="0.5" height="15.0" fill="rgb(250,142,29)" rx="2" ry="2" /> 4489 <text text-anchor="" x="64.24" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4490 </g> 4491 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4492 <title>net/url.QueryUnescape (1 samples, 0.04%)</title><rect x="735.3" y="385" width="0.5" height="15.0" fill="rgb(220,197,7)" rx="2" ry="2" /> 4493 <text text-anchor="" x="738.31" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4494 </g> 4495 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4496 <title>runtime.findrunnable (3 samples, 0.13%)</title><rect x="1141.7" y="529" width="1.5" height="15.0" fill="rgb(210,132,16)" rx="2" ry="2" /> 4497 <text text-anchor="" x="1144.75" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4498 </g> 4499 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4500 <title>runtime.newarray (2 samples, 0.08%)</title><rect x="799.5" y="353" width="1.0" height="15.0" fill="rgb(248,79,19)" rx="2" ry="2" /> 4501 <text text-anchor="" x="802.49" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4502 </g> 4503 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4504 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="703.0" y="257" width="0.5" height="15.0" fill="rgb(245,43,28)" rx="2" ry="2" /> 4505 <text text-anchor="" x="705.98" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4506 </g> 4507 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4508 <title>runtime.gcAssistAlloc (3 samples, 0.13%)</title><rect x="224.4" y="465" width="1.5" height="15.0" fill="rgb(235,159,21)" rx="2" ry="2" /> 4509 <text text-anchor="" x="227.41" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4510 </g> 4511 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4512 <title>net.(*conn).Write (227 samples, 9.57%)</title><rect x="340.8" y="497" width="112.9" height="15.0" fill="rgb(228,195,41)" rx="2" ry="2" /> 4513 <text text-anchor="" x="343.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net.(*conn).W..</text> 4514 </g> 4515 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4516 <title>time.Time.Date (3 samples, 0.13%)</title><rect x="328.4" y="465" width="1.5" height="15.0" fill="rgb(248,92,40)" rx="2" ry="2" /> 4517 <text text-anchor="" x="331.38" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4518 </g> 4519 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4520 <title>runtime/internal/atomic.Loadp (1 samples, 0.04%)</title><rect x="898.0" y="353" width="0.5" height="15.0" fill="rgb(245,106,51)" rx="2" ry="2" /> 4521 <text text-anchor="" x="900.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4522 </g> 4523 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4524 <title>runtime.memeqbody (3 samples, 0.13%)</title><rect x="552.7" y="337" width="1.5" height="15.0" fill="rgb(217,127,2)" rx="2" ry="2" /> 4525 <text text-anchor="" x="555.74" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4526 </g> 4527 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4528 <title>runtime.gcMarkDone (1 samples, 0.04%)</title><rect x="224.4" y="449" width="0.5" height="15.0" fill="rgb(206,109,38)" rx="2" ry="2" /> 4529 <text text-anchor="" x="227.41" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4530 </g> 4531 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4532 <title>runtime.reentersyscall (8 samples, 0.34%)</title><rect x="444.3" y="401" width="4.0" height="15.0" fill="rgb(240,222,48)" rx="2" ry="2" /> 4533 <text text-anchor="" x="447.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4534 </g> 4535 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4536 <title>runtime.newobject (4 samples, 0.17%)</title><rect x="817.4" y="449" width="2.0" height="15.0" fill="rgb(226,82,24)" rx="2" ry="2" /> 4537 <text text-anchor="" x="820.39" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4538 </g> 4539 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4540 <title>net/rpc.(*Server).sendResponse (17 samples, 0.72%)</title><rect x="566.7" y="369" width="8.4" height="15.0" fill="rgb(243,177,4)" rx="2" ry="2" /> 4541 <text text-anchor="" x="569.67" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4542 </g> 4543 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4544 <title>runtime.gcAssistAlloc.func1 (46 samples, 1.94%)</title><rect x="179.6" y="417" width="22.9" height="15.0" fill="rgb(207,78,48)" rx="2" ry="2" /> 4545 <text text-anchor="" x="182.64" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 4546 </g> 4547 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4548 <title>runtime.(*mspan).refillAllocCache (1 samples, 0.04%)</title><rect x="1046.7" y="433" width="0.5" height="15.0" fill="rgb(211,174,47)" rx="2" ry="2" /> 4549 <text text-anchor="" x="1049.73" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4550 </g> 4551 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4552 <title>runtime.mallocgc (6 samples, 0.25%)</title><rect x="995.0" y="417" width="3.0" height="15.0" fill="rgb(224,222,14)" rx="2" ry="2" /> 4553 <text text-anchor="" x="997.99" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4554 </g> 4555 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4556 <title>strings.(*Replacer).Replace (5 samples, 0.21%)</title><rect x="323.4" y="465" width="2.5" height="15.0" fill="rgb(235,147,30)" rx="2" ry="2" /> 4557 <text text-anchor="" x="326.41" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4558 </g> 4559 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4560 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="614.9" y="145" width="0.5" height="15.0" fill="rgb(207,81,28)" rx="2" ry="2" /> 4561 <text text-anchor="" x="617.92" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4562 </g> 4563 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4564 <title>net/textproto.(*Reader).readContinuedLineSlice (13 samples, 0.55%)</title><rect x="206.5" y="513" width="6.5" height="15.0" fill="rgb(209,176,45)" rx="2" ry="2" /> 4565 <text text-anchor="" x="209.50" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4566 </g> 4567 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4568 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="650.7" y="225" width="0.5" height="15.0" fill="rgb(242,211,50)" rx="2" ry="2" /> 4569 <text text-anchor="" x="653.74" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4570 </g> 4571 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4572 <title>runtime.aeshashbody (1 samples, 0.04%)</title><rect x="219.4" y="481" width="0.5" height="15.0" fill="rgb(236,33,48)" rx="2" ry="2" /> 4573 <text text-anchor="" x="222.44" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4574 </g> 4575 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4576 <title>runtime.memequal64 (1 samples, 0.04%)</title><rect x="862.7" y="337" width="0.5" height="15.0" fill="rgb(210,94,14)" rx="2" ry="2" /> 4577 <text text-anchor="" x="865.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4578 </g> 4579 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4580 <title>runtime.makeslice (4 samples, 0.17%)</title><rect x="844.8" y="273" width="1.9" height="15.0" fill="rgb(211,216,29)" rx="2" ry="2" /> 4581 <text text-anchor="" x="847.76" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4582 </g> 4583 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4584 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).readableIndex (10 samples, 0.42%)</title><rect x="644.3" y="225" width="4.9" height="15.0" fill="rgb(251,16,50)" rx="2" ry="2" /> 4585 <text text-anchor="" x="647.27" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4586 </g> 4587 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4588 <title>runtime.rawbyteslice (4 samples, 0.17%)</title><rect x="641.8" y="177" width="2.0" height="15.0" fill="rgb(245,37,32)" rx="2" ry="2" /> 4589 <text text-anchor="" x="644.79" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4590 </g> 4591 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4592 <title>runtime.shade (4 samples, 0.17%)</title><rect x="509.0" y="385" width="2.0" height="15.0" fill="rgb(233,53,51)" rx="2" ry="2" /> 4593 <text text-anchor="" x="511.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4594 </g> 4595 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4596 <title>runtime.futex (1 samples, 0.04%)</title><rect x="1141.7" y="449" width="0.5" height="15.0" fill="rgb(228,100,24)" rx="2" ry="2" /> 4597 <text text-anchor="" x="1144.75" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4598 </g> 4599 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4600 <title>runtime.duffzero (1 samples, 0.04%)</title><rect x="334.4" y="481" width="0.4" height="15.0" fill="rgb(231,181,3)" rx="2" ry="2" /> 4601 <text text-anchor="" x="337.35" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4602 </g> 4603 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4604 <title>runtime.gcTryRemoveAllStackBarriers (1 samples, 0.04%)</title><rect x="638.3" y="129" width="0.5" height="15.0" fill="rgb(251,88,46)" rx="2" ry="2" /> 4605 <text text-anchor="" x="641.31" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4606 </g> 4607 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4608 <title>runtime.newobject (5 samples, 0.21%)</title><rect x="746.3" y="385" width="2.4" height="15.0" fill="rgb(225,124,27)" rx="2" ry="2" /> 4609 <text text-anchor="" x="749.26" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4610 </g> 4611 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4612 <title>net.(*netFD).writeLock (2 samples, 0.08%)</title><rect x="342.8" y="465" width="1.0" height="15.0" fill="rgb(215,205,47)" rx="2" ry="2" /> 4613 <text text-anchor="" x="345.81" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4614 </g> 4615 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4616 <title>runtime.deductSweepCredit (1 samples, 0.04%)</title><rect x="788.0" y="241" width="0.5" height="15.0" fill="rgb(208,218,43)" rx="2" ry="2" /> 4617 <text text-anchor="" x="791.04" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4618 </g> 4619 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4620 <title>runtime.makemap (3 samples, 0.13%)</title><rect x="885.5" y="433" width="1.5" height="15.0" fill="rgb(249,161,54)" rx="2" ry="2" /> 4621 <text text-anchor="" x="888.55" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4622 </g> 4623 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4624 <title>runtime.startm (7 samples, 0.30%)</title><rect x="1153.7" y="513" width="3.5" height="15.0" fill="rgb(246,41,38)" rx="2" ry="2" /> 4625 <text text-anchor="" x="1156.68" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4626 </g> 4627 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4628 <title>runtime.mallocgc (5 samples, 0.21%)</title><rect x="685.6" y="241" width="2.5" height="15.0" fill="rgb(207,21,11)" rx="2" ry="2" /> 4629 <text text-anchor="" x="688.56" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4630 </g> 4631 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4632 <title>fmt.(*fmt).padString (2 samples, 0.08%)</title><rect x="895.5" y="369" width="1.0" height="15.0" fill="rgb(232,0,13)" rx="2" ry="2" /> 4633 <text text-anchor="" x="898.50" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4634 </g> 4635 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4636 <title>runtime.(*mcache).nextFree (4 samples, 0.17%)</title><rect x="807.9" y="353" width="2.0" height="15.0" fill="rgb(234,216,32)" rx="2" ry="2" /> 4637 <text text-anchor="" x="810.94" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4638 </g> 4639 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4640 <title>reflect.resolveTypeOff (5 samples, 0.21%)</title><rect x="557.7" y="321" width="2.5" height="15.0" fill="rgb(226,128,39)" rx="2" ry="2" /> 4641 <text text-anchor="" x="560.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4642 </g> 4643 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4644 <title>runtime.mapiterinit (7 samples, 0.30%)</title><rect x="311.0" y="449" width="3.5" height="15.0" fill="rgb(243,179,30)" rx="2" ry="2" /> 4645 <text text-anchor="" x="313.97" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4646 </g> 4647 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4648 <title>runtime.(*mcentral).cacheSpan (4 samples, 0.17%)</title><rect x="1005.4" y="337" width="2.0" height="15.0" fill="rgb(218,28,49)" rx="2" ry="2" /> 4649 <text text-anchor="" x="1008.44" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4650 </g> 4651 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4652 <title>runtime.newarray (14 samples, 0.59%)</title><rect x="238.8" y="497" width="7.0" height="15.0" fill="rgb(234,162,43)" rx="2" ry="2" /> 4653 <text text-anchor="" x="241.84" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4654 </g> 4655 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4656 <title>runtime.netpollblock (5 samples, 0.21%)</title><rect x="139.3" y="353" width="2.5" height="15.0" fill="rgb(223,161,39)" rx="2" ry="2" /> 4657 <text text-anchor="" x="142.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4658 </g> 4659 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4660 <title>runtime.forEachP (1 samples, 0.04%)</title><rect x="1137.8" y="513" width="0.5" height="15.0" fill="rgb(242,225,8)" rx="2" ry="2" /> 4661 <text text-anchor="" x="1140.77" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4662 </g> 4663 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4664 <title>runtime.growslice (6 samples, 0.25%)</title><rect x="774.6" y="369" width="3.0" height="15.0" fill="rgb(224,98,20)" rx="2" ry="2" /> 4665 <text text-anchor="" x="777.61" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4666 </g> 4667 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4668 <title>runtime.deferreturn (2 samples, 0.08%)</title><rect x="918.4" y="401" width="1.0" height="15.0" fill="rgb(243,196,7)" rx="2" ry="2" /> 4669 <text text-anchor="" x="921.38" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4670 </g> 4671 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4672 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="1171.1" y="337" width="0.5" height="15.0" fill="rgb(230,229,50)" rx="2" ry="2" /> 4673 <text text-anchor="" x="1174.10" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4674 </g> 4675 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4676 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="1055.7" y="449" width="0.5" height="15.0" fill="rgb(247,65,33)" rx="2" ry="2" /> 4677 <text text-anchor="" x="1058.68" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4678 </g> 4679 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4680 <title>runtime.writebarrierptr_nostore (1 samples, 0.04%)</title><rect x="730.8" y="321" width="0.5" height="15.0" fill="rgb(235,33,4)" rx="2" ry="2" /> 4681 <text text-anchor="" x="733.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4682 </g> 4683 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4684 <title>runtime.(*mcentral).cacheSpan (2 samples, 0.08%)</title><rect x="270.2" y="433" width="1.0" height="15.0" fill="rgb(234,203,31)" rx="2" ry="2" /> 4685 <text text-anchor="" x="273.18" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4686 </g> 4687 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4688 <title>runtime.futexwakeup (1 samples, 0.04%)</title><rect x="64.2" y="401" width="0.5" height="15.0" fill="rgb(208,19,14)" rx="2" ry="2" /> 4689 <text text-anchor="" x="67.22" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4690 </g> 4691 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4692 <title>net/textproto.CanonicalMIMEHeaderKey (1 samples, 0.04%)</title><rect x="772.6" y="385" width="0.5" height="15.0" fill="rgb(233,80,2)" rx="2" ry="2" /> 4693 <text text-anchor="" x="775.62" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4694 </g> 4695 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4696 <title>bytes.(*Buffer).WriteByte (1 samples, 0.04%)</title><rect x="827.8" y="353" width="0.5" height="15.0" fill="rgb(232,8,12)" rx="2" ry="2" /> 4697 <text text-anchor="" x="830.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4698 </g> 4699 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4700 <title>runtime.deferproc.func1 (5 samples, 0.21%)</title><rect x="99.5" y="497" width="2.5" height="15.0" fill="rgb(238,223,34)" rx="2" ry="2" /> 4701 <text text-anchor="" x="102.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4702 </g> 4703 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4704 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="1012.4" y="369" width="0.5" height="15.0" fill="rgb(210,57,17)" rx="2" ry="2" /> 4705 <text text-anchor="" x="1015.40" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4706 </g> 4707 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4708 <title>runtime/internal/atomic.Xadd (5 samples, 0.21%)</title><rect x="1058.2" y="497" width="2.5" height="15.0" fill="rgb(237,203,13)" rx="2" ry="2" /> 4709 <text text-anchor="" x="1061.17" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4710 </g> 4711 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4712 <title>runtime.gchelper (2 samples, 0.08%)</title><rect x="1174.6" y="513" width="1.0" height="15.0" fill="rgb(250,108,51)" rx="2" ry="2" /> 4713 <text text-anchor="" x="1177.58" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4714 </g> 4715 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4716 <title>runtime.duffcopy (2 samples, 0.08%)</title><rect x="688.5" y="289" width="1.0" height="15.0" fill="rgb(223,185,52)" rx="2" ry="2" /> 4717 <text text-anchor="" x="691.55" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4718 </g> 4719 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4720 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).AddSample (2 samples, 0.08%)</title><rect x="60.7" y="497" width="1.0" height="15.0" fill="rgb(239,63,22)" rx="2" ry="2" /> 4721 <text text-anchor="" x="63.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4722 </g> 4723 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4724 <title>runtime.scanstack.func1 (1 samples, 0.04%)</title><rect x="1138.8" y="417" width="0.5" height="15.0" fill="rgb(244,139,31)" rx="2" ry="2" /> 4725 <text text-anchor="" x="1141.76" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4726 </g> 4727 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4728 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*decFnInfo).kMap (1 samples, 0.04%)</title><rect x="60.2" y="433" width="0.5" height="15.0" fill="rgb(212,88,41)" rx="2" ry="2" /> 4729 <text text-anchor="" x="63.24" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4730 </g> 4731 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4732 <title>runtime.ifaceeq (1 samples, 0.04%)</title><rect x="72.7" y="481" width="0.5" height="15.0" fill="rgb(254,208,17)" rx="2" ry="2" /> 4733 <text text-anchor="" x="75.68" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4734 </g> 4735 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4736 <title>runtime.(*mSpanList).remove (1 samples, 0.04%)</title><rect x="1054.7" y="465" width="0.5" height="15.0" fill="rgb(210,84,20)" rx="2" ry="2" /> 4737 <text text-anchor="" x="1057.69" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4738 </g> 4739 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4740 <title>github.com/hashicorp/consul/command/agent.missingKey (2 samples, 0.08%)</title><rect x="703.5" y="433" width="1.0" height="15.0" fill="rgb(254,126,11)" rx="2" ry="2" /> 4741 <text text-anchor="" x="706.47" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4742 </g> 4743 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4744 <title>runtime.slicebytetostring (2 samples, 0.08%)</title><rect x="728.8" y="337" width="1.0" height="15.0" fill="rgb(219,211,2)" rx="2" ry="2" /> 4745 <text text-anchor="" x="731.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4746 </g> 4747 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4748 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="703.0" y="305" width="0.5" height="15.0" fill="rgb(245,21,7)" rx="2" ry="2" /> 4749 <text text-anchor="" x="705.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4750 </g> 4751 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4752 <title>runtime.wakep (1 samples, 0.04%)</title><rect x="1176.1" y="529" width="0.5" height="15.0" fill="rgb(225,178,4)" rx="2" ry="2" /> 4753 <text text-anchor="" x="1179.07" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4754 </g> 4755 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4756 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="270.2" y="353" width="0.5" height="15.0" fill="rgb(229,12,52)" rx="2" ry="2" /> 4757 <text text-anchor="" x="273.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4758 </g> 4759 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4760 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="686.6" y="225" width="0.5" height="15.0" fill="rgb(250,71,28)" rx="2" ry="2" /> 4761 <text text-anchor="" x="689.56" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4762 </g> 4763 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4764 <title>runtime.epollwait (1 samples, 0.04%)</title><rect x="1185.5" y="529" width="0.5" height="15.0" fill="rgb(241,2,10)" rx="2" ry="2" /> 4765 <text text-anchor="" x="1188.52" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4766 </g> 4767 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4768 <title>runtime.funcspdelta (3 samples, 0.13%)</title><rect x="1168.1" y="385" width="1.5" height="15.0" fill="rgb(226,17,53)" rx="2" ry="2" /> 4769 <text text-anchor="" x="1171.11" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4770 </g> 4771 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4772 <title>net/textproto.CanonicalMIMEHeaderKey (6 samples, 0.25%)</title><rect x="720.9" y="369" width="3.0" height="15.0" fill="rgb(218,29,4)" rx="2" ry="2" /> 4773 <text text-anchor="" x="723.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4774 </g> 4775 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4776 <title>net/http.serverHandler.ServeHTTP (1,189 samples, 50.13%)</title><rect x="458.7" y="561" width="591.5" height="15.0" fill="rgb(251,31,10)" rx="2" ry="2" /> 4777 <text text-anchor="" x="461.72" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.serverHandler.ServeHTTP</text> 4778 </g> 4779 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4780 <title>runtime.goschedImpl (7 samples, 0.30%)</title><rect x="1140.3" y="561" width="3.4" height="15.0" fill="rgb(231,72,48)" rx="2" ry="2" /> 4781 <text text-anchor="" x="1143.25" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4782 </g> 4783 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4784 <title>runtime.casgstatus (1 samples, 0.04%)</title><rect x="1143.7" y="561" width="0.5" height="15.0" fill="rgb(223,11,11)" rx="2" ry="2" /> 4785 <text text-anchor="" x="1146.74" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4786 </g> 4787 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4788 <title>github.com/hashicorp/consul/vendor/github.com/miekg/dns.(*defaultReader).ReadUDP (1 samples, 0.04%)</title><rect x="59.2" y="529" width="0.5" height="15.0" fill="rgb(221,3,37)" rx="2" ry="2" /> 4789 <text text-anchor="" x="62.25" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4790 </g> 4791 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4792 <title>runtime.runqgrab (4 samples, 0.17%)</title><rect x="1164.6" y="513" width="2.0" height="15.0" fill="rgb(251,153,39)" rx="2" ry="2" /> 4793 <text text-anchor="" x="1167.63" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4794 </g> 4795 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4796 <title>runtime.helpgc (1 samples, 0.04%)</title><rect x="778.6" y="225" width="0.5" height="15.0" fill="rgb(254,154,41)" rx="2" ry="2" /> 4797 <text text-anchor="" x="781.59" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4798 </g> 4799 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4800 <title>fmt.(*pp).free (5 samples, 0.21%)</title><rect x="905.9" y="433" width="2.5" height="15.0" fill="rgb(243,94,42)" rx="2" ry="2" /> 4801 <text text-anchor="" x="908.94" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4802 </g> 4803 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4804 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="249.3" y="433" width="0.5" height="15.0" fill="rgb(221,228,0)" rx="2" ry="2" /> 4805 <text text-anchor="" x="252.28" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4806 </g> 4807 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4808 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="789.5" y="321" width="0.5" height="15.0" fill="rgb(210,120,6)" rx="2" ry="2" /> 4809 <text text-anchor="" x="792.54" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4810 </g> 4811 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4812 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="790.5" y="353" width="0.5" height="15.0" fill="rgb(213,179,41)" rx="2" ry="2" /> 4813 <text text-anchor="" x="793.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4814 </g> 4815 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4816 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="933.3" y="369" width="0.5" height="15.0" fill="rgb(245,142,6)" rx="2" ry="2" /> 4817 <text text-anchor="" x="936.31" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4818 </g> 4819 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4820 <title>runtime.indexbytebody (1 samples, 0.04%)</title><rect x="1008.4" y="433" width="0.5" height="15.0" fill="rgb(206,184,32)" rx="2" ry="2" /> 4821 <text text-anchor="" x="1011.42" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4822 </g> 4823 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4824 <title>net/http.statusLine (5 samples, 0.21%)</title><rect x="331.9" y="481" width="2.5" height="15.0" fill="rgb(227,114,38)" rx="2" ry="2" /> 4825 <text text-anchor="" x="334.86" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4826 </g> 4827 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4828 <title>bufio.(*Writer).WriteString (2 samples, 0.08%)</title><rect x="299.0" y="481" width="1.0" height="15.0" fill="rgb(214,93,26)" rx="2" ry="2" /> 4829 <text text-anchor="" x="302.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4830 </g> 4831 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4832 <title>runtime.concatstring3 (3 samples, 0.13%)</title><rect x="634.3" y="193" width="1.5" height="15.0" fill="rgb(232,199,49)" rx="2" ry="2" /> 4833 <text text-anchor="" x="637.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4834 </g> 4835 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4836 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="921.9" y="337" width="0.5" height="15.0" fill="rgb(242,201,3)" rx="2" ry="2" /> 4837 <text text-anchor="" x="924.86" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4838 </g> 4839 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4840 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Txn).Get (5 samples, 0.21%)</title><rect x="644.3" y="209" width="2.5" height="15.0" fill="rgb(212,71,24)" rx="2" ry="2" /> 4841 <text text-anchor="" x="647.27" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4842 </g> 4843 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4844 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="783.1" y="289" width="0.5" height="15.0" fill="rgb(251,22,46)" rx="2" ry="2" /> 4845 <text text-anchor="" x="786.07" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4846 </g> 4847 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4848 <title>runtime.markrootBlock (6 samples, 0.25%)</title><rect x="1061.2" y="529" width="2.9" height="15.0" fill="rgb(217,164,1)" rx="2" ry="2" /> 4849 <text text-anchor="" x="1064.16" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4850 </g> 4851 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4852 <title>runtime.usleep (1 samples, 0.04%)</title><rect x="1165.6" y="497" width="0.5" height="15.0" fill="rgb(239,193,34)" rx="2" ry="2" /> 4853 <text text-anchor="" x="1168.62" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4854 </g> 4855 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4856 <title>runtime.rawstringtmp (4 samples, 0.17%)</title><rect x="920.9" y="385" width="2.0" height="15.0" fill="rgb(253,19,26)" rx="2" ry="2" /> 4857 <text text-anchor="" x="923.87" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4858 </g> 4859 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4860 <title>sync.(*Mutex).Lock (2 samples, 0.08%)</title><rect x="282.6" y="545" width="1.0" height="15.0" fill="rgb(250,213,43)" rx="2" ry="2" /> 4861 <text text-anchor="" x="285.61" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4862 </g> 4863 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4864 <title>runtime.makemap (5 samples, 0.21%)</title><rect x="746.3" y="401" width="2.4" height="15.0" fill="rgb(222,73,6)" rx="2" ry="2" /> 4865 <text text-anchor="" x="749.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4866 </g> 4867 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4868 <title>runtime.mallocgc (54 samples, 2.28%)</title><rect x="175.7" y="465" width="26.8" height="15.0" fill="rgb(209,111,8)" rx="2" ry="2" /> 4869 <text text-anchor="" x="178.66" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 4870 </g> 4871 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4872 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="224.4" y="417" width="0.5" height="15.0" fill="rgb(250,150,15)" rx="2" ry="2" /> 4873 <text text-anchor="" x="227.41" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4874 </g> 4875 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4876 <title>runtime.newArena (1 samples, 0.04%)</title><rect x="270.2" y="369" width="0.5" height="15.0" fill="rgb(222,95,11)" rx="2" ry="2" /> 4877 <text text-anchor="" x="273.18" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4878 </g> 4879 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4880 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="1025.3" y="337" width="1.0" height="15.0" fill="rgb(229,138,54)" rx="2" ry="2" /> 4881 <text text-anchor="" x="1028.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4882 </g> 4883 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4884 <title>runtime/internal/atomic.Or8 (1 samples, 0.04%)</title><rect x="1025.8" y="257" width="0.5" height="15.0" fill="rgb(229,115,13)" rx="2" ry="2" /> 4885 <text text-anchor="" x="1028.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4886 </g> 4887 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4888 <title>runtime.gcDrainN (5 samples, 0.21%)</title><rect x="259.7" y="417" width="2.5" height="15.0" fill="rgb(217,229,7)" rx="2" ry="2" /> 4889 <text text-anchor="" x="262.73" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4890 </g> 4891 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4892 <title>runtime.mapaccess1_faststr (2 samples, 0.08%)</title><rect x="123.4" y="497" width="1.0" height="15.0" fill="rgb(226,146,37)" rx="2" ry="2" /> 4893 <text text-anchor="" x="126.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4894 </g> 4895 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4896 <title>runtime.(*gcWork).tryGet (1 samples, 0.04%)</title><rect x="242.8" y="401" width="0.5" height="15.0" fill="rgb(236,65,11)" rx="2" ry="2" /> 4897 <text text-anchor="" x="245.82" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4898 </g> 4899 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4900 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="717.4" y="337" width="0.5" height="15.0" fill="rgb(207,58,5)" rx="2" ry="2" /> 4901 <text text-anchor="" x="720.40" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4902 </g> 4903 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4904 <title>runtime.notetsleep_internal (1 samples, 0.04%)</title><rect x="1186.0" y="529" width="0.5" height="15.0" fill="rgb(230,2,38)" rx="2" ry="2" /> 4905 <text text-anchor="" x="1189.02" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4906 </g> 4907 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4908 <title>net/http.readRequest.func1 (2 samples, 0.08%)</title><rect x="113.5" y="529" width="1.0" height="15.0" fill="rgb(219,209,30)" rx="2" ry="2" /> 4909 <text text-anchor="" x="116.47" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4910 </g> 4911 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4912 <title>runtime.ReadMemStats.func1 (1 samples, 0.04%)</title><rect x="59.7" y="513" width="0.5" height="15.0" fill="rgb(244,58,11)" rx="2" ry="2" /> 4913 <text text-anchor="" x="62.75" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4914 </g> 4915 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4916 <title>runtime.(*mheap).alloc (3 samples, 0.13%)</title><rect x="713.9" y="225" width="1.5" height="15.0" fill="rgb(235,75,32)" rx="2" ry="2" /> 4917 <text text-anchor="" x="716.92" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4918 </g> 4919 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4920 <title>runtime.gcMarkTermination (1 samples, 0.04%)</title><rect x="734.8" y="273" width="0.5" height="15.0" fill="rgb(213,125,26)" rx="2" ry="2" /> 4921 <text text-anchor="" x="737.81" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4922 </g> 4923 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4924 <title>runtime.deferproc (1 samples, 0.04%)</title><rect x="917.9" y="401" width="0.5" height="15.0" fill="rgb(230,140,27)" rx="2" ry="2" /> 4925 <text text-anchor="" x="920.88" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4926 </g> 4927 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4928 <title>runtime.scanframeworker (4 samples, 0.17%)</title><rect x="1169.6" y="369" width="2.0" height="15.0" fill="rgb(224,22,44)" rx="2" ry="2" /> 4929 <text text-anchor="" x="1172.60" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4930 </g> 4931 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4932 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="933.3" y="353" width="0.5" height="15.0" fill="rgb(230,191,10)" rx="2" ry="2" /> 4933 <text text-anchor="" x="936.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4934 </g> 4935 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4936 <title>runtime.stackmapdata (1 samples, 0.04%)</title><rect x="1100.5" y="417" width="0.5" height="15.0" fill="rgb(252,115,53)" rx="2" ry="2" /> 4937 <text text-anchor="" x="1103.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4938 </g> 4939 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4940 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).encodeAndSendMsg (1 samples, 0.04%)</title><rect x="62.2" y="513" width="0.5" height="15.0" fill="rgb(217,222,11)" rx="2" ry="2" /> 4941 <text text-anchor="" x="65.23" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4942 </g> 4943 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4944 <title>net/url.(*URL).EscapedPath (5 samples, 0.21%)</title><rect x="987.0" y="465" width="2.5" height="15.0" fill="rgb(205,201,39)" rx="2" ry="2" /> 4945 <text text-anchor="" x="990.03" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4946 </g> 4947 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4948 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="1046.7" y="465" width="0.5" height="15.0" fill="rgb(253,29,5)" rx="2" ry="2" /> 4949 <text text-anchor="" x="1049.73" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4950 </g> 4951 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4952 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="229.9" y="465" width="0.5" height="15.0" fill="rgb(245,212,24)" rx="2" ry="2" /> 4953 <text text-anchor="" x="232.88" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4954 </g> 4955 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4956 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/serf/serf.decodeMessage (1 samples, 0.04%)</title><rect x="60.2" y="529" width="0.5" height="15.0" fill="rgb(221,62,54)" rx="2" ry="2" /> 4957 <text text-anchor="" x="63.24" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4958 </g> 4959 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4960 <title>runtime.(*mcache).nextFree (4 samples, 0.17%)</title><rect x="713.9" y="321" width="2.0" height="15.0" fill="rgb(217,122,48)" rx="2" ry="2" /> 4961 <text text-anchor="" x="716.92" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4962 </g> 4963 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4964 <title>runtime.slicebytetostring (4 samples, 0.17%)</title><rect x="920.9" y="401" width="2.0" height="15.0" fill="rgb(253,211,42)" rx="2" ry="2" /> 4965 <text text-anchor="" x="923.87" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4966 </g> 4967 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4968 <title>runtime.(*mcentral).cacheSpan (4 samples, 0.17%)</title><rect x="878.6" y="305" width="2.0" height="15.0" fill="rgb(244,119,11)" rx="2" ry="2" /> 4969 <text text-anchor="" x="881.58" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4970 </g> 4971 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4972 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="867.1" y="433" width="1.5" height="15.0" fill="rgb(239,36,0)" rx="2" ry="2" /> 4973 <text text-anchor="" x="870.14" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4974 </g> 4975 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4976 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="1135.3" y="513" width="0.5" height="15.0" fill="rgb(226,7,46)" rx="2" ry="2" /> 4977 <text text-anchor="" x="1138.28" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4978 </g> 4979 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4980 <title>runtime.mapaccess1_faststr (1 samples, 0.04%)</title><rect x="721.9" y="337" width="0.5" height="15.0" fill="rgb(236,220,30)" rx="2" ry="2" /> 4981 <text text-anchor="" x="724.88" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4982 </g> 4983 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4984 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="932.8" y="401" width="0.5" height="15.0" fill="rgb(230,180,32)" rx="2" ry="2" /> 4985 <text text-anchor="" x="935.81" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4986 </g> 4987 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4988 <title>runtime.(*mcache).refill (1 samples, 0.04%)</title><rect x="561.2" y="257" width="0.5" height="15.0" fill="rgb(253,149,9)" rx="2" ry="2" /> 4989 <text text-anchor="" x="564.20" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4990 </g> 4991 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4992 <title>syscall.Syscall (60 samples, 2.53%)</title><rect x="144.3" y="369" width="29.9" height="15.0" fill="rgb(235,46,1)" rx="2" ry="2" /> 4993 <text text-anchor="" x="147.32" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text> 4994 </g> 4995 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 4996 <title>net/textproto.canonicalMIMEHeaderKey (7 samples, 0.30%)</title><rect x="726.4" y="353" width="3.4" height="15.0" fill="rgb(241,213,12)" rx="2" ry="2" /> 4997 <text text-anchor="" x="729.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 4998 </g> 4999 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5000 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="1189.5" y="577" width="0.5" height="15.0" fill="rgb(243,90,46)" rx="2" ry="2" /> 5001 <text text-anchor="" x="1192.50" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5002 </g> 5003 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5004 <title>runtime.interequal (1 samples, 0.04%)</title><rect x="862.7" y="369" width="0.5" height="15.0" fill="rgb(251,215,54)" rx="2" ry="2" /> 5005 <text text-anchor="" x="865.66" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5006 </g> 5007 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5008 <title>runtime.newdefer (2 samples, 0.08%)</title><rect x="662.2" y="209" width="1.0" height="15.0" fill="rgb(214,156,41)" rx="2" ry="2" /> 5009 <text text-anchor="" x="665.18" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5010 </g> 5011 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5012 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="723.4" y="273" width="0.5" height="15.0" fill="rgb(247,42,0)" rx="2" ry="2" /> 5013 <text text-anchor="" x="726.37" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5014 </g> 5015 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5016 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.decodeResponse (2 samples, 0.08%)</title><rect x="63.2" y="561" width="1.0" height="15.0" fill="rgb(212,225,37)" rx="2" ry="2" /> 5017 <text text-anchor="" x="66.23" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5018 </g> 5019 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5020 <title>runtime.gcDrainN (2 samples, 0.08%)</title><rect x="1043.7" y="385" width="1.0" height="15.0" fill="rgb(211,5,26)" rx="2" ry="2" /> 5021 <text text-anchor="" x="1046.74" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5022 </g> 5023 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5024 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="715.4" y="257" width="0.5" height="15.0" fill="rgb(227,132,40)" rx="2" ry="2" /> 5025 <text text-anchor="" x="718.41" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5026 </g> 5027 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5028 <title>runtime.entersyscall (4 samples, 0.17%)</title><rect x="171.7" y="353" width="2.0" height="15.0" fill="rgb(235,57,43)" rx="2" ry="2" /> 5029 <text text-anchor="" x="174.68" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5030 </g> 5031 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5032 <title>sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%)</title><rect x="545.8" y="321" width="0.5" height="15.0" fill="rgb(229,190,24)" rx="2" ry="2" /> 5033 <text text-anchor="" x="548.78" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5034 </g> 5035 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5036 <title>runtime.unlock (1 samples, 0.04%)</title><rect x="1055.7" y="465" width="0.5" height="15.0" fill="rgb(207,129,1)" rx="2" ry="2" /> 5037 <text text-anchor="" x="1058.68" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5038 </g> 5039 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5040 <title>runtime.funcspdelta (1 samples, 0.04%)</title><rect x="1182.5" y="353" width="0.5" height="15.0" fill="rgb(205,74,46)" rx="2" ry="2" /> 5041 <text text-anchor="" x="1185.54" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5042 </g> 5043 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5044 <title>runtime.(*mcache).nextFree.func1 (1 samples, 0.04%)</title><rect x="1011.9" y="385" width="0.5" height="15.0" fill="rgb(240,200,20)" rx="2" ry="2" /> 5045 <text text-anchor="" x="1014.91" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5046 </g> 5047 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5048 <title>github.com/hashicorp/consul/consul/structs.(*KeyRequest).AllowStaleRead (1 samples, 0.04%)</title><rect x="691.0" y="289" width="0.5" height="15.0" fill="rgb(215,228,25)" rx="2" ry="2" /> 5049 <text text-anchor="" x="694.04" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5050 </g> 5051 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5052 <title>encoding/json.(*encodeState).string (5 samples, 0.21%)</title><rect x="836.3" y="289" width="2.5" height="15.0" fill="rgb(229,111,16)" rx="2" ry="2" /> 5053 <text text-anchor="" x="839.30" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5054 </g> 5055 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5056 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="688.1" y="241" width="0.4" height="15.0" fill="rgb(223,5,20)" rx="2" ry="2" /> 5057 <text text-anchor="" x="691.05" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5058 </g> 5059 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5060 <title>runtime.newdefer (1 samples, 0.04%)</title><rect x="680.6" y="161" width="0.5" height="15.0" fill="rgb(241,71,15)" rx="2" ry="2" /> 5061 <text text-anchor="" x="683.59" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5062 </g> 5063 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5064 <title>runtime.scang (71 samples, 2.99%)</title><rect x="1066.1" y="497" width="35.4" height="15.0" fill="rgb(248,97,5)" rx="2" ry="2" /> 5065 <text text-anchor="" x="1069.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 5066 </g> 5067 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5068 <title>runtime.(*gcWork).tryGet (1 samples, 0.04%)</title><rect x="180.1" y="385" width="0.5" height="15.0" fill="rgb(214,113,46)" rx="2" ry="2" /> 5069 <text text-anchor="" x="183.13" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5070 </g> 5071 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5072 <title>strings.IndexAny (2 samples, 0.08%)</title><rect x="768.1" y="369" width="1.0" height="15.0" fill="rgb(226,173,19)" rx="2" ry="2" /> 5073 <text text-anchor="" x="771.15" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5074 </g> 5075 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5076 <title>runtime.gcDrainN (2 samples, 0.08%)</title><rect x="95.6" y="449" width="1.0" height="15.0" fill="rgb(246,76,0)" rx="2" ry="2" /> 5077 <text text-anchor="" x="98.56" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5078 </g> 5079 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5080 <title>sync/atomic.LoadUint32 (1 samples, 0.04%)</title><rect x="300.5" y="465" width="0.5" height="15.0" fill="rgb(205,154,42)" rx="2" ry="2" /> 5081 <text text-anchor="" x="303.52" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5082 </g> 5083 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5084 <title>runtime.futexwakeup (1 samples, 0.04%)</title><rect x="1141.7" y="465" width="0.5" height="15.0" fill="rgb(242,193,46)" rx="2" ry="2" /> 5085 <text text-anchor="" x="1144.75" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5086 </g> 5087 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5088 <title>reflect.ValueOf (1 samples, 0.04%)</title><rect x="865.6" y="433" width="0.5" height="15.0" fill="rgb(233,123,20)" rx="2" ry="2" /> 5089 <text text-anchor="" x="868.65" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5090 </g> 5091 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5092 <title>runtime.gcDrainN (2 samples, 0.08%)</title><rect x="992.0" y="385" width="1.0" height="15.0" fill="rgb(239,60,12)" rx="2" ry="2" /> 5093 <text text-anchor="" x="995.01" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5094 </g> 5095 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5096 <title>runtime.(*mSpanList).remove (1 samples, 0.04%)</title><rect x="242.3" y="385" width="0.5" height="15.0" fill="rgb(230,156,36)" rx="2" ry="2" /> 5097 <text text-anchor="" x="245.32" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5098 </g> 5099 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5100 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="349.8" y="449" width="0.5" height="15.0" fill="rgb(234,5,52)" rx="2" ry="2" /> 5101 <text text-anchor="" x="352.77" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5102 </g> 5103 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5104 <title>runtime.heapBitsSetType (4 samples, 0.17%)</title><rect x="562.2" y="305" width="2.0" height="15.0" fill="rgb(241,99,29)" rx="2" ry="2" /> 5105 <text text-anchor="" x="565.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5106 </g> 5107 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5108 <title>runtime/internal/atomic.Cas (1 samples, 0.04%)</title><rect x="1149.2" y="513" width="0.5" height="15.0" fill="rgb(228,27,11)" rx="2" ry="2" /> 5109 <text text-anchor="" x="1152.21" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5110 </g> 5111 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5112 <title>strconv.FormatUint (2 samples, 0.08%)</title><rect x="734.3" y="401" width="1.0" height="15.0" fill="rgb(254,187,13)" rx="2" ry="2" /> 5113 <text text-anchor="" x="737.32" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5114 </g> 5115 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5116 <title>reflect.Value.IsNil (1 samples, 0.04%)</title><rect x="859.2" y="385" width="0.5" height="15.0" fill="rgb(235,184,28)" rx="2" ry="2" /> 5117 <text text-anchor="" x="862.18" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5118 </g> 5119 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5120 <title>runtime/internal/atomic.Xadd64 (1 samples, 0.04%)</title><rect x="790.5" y="257" width="0.5" height="15.0" fill="rgb(208,204,32)" rx="2" ry="2" /> 5121 <text text-anchor="" x="793.53" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5122 </g> 5123 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5124 <title>time.fmtFrac (1 samples, 0.04%)</title><rect x="903.0" y="353" width="0.5" height="15.0" fill="rgb(228,13,43)" rx="2" ry="2" /> 5125 <text text-anchor="" x="905.96" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5126 </g> 5127 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5128 <title>sort.quickSort (6 samples, 0.25%)</title><rect x="317.4" y="433" width="3.0" height="15.0" fill="rgb(241,190,16)" rx="2" ry="2" /> 5129 <text text-anchor="" x="320.44" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5130 </g> 5131 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5132 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="954.2" y="337" width="0.5" height="15.0" fill="rgb(250,153,3)" rx="2" ry="2" /> 5133 <text text-anchor="" x="957.20" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5134 </g> 5135 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5136 <title>runtime.(*gcControllerState).enlistWorker (1 samples, 0.04%)</title><rect x="1060.7" y="497" width="0.5" height="15.0" fill="rgb(224,119,23)" rx="2" ry="2" /> 5137 <text text-anchor="" x="1063.66" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5138 </g> 5139 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5140 <title>runtime.concatstring2 (2 samples, 0.08%)</title><rect x="640.8" y="193" width="1.0" height="15.0" fill="rgb(224,195,13)" rx="2" ry="2" /> 5141 <text text-anchor="" x="643.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5142 </g> 5143 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5144 <title>strings.Index (1 samples, 0.04%)</title><rect x="256.7" y="481" width="0.5" height="15.0" fill="rgb(214,136,27)" rx="2" ry="2" /> 5145 <text text-anchor="" x="259.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5146 </g> 5147 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5148 <title>strings.Count (1 samples, 0.04%)</title><rect x="1027.8" y="417" width="0.5" height="15.0" fill="rgb(221,72,35)" rx="2" ry="2" /> 5149 <text text-anchor="" x="1030.82" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5150 </g> 5151 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5152 <title>runtime.duffcopy (1 samples, 0.04%)</title><rect x="651.2" y="241" width="0.5" height="15.0" fill="rgb(243,20,9)" rx="2" ry="2" /> 5153 <text text-anchor="" x="654.24" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5154 </g> 5155 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5156 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="800.5" y="337" width="0.5" height="15.0" fill="rgb(224,171,20)" rx="2" ry="2" /> 5157 <text text-anchor="" x="803.48" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5158 </g> 5159 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5160 <title>runtime.pcvalue (12 samples, 0.51%)</title><rect x="1076.6" y="433" width="5.9" height="15.0" fill="rgb(224,216,35)" rx="2" ry="2" /> 5161 <text text-anchor="" x="1079.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5162 </g> 5163 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5164 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="249.3" y="385" width="0.5" height="15.0" fill="rgb(251,38,36)" rx="2" ry="2" /> 5165 <text text-anchor="" x="252.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5166 </g> 5167 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5168 <title>runtime.findfunc (1 samples, 0.04%)</title><rect x="1184.0" y="529" width="0.5" height="15.0" fill="rgb(215,193,46)" rx="2" ry="2" /> 5169 <text text-anchor="" x="1187.03" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5170 </g> 5171 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5172 <title>runtime.newobject (11 samples, 0.46%)</title><rect x="268.2" y="529" width="5.5" height="15.0" fill="rgb(211,14,16)" rx="2" ry="2" /> 5173 <text text-anchor="" x="271.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5174 </g> 5175 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5176 <title>reflect.Value.Set (11 samples, 0.46%)</title><rect x="533.8" y="353" width="5.5" height="15.0" fill="rgb(205,157,46)" rx="2" ry="2" /> 5177 <text text-anchor="" x="536.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5178 </g> 5179 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5180 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="733.8" y="369" width="0.5" height="15.0" fill="rgb(225,99,2)" rx="2" ry="2" /> 5181 <text text-anchor="" x="736.82" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5182 </g> 5183 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5184 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="313.5" y="417" width="0.5" height="15.0" fill="rgb(238,149,31)" rx="2" ry="2" /> 5185 <text text-anchor="" x="316.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5186 </g> 5187 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5188 <title>bytes.(*Buffer).Write (3 samples, 0.13%)</title><rect x="838.8" y="273" width="1.5" height="15.0" fill="rgb(253,20,31)" rx="2" ry="2" /> 5189 <text text-anchor="" x="841.79" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5190 </g> 5191 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5192 <title>runtime.(*mspan).sweep (10 samples, 0.42%)</title><rect x="1053.2" y="497" width="5.0" height="15.0" fill="rgb(217,212,20)" rx="2" ry="2" /> 5193 <text text-anchor="" x="1056.20" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5194 </g> 5195 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5196 <title>runtime.findrunnable (2 samples, 0.08%)</title><rect x="1181.0" y="513" width="1.0" height="15.0" fill="rgb(243,167,8)" rx="2" ry="2" /> 5197 <text text-anchor="" x="1184.05" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5198 </g> 5199 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5200 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="734.8" y="321" width="0.5" height="15.0" fill="rgb(243,148,38)" rx="2" ry="2" /> 5201 <text text-anchor="" x="737.81" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5202 </g> 5203 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5204 <title>net/textproto.CanonicalMIMEHeaderKey (2 samples, 0.08%)</title><rect x="121.4" y="465" width="1.0" height="15.0" fill="rgb(221,198,48)" rx="2" ry="2" /> 5205 <text text-anchor="" x="124.43" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5206 </g> 5207 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5208 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).emitRuntimeStats (1 samples, 0.04%)</title><rect x="59.7" y="561" width="0.5" height="15.0" fill="rgb(247,190,22)" rx="2" ry="2" /> 5209 <text text-anchor="" x="62.75" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5210 </g> 5211 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5212 <title>encoding/json.encodeByteSlice (16 samples, 0.67%)</title><rect x="838.8" y="289" width="7.9" height="15.0" fill="rgb(240,181,36)" rx="2" ry="2" /> 5213 <text text-anchor="" x="841.79" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5214 </g> 5215 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5216 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="1048.2" y="449" width="0.5" height="15.0" fill="rgb(242,13,47)" rx="2" ry="2" /> 5217 <text text-anchor="" x="1051.22" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5218 </g> 5219 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5220 <title>runtime.(*mspan).countFree (2 samples, 0.08%)</title><rect x="787.0" y="225" width="1.0" height="15.0" fill="rgb(232,70,43)" rx="2" ry="2" /> 5221 <text text-anchor="" x="790.05" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5222 </g> 5223 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5224 <title>runtime._ExternalCode (75 samples, 3.16%)</title><rect x="10.0" y="577" width="37.3" height="15.0" fill="rgb(219,97,31)" rx="2" ry="2" /> 5225 <text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >run..</text> 5226 </g> 5227 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5228 <title>runtime.deferreturn (1 samples, 0.04%)</title><rect x="692.0" y="289" width="0.5" height="15.0" fill="rgb(208,92,51)" rx="2" ry="2" /> 5229 <text text-anchor="" x="695.03" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5230 </g> 5231 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5232 <title>runtime.osyield (3 samples, 0.13%)</title><rect x="1066.6" y="481" width="1.5" height="15.0" fill="rgb(232,28,4)" rx="2" ry="2" /> 5233 <text text-anchor="" x="1069.63" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5234 </g> 5235 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5236 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="1048.2" y="433" width="0.5" height="15.0" fill="rgb(215,107,32)" rx="2" ry="2" /> 5237 <text text-anchor="" x="1051.22" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5238 </g> 5239 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5240 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="1056.7" y="449" width="0.5" height="15.0" fill="rgb(215,123,11)" rx="2" ry="2" /> 5241 <text text-anchor="" x="1059.68" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5242 </g> 5243 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5244 <title>reflect.Value.SetMapIndex (1 samples, 0.04%)</title><rect x="60.2" y="417" width="0.5" height="15.0" fill="rgb(251,89,21)" rx="2" ry="2" /> 5245 <text text-anchor="" x="63.24" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5246 </g> 5247 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5248 <title>runtime.systemstack (4 samples, 0.17%)</title><rect x="739.3" y="321" width="2.0" height="15.0" fill="rgb(247,30,25)" rx="2" ry="2" /> 5249 <text text-anchor="" x="742.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5250 </g> 5251 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5252 <title>runtime.(*mcentral).cacheSpan (4 samples, 0.17%)</title><rect x="786.6" y="257" width="1.9" height="15.0" fill="rgb(224,50,24)" rx="2" ry="2" /> 5253 <text text-anchor="" x="789.55" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5254 </g> 5255 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5256 <title>runtime.mcall (81 samples, 3.41%)</title><rect x="1138.8" y="593" width="40.3" height="15.0" fill="rgb(227,194,27)" rx="2" ry="2" /> 5257 <text text-anchor="" x="1141.76" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >run..</text> 5258 </g> 5259 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5260 <title>runtime.futex (1 samples, 0.04%)</title><rect x="1186.0" y="497" width="0.5" height="15.0" fill="rgb(219,35,44)" rx="2" ry="2" /> 5261 <text text-anchor="" x="1189.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5262 </g> 5263 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5264 <title>runtime.(*mcentral).cacheSpan (1 samples, 0.04%)</title><rect x="740.3" y="273" width="0.5" height="15.0" fill="rgb(218,178,52)" rx="2" ry="2" /> 5265 <text text-anchor="" x="743.29" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5266 </g> 5267 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5268 <title>runtime.sweepone (1 samples, 0.04%)</title><rect x="881.6" y="321" width="0.5" height="15.0" fill="rgb(210,120,8)" rx="2" ry="2" /> 5269 <text text-anchor="" x="884.57" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5270 </g> 5271 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5272 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="1043.7" y="337" width="0.5" height="15.0" fill="rgb(239,134,6)" rx="2" ry="2" /> 5273 <text text-anchor="" x="1046.74" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5274 </g> 5275 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5276 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*Metrics).MeasureSince (50 samples, 2.11%)</title><rect x="1019.9" y="481" width="24.8" height="15.0" fill="rgb(244,215,8)" rx="2" ry="2" /> 5277 <text text-anchor="" x="1022.87" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g..</text> 5278 </g> 5279 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5280 <title>reflect.(*rtype).IsVariadic (1 samples, 0.04%)</title><rect x="583.6" y="337" width="0.5" height="15.0" fill="rgb(205,129,9)" rx="2" ry="2" /> 5281 <text text-anchor="" x="586.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5282 </g> 5283 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5284 <title>runtime.(*mcentral).cacheSpan (1 samples, 0.04%)</title><rect x="749.2" y="321" width="0.5" height="15.0" fill="rgb(213,88,45)" rx="2" ry="2" /> 5285 <text text-anchor="" x="752.24" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5286 </g> 5287 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5288 <title>runtime.gcMarkDone (1 samples, 0.04%)</title><rect x="734.8" y="289" width="0.5" height="15.0" fill="rgb(232,93,29)" rx="2" ry="2" /> 5289 <text text-anchor="" x="737.81" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5290 </g> 5291 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5292 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="910.4" y="257" width="0.5" height="15.0" fill="rgb(230,111,1)" rx="2" ry="2" /> 5293 <text text-anchor="" x="913.42" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5294 </g> 5295 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5296 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="102.0" y="449" width="0.5" height="15.0" fill="rgb(240,127,2)" rx="2" ry="2" /> 5297 <text text-anchor="" x="105.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5298 </g> 5299 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5300 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="783.1" y="321" width="0.5" height="15.0" fill="rgb(228,32,38)" rx="2" ry="2" /> 5301 <text text-anchor="" x="786.07" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5302 </g> 5303 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5304 <title>runtime.pcdatavalue (1 samples, 0.04%)</title><rect x="1138.8" y="385" width="0.5" height="15.0" fill="rgb(234,67,17)" rx="2" ry="2" /> 5305 <text text-anchor="" x="1141.76" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5306 </g> 5307 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5308 <title>fmt.(*pp).fmtString (6 samples, 0.25%)</title><rect x="893.5" y="401" width="3.0" height="15.0" fill="rgb(237,109,13)" rx="2" ry="2" /> 5309 <text text-anchor="" x="896.51" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5310 </g> 5311 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5312 <title>net/http.checkConnErrorWriter.Write (231 samples, 9.74%)</title><rect x="338.8" y="513" width="114.9" height="15.0" fill="rgb(236,204,12)" rx="2" ry="2" /> 5313 <text text-anchor="" x="341.83" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.check..</text> 5314 </g> 5315 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5316 <title>runtime.newMarkBits (1 samples, 0.04%)</title><rect x="104.5" y="385" width="0.5" height="15.0" fill="rgb(223,155,26)" rx="2" ry="2" /> 5317 <text text-anchor="" x="107.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5318 </g> 5319 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5320 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="262.2" y="465" width="0.5" height="15.0" fill="rgb(214,109,19)" rx="2" ry="2" /> 5321 <text text-anchor="" x="265.22" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5322 </g> 5323 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5324 <title>strconv.formatBits (2 samples, 0.08%)</title><rect x="337.8" y="465" width="1.0" height="15.0" fill="rgb(233,202,2)" rx="2" ry="2" /> 5325 <text text-anchor="" x="340.83" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5326 </g> 5327 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5328 <title>runtime.mcall (2 samples, 0.08%)</title><rect x="48.3" y="577" width="1.0" height="15.0" fill="rgb(238,131,15)" rx="2" ry="2" /> 5329 <text text-anchor="" x="51.31" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5330 </g> 5331 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5332 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).flattenKey (1 samples, 0.04%)</title><rect x="60.7" y="481" width="0.5" height="15.0" fill="rgb(213,133,43)" rx="2" ry="2" /> 5333 <text text-anchor="" x="63.74" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5334 </g> 5335 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5336 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="904.0" y="401" width="0.5" height="15.0" fill="rgb(208,146,5)" rx="2" ry="2" /> 5337 <text text-anchor="" x="906.95" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5338 </g> 5339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5340 <title>runtime.systemstack (3 samples, 0.13%)</title><rect x="241.3" y="449" width="1.5" height="15.0" fill="rgb(223,174,16)" rx="2" ry="2" /> 5341 <text text-anchor="" x="244.32" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5342 </g> 5343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5344 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="348.3" y="449" width="0.5" height="15.0" fill="rgb(251,85,29)" rx="2" ry="2" /> 5345 <text text-anchor="" x="351.28" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5346 </g> 5347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5348 <title>reflect.directlyAssignable (1 samples, 0.04%)</title><rect x="586.6" y="321" width="0.5" height="15.0" fill="rgb(247,105,43)" rx="2" ry="2" /> 5349 <text text-anchor="" x="589.57" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5350 </g> 5351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5352 <title>runtime.epollwait (6 samples, 0.25%)</title><rect x="1159.7" y="513" width="2.9" height="15.0" fill="rgb(248,84,11)" rx="2" ry="2" /> 5353 <text text-anchor="" x="1162.65" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5354 </g> 5355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5356 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="1044.2" y="353" width="0.5" height="15.0" fill="rgb(222,203,30)" rx="2" ry="2" /> 5357 <text text-anchor="" x="1047.24" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5358 </g> 5359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5360 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="954.7" y="305" width="0.5" height="15.0" fill="rgb(227,138,54)" rx="2" ry="2" /> 5361 <text text-anchor="" x="957.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5362 </g> 5363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5364 <title>runtime/internal/atomic.And8 (1 samples, 0.04%)</title><rect x="959.7" y="353" width="0.5" height="15.0" fill="rgb(238,23,25)" rx="2" ry="2" /> 5365 <text text-anchor="" x="962.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5366 </g> 5367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5368 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="1055.2" y="449" width="0.5" height="15.0" fill="rgb(235,157,1)" rx="2" ry="2" /> 5369 <text text-anchor="" x="1058.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5370 </g> 5371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5372 <title>runtime.gcMarkTermination (1 samples, 0.04%)</title><rect x="778.6" y="289" width="0.5" height="15.0" fill="rgb(254,222,6)" rx="2" ry="2" /> 5373 <text text-anchor="" x="781.59" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5374 </g> 5375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5376 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="61.7" y="513" width="0.5" height="15.0" fill="rgb(214,22,9)" rx="2" ry="2" /> 5377 <text text-anchor="" x="64.74" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5378 </g> 5379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5380 <title>net.(*fdMutex).rwunlock (2 samples, 0.08%)</title><rect x="137.4" y="385" width="0.9" height="15.0" fill="rgb(253,203,35)" rx="2" ry="2" /> 5381 <text text-anchor="" x="140.35" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5382 </g> 5383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5384 <title>runtime.gcAssistAlloc (2 samples, 0.08%)</title><rect x="95.6" y="497" width="1.0" height="15.0" fill="rgb(208,53,9)" rx="2" ry="2" /> 5385 <text text-anchor="" x="98.56" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5386 </g> 5387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5388 <title>runtime.gcLockStackBarriers (1 samples, 0.04%)</title><rect x="1070.1" y="465" width="0.5" height="15.0" fill="rgb(251,149,34)" rx="2" ry="2" /> 5389 <text text-anchor="" x="1073.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5390 </g> 5391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5392 <title>encoding/json.uintEncoder (6 samples, 0.25%)</title><rect x="853.7" y="289" width="3.0" height="15.0" fill="rgb(218,62,1)" rx="2" ry="2" /> 5393 <text text-anchor="" x="856.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5394 </g> 5395 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5396 <title>runtime.return0 (1 samples, 0.04%)</title><rect x="898.5" y="369" width="0.5" height="15.0" fill="rgb(214,1,12)" rx="2" ry="2" /> 5397 <text text-anchor="" x="901.48" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5398 </g> 5399 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5400 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="1011.9" y="337" width="0.5" height="15.0" fill="rgb(207,62,46)" rx="2" ry="2" /> 5401 <text text-anchor="" x="1014.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5402 </g> 5403 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5404 <title>runtime.acquireSudog (1 samples, 0.04%)</title><rect x="937.8" y="385" width="0.5" height="15.0" fill="rgb(238,49,20)" rx="2" ry="2" /> 5405 <text text-anchor="" x="940.78" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5406 </g> 5407 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5408 <title>runtime.makemap (4 samples, 0.17%)</title><rect x="769.1" y="385" width="2.0" height="15.0" fill="rgb(220,70,54)" rx="2" ry="2" /> 5409 <text text-anchor="" x="772.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5410 </g> 5411 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5412 <title>runtime.newdefer (3 samples, 0.13%)</title><rect x="899.0" y="337" width="1.5" height="15.0" fill="rgb(224,213,21)" rx="2" ry="2" /> 5413 <text text-anchor="" x="901.98" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5414 </g> 5415 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5416 <title>runtime.newobject (5 samples, 0.21%)</title><rect x="636.3" y="209" width="2.5" height="15.0" fill="rgb(221,187,50)" rx="2" ry="2" /> 5417 <text text-anchor="" x="639.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5418 </g> 5419 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5420 <title>reflect.(*rtype).Elem (3 samples, 0.13%)</title><rect x="554.2" y="369" width="1.5" height="15.0" fill="rgb(246,104,24)" rx="2" ry="2" /> 5421 <text text-anchor="" x="557.23" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5422 </g> 5423 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5424 <title>strings.IndexAny (2 samples, 0.08%)</title><rect x="791.0" y="369" width="1.0" height="15.0" fill="rgb(236,177,24)" rx="2" ry="2" /> 5425 <text text-anchor="" x="794.03" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5426 </g> 5427 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5428 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="686.6" y="145" width="0.5" height="15.0" fill="rgb(208,154,30)" rx="2" ry="2" /> 5429 <text text-anchor="" x="689.56" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5430 </g> 5431 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5432 <title>runtime.runqget (4 samples, 0.17%)</title><rect x="1177.1" y="545" width="2.0" height="15.0" fill="rgb(218,69,52)" rx="2" ry="2" /> 5433 <text text-anchor="" x="1180.07" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5434 </g> 5435 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5436 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="998.0" y="369" width="0.5" height="15.0" fill="rgb(238,70,3)" rx="2" ry="2" /> 5437 <text text-anchor="" x="1000.98" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5438 </g> 5439 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5440 <title>runtime.gentraceback (2 samples, 0.08%)</title><rect x="1174.6" y="401" width="1.0" height="15.0" fill="rgb(220,130,15)" rx="2" ry="2" /> 5441 <text text-anchor="" x="1177.58" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5442 </g> 5443 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5444 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="723.4" y="241" width="0.5" height="15.0" fill="rgb(245,143,10)" rx="2" ry="2" /> 5445 <text text-anchor="" x="726.37" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5446 </g> 5447 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5448 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="1012.4" y="417" width="0.5" height="15.0" fill="rgb(207,144,10)" rx="2" ry="2" /> 5449 <text text-anchor="" x="1015.40" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5450 </g> 5451 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5452 <title>runtime.gosweepone.func1 (1 samples, 0.04%)</title><rect x="280.6" y="481" width="0.5" height="15.0" fill="rgb(242,160,31)" rx="2" ry="2" /> 5453 <text text-anchor="" x="283.62" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5454 </g> 5455 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5456 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="1048.2" y="481" width="0.5" height="15.0" fill="rgb(236,113,31)" rx="2" ry="2" /> 5457 <text text-anchor="" x="1051.22" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5458 </g> 5459 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5460 <title>sync/atomic.AddUint32 (1 samples, 0.04%)</title><rect x="593.0" y="305" width="0.5" height="15.0" fill="rgb(222,152,29)" rx="2" ry="2" /> 5461 <text text-anchor="" x="596.04" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5462 </g> 5463 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5464 <title>runtime.execute (3 samples, 0.13%)</title><rect x="1148.2" y="545" width="1.5" height="15.0" fill="rgb(251,166,52)" rx="2" ry="2" /> 5465 <text text-anchor="" x="1151.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5466 </g> 5467 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5468 <title>runtime/internal/atomic.Xadd64 (1 samples, 0.04%)</title><rect x="202.0" y="385" width="0.5" height="15.0" fill="rgb(235,222,49)" rx="2" ry="2" /> 5469 <text text-anchor="" x="205.02" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5470 </g> 5471 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5472 <title>runtime.gcDrain (1 samples, 0.04%)</title><rect x="1138.8" y="529" width="0.5" height="15.0" fill="rgb(210,209,43)" rx="2" ry="2" /> 5473 <text text-anchor="" x="1141.76" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5474 </g> 5475 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5476 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="733.8" y="305" width="0.5" height="15.0" fill="rgb(242,97,18)" rx="2" ry="2" /> 5477 <text text-anchor="" x="736.82" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5478 </g> 5479 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5480 <title>net/textproto.(*Reader).upcomingHeaderNewlines (4 samples, 0.17%)</title><rect x="213.0" y="513" width="2.0" height="15.0" fill="rgb(248,32,47)" rx="2" ry="2" /> 5481 <text text-anchor="" x="215.97" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5482 </g> 5483 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5484 <title>runtime.mallocgc (7 samples, 0.30%)</title><rect x="223.4" y="481" width="3.5" height="15.0" fill="rgb(253,51,24)" rx="2" ry="2" /> 5485 <text text-anchor="" x="226.41" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5486 </g> 5487 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5488 <title>runtime.systemstack (4 samples, 0.17%)</title><rect x="807.9" y="337" width="2.0" height="15.0" fill="rgb(237,113,8)" rx="2" ry="2" /> 5489 <text text-anchor="" x="810.94" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5490 </g> 5491 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5492 <title>runtime.deferreturn (3 samples, 0.13%)</title><rect x="142.3" y="401" width="1.5" height="15.0" fill="rgb(249,220,19)" rx="2" ry="2" /> 5493 <text text-anchor="" x="145.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5494 </g> 5495 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5496 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="723.4" y="257" width="0.5" height="15.0" fill="rgb(249,222,39)" rx="2" ry="2" /> 5497 <text text-anchor="" x="726.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5498 </g> 5499 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5500 <title>reflect.(*rtype).NumMethod (2 samples, 0.08%)</title><rect x="697.0" y="321" width="1.0" height="15.0" fill="rgb(248,186,13)" rx="2" ry="2" /> 5501 <text text-anchor="" x="700.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5502 </g> 5503 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5504 <title>runtime.funcspdelta (14 samples, 0.59%)</title><rect x="1075.6" y="449" width="6.9" height="15.0" fill="rgb(205,28,8)" rx="2" ry="2" /> 5505 <text text-anchor="" x="1078.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5506 </g> 5507 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5508 <title>runtime.newdefer (2 samples, 0.08%)</title><rect x="101.0" y="481" width="1.0" height="15.0" fill="rgb(249,229,2)" rx="2" ry="2" /> 5509 <text text-anchor="" x="104.04" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5510 </g> 5511 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5512 <title>runtime.deferproc (1 samples, 0.04%)</title><rect x="75.2" y="545" width="0.5" height="15.0" fill="rgb(213,185,31)" rx="2" ry="2" /> 5513 <text text-anchor="" x="78.17" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5514 </g> 5515 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5516 <title>runtime.rawstring (4 samples, 0.17%)</title><rect x="920.9" y="369" width="2.0" height="15.0" fill="rgb(235,34,27)" rx="2" ry="2" /> 5517 <text text-anchor="" x="923.87" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5518 </g> 5519 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5520 <title>github.com/hashicorp/consul/command/agent.setLastContact (21 samples, 0.89%)</title><rect x="724.9" y="417" width="10.4" height="15.0" fill="rgb(226,219,12)" rx="2" ry="2" /> 5521 <text text-anchor="" x="727.87" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5522 </g> 5523 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5524 <title>runtime.(*mcentral).grow (1 samples, 0.04%)</title><rect x="1006.9" y="321" width="0.5" height="15.0" fill="rgb(236,24,49)" rx="2" ry="2" /> 5525 <text text-anchor="" x="1009.93" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5526 </g> 5527 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5528 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="785.6" y="353" width="0.5" height="15.0" fill="rgb(207,72,42)" rx="2" ry="2" /> 5529 <text text-anchor="" x="788.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5530 </g> 5531 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5532 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="102.0" y="481" width="0.5" height="15.0" fill="rgb(250,206,15)" rx="2" ry="2" /> 5533 <text text-anchor="" x="105.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5534 </g> 5535 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5536 <title>reflect.flag.mustBeAssignable (1 samples, 0.04%)</title><rect x="569.2" y="321" width="0.5" height="15.0" fill="rgb(238,163,2)" rx="2" ry="2" /> 5537 <text text-anchor="" x="572.16" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5538 </g> 5539 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5540 <title>net/http.(*conn).hijacked (4 samples, 0.17%)</title><rect x="952.2" y="449" width="2.0" height="15.0" fill="rgb(210,130,3)" rx="2" ry="2" /> 5541 <text text-anchor="" x="955.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5542 </g> 5543 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5544 <title>runtime.netpollready (3 samples, 0.13%)</title><rect x="1162.6" y="513" width="1.5" height="15.0" fill="rgb(246,204,28)" rx="2" ry="2" /> 5545 <text text-anchor="" x="1165.64" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5546 </g> 5547 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5548 <title>bufio.(*Writer).Flush (326 samples, 13.74%)</title><rect x="291.6" y="545" width="162.1" height="15.0" fill="rgb(210,66,15)" rx="2" ry="2" /> 5549 <text text-anchor="" x="294.57" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufio.(*Writer).Flush</text> 5550 </g> 5551 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5552 <title>sync.(*RWMutex).RLock (5 samples, 0.21%)</title><rect x="590.5" y="321" width="2.5" height="15.0" fill="rgb(227,1,27)" rx="2" ry="2" /> 5553 <text text-anchor="" x="593.55" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5554 </g> 5555 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5556 <title>log.itoa (9 samples, 0.38%)</title><rect x="929.3" y="417" width="4.5" height="15.0" fill="rgb(205,145,52)" rx="2" ry="2" /> 5557 <text text-anchor="" x="932.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5558 </g> 5559 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5560 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="961.2" y="305" width="0.5" height="15.0" fill="rgb(215,177,36)" rx="2" ry="2" /> 5561 <text text-anchor="" x="964.16" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5562 </g> 5563 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5564 <title>net/url.parseQuery (22 samples, 0.93%)</title><rect x="735.3" y="401" width="11.0" height="15.0" fill="rgb(230,179,34)" rx="2" ry="2" /> 5565 <text text-anchor="" x="738.31" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5566 </g> 5567 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5568 <title>sync.(*Pool).pin (1 samples, 0.04%)</title><rect x="457.7" y="513" width="0.5" height="15.0" fill="rgb(239,202,13)" rx="2" ry="2" /> 5569 <text text-anchor="" x="460.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5570 </g> 5571 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5572 <title>runtime.(*mcache).nextFree.func1 (3 samples, 0.13%)</title><rect x="713.9" y="289" width="1.5" height="15.0" fill="rgb(231,180,5)" rx="2" ry="2" /> 5573 <text text-anchor="" x="716.92" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5574 </g> 5575 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5576 <title>runtime.futexsleep (1 samples, 0.04%)</title><rect x="1186.0" y="513" width="0.5" height="15.0" fill="rgb(223,94,4)" rx="2" ry="2" /> 5577 <text text-anchor="" x="1189.02" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5578 </g> 5579 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5580 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).probeNode (1 samples, 0.04%)</title><rect x="62.2" y="529" width="0.5" height="15.0" fill="rgb(222,173,47)" rx="2" ry="2" /> 5581 <text text-anchor="" x="65.23" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5582 </g> 5583 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5584 <title>runtime.(*mheap).alloc.func1 (2 samples, 0.08%)</title><rect x="788.5" y="289" width="1.0" height="15.0" fill="rgb(214,66,0)" rx="2" ry="2" /> 5585 <text text-anchor="" x="791.54" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5586 </g> 5587 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5588 <title>runtime.procyield (2 samples, 0.08%)</title><rect x="1068.1" y="481" width="1.0" height="15.0" fill="rgb(252,13,4)" rx="2" ry="2" /> 5589 <text text-anchor="" x="1071.12" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5590 </g> 5591 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5592 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="886.5" y="417" width="0.5" height="15.0" fill="rgb(234,180,8)" rx="2" ry="2" /> 5593 <text text-anchor="" x="889.54" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5594 </g> 5595 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5596 <title>reflect.New (16 samples, 0.67%)</title><rect x="556.2" y="369" width="8.0" height="15.0" fill="rgb(205,103,28)" rx="2" ry="2" /> 5597 <text text-anchor="" x="559.22" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5598 </g> 5599 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5600 <title>runtime.mapdelete (2 samples, 0.08%)</title><rect x="276.1" y="545" width="1.0" height="15.0" fill="rgb(233,158,43)" rx="2" ry="2" /> 5601 <text text-anchor="" x="279.15" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5602 </g> 5603 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5604 <title>runtime.markroot (2 samples, 0.08%)</title><rect x="1174.6" y="481" width="1.0" height="15.0" fill="rgb(239,87,54)" rx="2" ry="2" /> 5605 <text text-anchor="" x="1177.58" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5606 </g> 5607 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5608 <title>runtime.gcMarkTermination.func1 (1 samples, 0.04%)</title><rect x="259.2" y="401" width="0.5" height="15.0" fill="rgb(238,217,4)" rx="2" ry="2" /> 5609 <text text-anchor="" x="262.23" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5610 </g> 5611 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5612 <title>runtime/internal/atomic.Load (1 samples, 0.04%)</title><rect x="1166.1" y="497" width="0.5" height="15.0" fill="rgb(234,28,38)" rx="2" ry="2" /> 5613 <text text-anchor="" x="1169.12" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5614 </g> 5615 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5616 <title>runtime.convT2E (7 samples, 0.30%)</title><rect x="636.3" y="225" width="3.5" height="15.0" fill="rgb(210,96,16)" rx="2" ry="2" /> 5617 <text text-anchor="" x="639.32" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5618 </g> 5619 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5620 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*StringFieldIndex).FromArgs (29 samples, 1.22%)</title><rect x="609.0" y="193" width="14.4" height="15.0" fill="rgb(239,229,47)" rx="2" ry="2" /> 5621 <text text-anchor="" x="611.95" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5622 </g> 5623 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5624 <title>net/rpc.(*Server).freeResponse (2 samples, 0.08%)</title><rect x="571.1" y="353" width="1.0" height="15.0" fill="rgb(251,94,36)" rx="2" ry="2" /> 5625 <text text-anchor="" x="574.15" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5626 </g> 5627 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5628 <title>encoding/json.(*encodeState).marshal.func1 (2 samples, 0.08%)</title><rect x="823.4" y="433" width="1.0" height="15.0" fill="rgb(233,135,45)" rx="2" ry="2" /> 5629 <text text-anchor="" x="826.36" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5630 </g> 5631 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5632 <title>runtime.mallocgc (5 samples, 0.21%)</title><rect x="777.6" y="337" width="2.5" height="15.0" fill="rgb(222,44,23)" rx="2" ry="2" /> 5633 <text text-anchor="" x="780.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5634 </g> 5635 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5636 <title>runtime.newarray (8 samples, 0.34%)</title><rect x="713.4" y="353" width="4.0" height="15.0" fill="rgb(240,12,13)" rx="2" ry="2" /> 5637 <text text-anchor="" x="716.42" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5638 </g> 5639 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5640 <title>net.(*UDPConn).ReadFrom (1 samples, 0.04%)</title><rect x="62.7" y="561" width="0.5" height="15.0" fill="rgb(239,118,52)" rx="2" ry="2" /> 5641 <text text-anchor="" x="65.73" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5642 </g> 5643 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5644 <title>runtime.stringiter2 (2 samples, 0.08%)</title><rect x="884.6" y="401" width="0.9" height="15.0" fill="rgb(231,203,34)" rx="2" ry="2" /> 5645 <text text-anchor="" x="887.55" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5646 </g> 5647 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5648 <title>runtime.makemap (5 samples, 0.21%)</title><rect x="1011.4" y="465" width="2.5" height="15.0" fill="rgb(243,59,44)" rx="2" ry="2" /> 5649 <text text-anchor="" x="1014.41" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5650 </g> 5651 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5652 <title>runtime.selectgo (1 samples, 0.04%)</title><rect x="64.2" y="561" width="0.5" height="15.0" fill="rgb(245,34,8)" rx="2" ry="2" /> 5653 <text text-anchor="" x="67.22" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5654 </g> 5655 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5656 <title>runtime.procyield (1 samples, 0.04%)</title><rect x="107.5" y="465" width="0.5" height="15.0" fill="rgb(244,137,0)" rx="2" ry="2" /> 5657 <text text-anchor="" x="110.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5658 </g> 5659 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5660 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="673.6" y="145" width="0.5" height="15.0" fill="rgb(242,216,47)" rx="2" ry="2" /> 5661 <text text-anchor="" x="676.63" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5662 </g> 5663 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5664 <title>runtime.lock (4 samples, 0.17%)</title><rect x="1157.2" y="529" width="2.0" height="15.0" fill="rgb(207,213,8)" rx="2" ry="2" /> 5665 <text text-anchor="" x="1160.17" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5666 </g> 5667 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5668 <title>runtime.mallocgc (6 samples, 0.25%)</title><rect x="960.2" y="401" width="3.0" height="15.0" fill="rgb(240,205,47)" rx="2" ry="2" /> 5669 <text text-anchor="" x="963.17" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5670 </g> 5671 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5672 <title>runtime.pcvalue (18 samples, 0.76%)</title><rect x="1084.0" y="401" width="9.0" height="15.0" fill="rgb(208,93,51)" rx="2" ry="2" /> 5673 <text text-anchor="" x="1087.04" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5674 </g> 5675 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5676 <title>time.Time.Clock (1 samples, 0.04%)</title><rect x="933.8" y="417" width="0.5" height="15.0" fill="rgb(244,187,40)" rx="2" ry="2" /> 5677 <text text-anchor="" x="936.80" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5678 </g> 5679 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5680 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*Raft).replicate (2 samples, 0.08%)</title><rect x="64.7" y="545" width="1.0" height="15.0" fill="rgb(212,101,42)" rx="2" ry="2" /> 5681 <text text-anchor="" x="67.72" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5682 </g> 5683 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5684 <title>bytes.IndexByte (1 samples, 0.04%)</title><rect x="206.0" y="513" width="0.5" height="15.0" fill="rgb(208,147,50)" rx="2" ry="2" /> 5685 <text text-anchor="" x="209.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5686 </g> 5687 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5688 <title>runtime.growslice (1 samples, 0.04%)</title><rect x="326.4" y="449" width="0.5" height="15.0" fill="rgb(253,146,27)" rx="2" ry="2" /> 5689 <text text-anchor="" x="329.39" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5690 </g> 5691 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5692 <title>runtime.futexwakeup (1 samples, 0.04%)</title><rect x="1137.8" y="449" width="0.5" height="15.0" fill="rgb(207,137,43)" rx="2" ry="2" /> 5693 <text text-anchor="" x="1140.77" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5694 </g> 5695 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5696 <title>runtime.findmoduledatap (1 samples, 0.04%)</title><rect x="1088.0" y="385" width="0.5" height="15.0" fill="rgb(235,59,8)" rx="2" ry="2" /> 5697 <text text-anchor="" x="1091.02" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5698 </g> 5699 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5700 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).flattenKey (11 samples, 0.46%)</title><rect x="1022.8" y="449" width="5.5" height="15.0" fill="rgb(245,37,13)" rx="2" ry="2" /> 5701 <text text-anchor="" x="1025.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5702 </g> 5703 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5704 <title>runtime.convT2E (4 samples, 0.17%)</title><rect x="748.7" y="433" width="2.0" height="15.0" fill="rgb(206,109,16)" rx="2" ry="2" /> 5705 <text text-anchor="" x="751.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5706 </g> 5707 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5708 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="845.3" y="257" width="1.4" height="15.0" fill="rgb(245,220,42)" rx="2" ry="2" /> 5709 <text text-anchor="" x="848.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5710 </g> 5711 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5712 <title>runtime.duffzero (1 samples, 0.04%)</title><rect x="656.7" y="241" width="0.5" height="15.0" fill="rgb(206,203,25)" rx="2" ry="2" /> 5713 <text text-anchor="" x="659.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5714 </g> 5715 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5716 <title>strings.Map (9 samples, 0.38%)</title><rect x="618.9" y="161" width="4.5" height="15.0" fill="rgb(227,207,33)" rx="2" ry="2" /> 5717 <text text-anchor="" x="621.90" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5718 </g> 5719 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5720 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="641.8" y="161" width="1.5" height="15.0" fill="rgb(249,18,20)" rx="2" ry="2" /> 5721 <text text-anchor="" x="644.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5722 </g> 5723 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5724 <title>runtime.(*mcentral).freeSpan (4 samples, 0.17%)</title><rect x="1054.2" y="481" width="2.0" height="15.0" fill="rgb(225,75,41)" rx="2" ry="2" /> 5725 <text text-anchor="" x="1057.19" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5726 </g> 5727 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5728 <title>runtime.deferproc.func1 (1 samples, 0.04%)</title><rect x="680.6" y="177" width="0.5" height="15.0" fill="rgb(221,119,19)" rx="2" ry="2" /> 5729 <text text-anchor="" x="683.59" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5730 </g> 5731 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5732 <title>reflect.packEface (1 samples, 0.04%)</title><rect x="698.0" y="337" width="0.5" height="15.0" fill="rgb(226,144,52)" rx="2" ry="2" /> 5733 <text text-anchor="" x="701.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5734 </g> 5735 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5736 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="349.8" y="433" width="0.5" height="15.0" fill="rgb(207,53,9)" rx="2" ry="2" /> 5737 <text text-anchor="" x="352.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5738 </g> 5739 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5740 <title>net/http.Header.Set (8 samples, 0.34%)</title><rect x="720.9" y="401" width="4.0" height="15.0" fill="rgb(212,2,14)" rx="2" ry="2" /> 5741 <text text-anchor="" x="723.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5742 </g> 5743 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5744 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="224.9" y="449" width="1.0" height="15.0" fill="rgb(253,93,48)" rx="2" ry="2" /> 5745 <text text-anchor="" x="227.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5746 </g> 5747 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5748 <title>runtime.greyobject (9 samples, 0.38%)</title><rect x="196.1" y="369" width="4.4" height="15.0" fill="rgb(245,72,16)" rx="2" ry="2" /> 5749 <text text-anchor="" x="199.05" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5750 </g> 5751 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5752 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="917.9" y="385" width="0.5" height="15.0" fill="rgb(218,223,12)" rx="2" ry="2" /> 5753 <text text-anchor="" x="920.88" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5754 </g> 5755 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5756 <title>strings.IndexByte (2 samples, 0.08%)</title><rect x="767.2" y="353" width="0.9" height="15.0" fill="rgb(224,221,7)" rx="2" ry="2" /> 5757 <text text-anchor="" x="770.15" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5758 </g> 5759 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5760 <title>runtime.(*mcache).refill (1 samples, 0.04%)</title><rect x="765.7" y="273" width="0.5" height="15.0" fill="rgb(217,149,39)" rx="2" ry="2" /> 5761 <text text-anchor="" x="768.66" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5762 </g> 5763 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5764 <title>strings.IndexAny (5 samples, 0.21%)</title><rect x="1008.9" y="449" width="2.5" height="15.0" fill="rgb(215,120,13)" rx="2" ry="2" /> 5765 <text text-anchor="" x="1011.92" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5766 </g> 5767 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5768 <title>runtime.heapBitsSetType (4 samples, 0.17%)</title><rect x="243.8" y="465" width="2.0" height="15.0" fill="rgb(212,217,52)" rx="2" ry="2" /> 5769 <text text-anchor="" x="246.81" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5770 </g> 5771 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5772 <title>runtime.rawstringtmp (2 samples, 0.08%)</title><rect x="728.8" y="321" width="1.0" height="15.0" fill="rgb(242,151,33)" rx="2" ry="2" /> 5773 <text text-anchor="" x="731.84" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5774 </g> 5775 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5776 <title>runtime.(*mcentral).cacheSpan (1 samples, 0.04%)</title><rect x="561.2" y="241" width="0.5" height="15.0" fill="rgb(221,90,34)" rx="2" ry="2" /> 5777 <text text-anchor="" x="564.20" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5778 </g> 5779 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5780 <title>net/url.parseQuery (19 samples, 0.80%)</title><rect x="773.1" y="385" width="9.5" height="15.0" fill="rgb(242,38,26)" rx="2" ry="2" /> 5781 <text text-anchor="" x="776.12" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5782 </g> 5783 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5784 <title>runtime.scang (1 samples, 0.04%)</title><rect x="224.4" y="385" width="0.5" height="15.0" fill="rgb(235,177,14)" rx="2" ry="2" /> 5785 <text text-anchor="" x="227.41" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5786 </g> 5787 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5788 <title>runtime/internal/atomic.Or8 (1 samples, 0.04%)</title><rect x="314.0" y="433" width="0.5" height="15.0" fill="rgb(217,38,9)" rx="2" ry="2" /> 5789 <text text-anchor="" x="316.95" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5790 </g> 5791 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5792 <title>runtime.gosched_m (7 samples, 0.30%)</title><rect x="1140.3" y="577" width="3.4" height="15.0" fill="rgb(232,20,54)" rx="2" ry="2" /> 5793 <text text-anchor="" x="1143.25" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5794 </g> 5795 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5796 <title>runtime.selectgoImpl (1 samples, 0.04%)</title><rect x="64.2" y="545" width="0.5" height="15.0" fill="rgb(217,11,16)" rx="2" ry="2" /> 5797 <text text-anchor="" x="67.22" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5798 </g> 5799 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5800 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="686.6" y="209" width="0.5" height="15.0" fill="rgb(238,216,33)" rx="2" ry="2" /> 5801 <text text-anchor="" x="689.56" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5802 </g> 5803 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5804 <title>sync.(*Mutex).Lock (1 samples, 0.04%)</title><rect x="571.6" y="337" width="0.5" height="15.0" fill="rgb(221,136,21)" rx="2" ry="2" /> 5805 <text text-anchor="" x="574.64" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5806 </g> 5807 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5808 <title>runtime.markroot.func1 (1 samples, 0.04%)</title><rect x="1137.3" y="513" width="0.5" height="15.0" fill="rgb(213,148,44)" rx="2" ry="2" /> 5809 <text text-anchor="" x="1140.27" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5810 </g> 5811 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5812 <title>runtime.(*mcentral).cacheSpan (1 samples, 0.04%)</title><rect x="280.1" y="449" width="0.5" height="15.0" fill="rgb(206,174,0)" rx="2" ry="2" /> 5813 <text text-anchor="" x="283.13" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5814 </g> 5815 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5816 <title>runtime.sweepone (1 samples, 0.04%)</title><rect x="881.1" y="289" width="0.5" height="15.0" fill="rgb(224,0,19)" rx="2" ry="2" /> 5817 <text text-anchor="" x="884.07" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5818 </g> 5819 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5820 <title>reflect.Value.NumMethod (2 samples, 0.08%)</title><rect x="697.0" y="337" width="1.0" height="15.0" fill="rgb(230,165,0)" rx="2" ry="2" /> 5821 <text text-anchor="" x="700.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5822 </g> 5823 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5824 <title>context.WithCancel.func1 (11 samples, 0.46%)</title><rect x="69.7" y="561" width="5.5" height="15.0" fill="rgb(252,63,29)" rx="2" ry="2" /> 5825 <text text-anchor="" x="72.70" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5826 </g> 5827 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5828 <title>runtime.scanstack.func1 (4 samples, 0.17%)</title><rect x="1169.6" y="385" width="2.0" height="15.0" fill="rgb(245,171,8)" rx="2" ry="2" /> 5829 <text text-anchor="" x="1172.60" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5830 </g> 5831 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5832 <title>net/textproto.CanonicalMIMEHeaderKey (1 samples, 0.04%)</title><rect x="303.0" y="433" width="0.5" height="15.0" fill="rgb(247,87,52)" rx="2" ry="2" /> 5833 <text text-anchor="" x="306.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5834 </g> 5835 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5836 <title>runtime.fastrand1 (3 samples, 0.13%)</title><rect x="1086.5" y="385" width="1.5" height="15.0" fill="rgb(219,146,49)" rx="2" ry="2" /> 5837 <text text-anchor="" x="1089.53" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5838 </g> 5839 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5840 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="770.6" y="353" width="0.5" height="15.0" fill="rgb(219,5,31)" rx="2" ry="2" /> 5841 <text text-anchor="" x="773.63" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5842 </g> 5843 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5844 <title>runtime.shade (1 samples, 0.04%)</title><rect x="212.5" y="417" width="0.5" height="15.0" fill="rgb(232,87,52)" rx="2" ry="2" /> 5845 <text text-anchor="" x="215.47" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5846 </g> 5847 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5848 <title>runtime.mapaccess1_faststr (1 samples, 0.04%)</title><rect x="761.7" y="369" width="0.5" height="15.0" fill="rgb(247,80,31)" rx="2" ry="2" /> 5849 <text text-anchor="" x="764.68" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5850 </g> 5851 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5852 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="348.8" y="449" width="1.0" height="15.0" fill="rgb(238,159,32)" rx="2" ry="2" /> 5853 <text text-anchor="" x="351.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5854 </g> 5855 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5856 <title>runtime.callers.func1 (1 samples, 0.04%)</title><rect x="883.1" y="305" width="0.5" height="15.0" fill="rgb(211,152,37)" rx="2" ry="2" /> 5857 <text text-anchor="" x="886.06" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5858 </g> 5859 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5860 <title>runtime.(*gcControllerState).findRunnableGCWorker (1 samples, 0.04%)</title><rect x="1180.5" y="513" width="0.5" height="15.0" fill="rgb(226,29,7)" rx="2" ry="2" /> 5861 <text text-anchor="" x="1183.55" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5862 </g> 5863 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5864 <title>runtime.heapBitsSetType (3 samples, 0.13%)</title><rect x="809.9" y="353" width="1.5" height="15.0" fill="rgb(228,204,17)" rx="2" ry="2" /> 5865 <text text-anchor="" x="812.93" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5866 </g> 5867 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5868 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="273.7" y="497" width="0.5" height="15.0" fill="rgb(217,87,9)" rx="2" ry="2" /> 5869 <text text-anchor="" x="276.66" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5870 </g> 5871 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5872 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="728.8" y="289" width="1.0" height="15.0" fill="rgb(231,71,43)" rx="2" ry="2" /> 5873 <text text-anchor="" x="731.84" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5874 </g> 5875 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5876 <title>runtime.assertI2I2 (4 samples, 0.17%)</title><rect x="321.4" y="465" width="2.0" height="15.0" fill="rgb(220,131,42)" rx="2" ry="2" /> 5877 <text text-anchor="" x="324.42" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5878 </g> 5879 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5880 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="961.2" y="353" width="0.5" height="15.0" fill="rgb(246,205,31)" rx="2" ry="2" /> 5881 <text text-anchor="" x="964.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5882 </g> 5883 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5884 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="59.2" y="369" width="0.5" height="15.0" fill="rgb(219,154,4)" rx="2" ry="2" /> 5885 <text text-anchor="" x="62.25" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5886 </g> 5887 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5888 <title>runtime.newMarkBits (1 samples, 0.04%)</title><rect x="677.1" y="65" width="0.5" height="15.0" fill="rgb(220,137,11)" rx="2" ry="2" /> 5889 <text text-anchor="" x="680.11" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5890 </g> 5891 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5892 <title>runtime/internal/atomic.Cas (1 samples, 0.04%)</title><rect x="1070.1" y="449" width="0.5" height="15.0" fill="rgb(243,7,12)" rx="2" ry="2" /> 5893 <text text-anchor="" x="1073.11" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5894 </g> 5895 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5896 <title>runtime.markroot.func1 (1 samples, 0.04%)</title><rect x="1138.8" y="481" width="0.5" height="15.0" fill="rgb(234,182,34)" rx="2" ry="2" /> 5897 <text text-anchor="" x="1141.76" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5898 </g> 5899 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5900 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="696.0" y="305" width="0.5" height="15.0" fill="rgb(206,134,23)" rx="2" ry="2" /> 5901 <text text-anchor="" x="699.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5902 </g> 5903 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5904 <title>runtime.markroot (1 samples, 0.04%)</title><rect x="1182.5" y="449" width="0.5" height="15.0" fill="rgb(219,229,53)" rx="2" ry="2" /> 5905 <text text-anchor="" x="1185.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5906 </g> 5907 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5908 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1137.8" y="545" width="0.5" height="15.0" fill="rgb(210,86,54)" rx="2" ry="2" /> 5909 <text text-anchor="" x="1140.77" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5910 </g> 5911 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5912 <title>runtime.indexbytebody (1 samples, 0.04%)</title><rect x="801.0" y="353" width="0.5" height="15.0" fill="rgb(226,210,37)" rx="2" ry="2" /> 5913 <text text-anchor="" x="803.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5914 </g> 5915 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5916 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="904.0" y="353" width="0.5" height="15.0" fill="rgb(252,59,33)" rx="2" ry="2" /> 5917 <text text-anchor="" x="906.95" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5918 </g> 5919 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5920 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="212.5" y="433" width="0.5" height="15.0" fill="rgb(235,151,2)" rx="2" ry="2" /> 5921 <text text-anchor="" x="215.47" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5922 </g> 5923 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5924 <title>runtime.mapiterinit (5 samples, 0.21%)</title><rect x="970.6" y="417" width="2.5" height="15.0" fill="rgb(237,131,19)" rx="2" ry="2" /> 5925 <text text-anchor="" x="973.62" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5926 </g> 5927 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5928 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="651.7" y="225" width="1.5" height="15.0" fill="rgb(249,214,2)" rx="2" ry="2" /> 5929 <text text-anchor="" x="654.74" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5930 </g> 5931 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5932 <title>encoding/json.valueEncoder (12 samples, 0.51%)</title><rect x="859.7" y="417" width="5.9" height="15.0" fill="rgb(227,76,13)" rx="2" ry="2" /> 5933 <text text-anchor="" x="862.68" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5934 </g> 5935 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5936 <title>sync.(*Mutex).Lock (1 samples, 0.04%)</title><rect x="922.9" y="401" width="0.5" height="15.0" fill="rgb(249,28,36)" rx="2" ry="2" /> 5937 <text text-anchor="" x="925.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5938 </g> 5939 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5940 <title>runtime.rawstring (5 samples, 0.21%)</title><rect x="675.1" y="177" width="2.5" height="15.0" fill="rgb(246,104,23)" rx="2" ry="2" /> 5941 <text text-anchor="" x="678.12" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5942 </g> 5943 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5944 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="1012.4" y="385" width="0.5" height="15.0" fill="rgb(224,216,38)" rx="2" ry="2" /> 5945 <text text-anchor="" x="1015.40" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5946 </g> 5947 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5948 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="958.7" y="385" width="1.5" height="15.0" fill="rgb(230,225,41)" rx="2" ry="2" /> 5949 <text text-anchor="" x="961.68" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5950 </g> 5951 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5952 <title>runtime.systemstack (4 samples, 0.17%)</title><rect x="1005.4" y="385" width="2.0" height="15.0" fill="rgb(214,225,52)" rx="2" ry="2" /> 5953 <text text-anchor="" x="1008.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5954 </g> 5955 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5956 <title>runtime.greyobject (2 samples, 0.08%)</title><rect x="224.9" y="385" width="1.0" height="15.0" fill="rgb(228,216,45)" rx="2" ry="2" /> 5957 <text text-anchor="" x="227.91" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5958 </g> 5959 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5960 <title>runtime.mapaccess1_faststr (14 samples, 0.59%)</title><rect x="547.3" y="353" width="6.9" height="15.0" fill="rgb(230,137,15)" rx="2" ry="2" /> 5961 <text text-anchor="" x="550.27" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5962 </g> 5963 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5964 <title>runtime.rawstringtmp (6 samples, 0.25%)</title><rect x="674.6" y="193" width="3.0" height="15.0" fill="rgb(250,184,9)" rx="2" ry="2" /> 5965 <text text-anchor="" x="677.62" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5966 </g> 5967 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5968 <title>runtime.systemstack (3 samples, 0.13%)</title><rect x="909.4" y="321" width="1.5" height="15.0" fill="rgb(239,57,40)" rx="2" ry="2" /> 5969 <text text-anchor="" x="912.43" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5970 </g> 5971 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5972 <title>encoding/json.(*encodeState).marshal (90 samples, 3.79%)</title><rect x="822.4" y="449" width="44.7" height="15.0" fill="rgb(234,152,32)" rx="2" ry="2" /> 5973 <text text-anchor="" x="825.37" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >enco..</text> 5974 </g> 5975 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5976 <title>runtime.slicebytetostring (1 samples, 0.04%)</title><rect x="720.4" y="369" width="0.5" height="15.0" fill="rgb(223,139,34)" rx="2" ry="2" /> 5977 <text text-anchor="" x="723.39" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5978 </g> 5979 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5980 <title>net/url.(*URL).EscapedPath (6 samples, 0.25%)</title><rect x="252.8" y="497" width="3.0" height="15.0" fill="rgb(250,133,25)" rx="2" ry="2" /> 5981 <text text-anchor="" x="255.77" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5982 </g> 5983 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5984 <title>runtime.shade (1 samples, 0.04%)</title><rect x="511.5" y="433" width="0.4" height="15.0" fill="rgb(224,56,31)" rx="2" ry="2" /> 5985 <text text-anchor="" x="514.45" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5986 </g> 5987 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5988 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="271.2" y="449" width="0.5" height="15.0" fill="rgb(244,110,27)" rx="2" ry="2" /> 5989 <text text-anchor="" x="274.17" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5990 </g> 5991 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5992 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="881.1" y="273" width="0.5" height="15.0" fill="rgb(213,123,9)" rx="2" ry="2" /> 5993 <text text-anchor="" x="884.07" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5994 </g> 5995 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 5996 <title>runtime.(*mcache).releaseAll (1 samples, 0.04%)</title><rect x="1166.6" y="449" width="0.5" height="15.0" fill="rgb(247,29,37)" rx="2" ry="2" /> 5997 <text text-anchor="" x="1169.62" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 5998 </g> 5999 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6000 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).handleFuncMetrics.func1 (1,069 samples, 45.07%)</title><rect x="518.4" y="513" width="531.8" height="15.0" fill="rgb(228,187,18)" rx="2" ry="2" /> 6001 <text text-anchor="" x="521.41" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/hashicorp/consul/command/agent.(*HTTPServer).handleFuncMetrics..</text> 6002 </g> 6003 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6004 <title>reflect.(*rtype).Out (1 samples, 0.04%)</title><rect x="585.1" y="337" width="0.5" height="15.0" fill="rgb(226,71,24)" rx="2" ry="2" /> 6005 <text text-anchor="" x="588.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6006 </g> 6007 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6008 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="107.5" y="513" width="0.5" height="15.0" fill="rgb(214,72,54)" rx="2" ry="2" /> 6009 <text text-anchor="" x="110.50" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6010 </g> 6011 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6012 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="569.7" y="289" width="0.5" height="15.0" fill="rgb(249,122,52)" rx="2" ry="2" /> 6013 <text text-anchor="" x="572.65" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6014 </g> 6015 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6016 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="107.5" y="497" width="0.5" height="15.0" fill="rgb(251,133,35)" rx="2" ry="2" /> 6017 <text text-anchor="" x="110.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6018 </g> 6019 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6020 <title>sync.runtime_procPin (1 samples, 0.04%)</title><rect x="113.0" y="481" width="0.5" height="15.0" fill="rgb(224,206,0)" rx="2" ry="2" /> 6021 <text text-anchor="" x="115.98" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6022 </g> 6023 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6024 <title>runtime.semacquire (4 samples, 0.17%)</title><rect x="937.8" y="401" width="2.0" height="15.0" fill="rgb(208,177,40)" rx="2" ry="2" /> 6025 <text text-anchor="" x="940.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6026 </g> 6027 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6028 <title>runtime.lock (2 samples, 0.08%)</title><rect x="808.9" y="225" width="1.0" height="15.0" fill="rgb(239,170,15)" rx="2" ry="2" /> 6029 <text text-anchor="" x="811.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6030 </g> 6031 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6032 <title>github.com/hashicorp/consul/consul.(*Server).setQueryMeta (2 samples, 0.08%)</title><rect x="664.2" y="289" width="1.0" height="15.0" fill="rgb(229,173,18)" rx="2" ry="2" /> 6033 <text text-anchor="" x="667.17" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6034 </g> 6035 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6036 <title>runtime.rawstring (2 samples, 0.08%)</title><rect x="728.8" y="305" width="1.0" height="15.0" fill="rgb(207,84,47)" rx="2" ry="2" /> 6037 <text text-anchor="" x="731.84" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6038 </g> 6039 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6040 <title>runtime.(*mcache).refill (1 samples, 0.04%)</title><rect x="991.5" y="385" width="0.5" height="15.0" fill="rgb(225,183,1)" rx="2" ry="2" /> 6041 <text text-anchor="" x="994.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6042 </g> 6043 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6044 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="230.9" y="401" width="0.5" height="15.0" fill="rgb(245,124,45)" rx="2" ry="2" /> 6045 <text text-anchor="" x="233.88" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6046 </g> 6047 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6048 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="230.4" y="465" width="1.0" height="15.0" fill="rgb(206,81,48)" rx="2" ry="2" /> 6049 <text text-anchor="" x="233.38" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6050 </g> 6051 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6052 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="647.3" y="177" width="0.5" height="15.0" fill="rgb(221,84,40)" rx="2" ry="2" /> 6053 <text text-anchor="" x="650.26" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6054 </g> 6055 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6056 <title>net/textproto.MIMEHeader.Set (11 samples, 0.46%)</title><rect x="975.6" y="465" width="5.5" height="15.0" fill="rgb(223,128,21)" rx="2" ry="2" /> 6057 <text text-anchor="" x="978.59" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6058 </g> 6059 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6060 <title>net/http.Header.Del (4 samples, 0.17%)</title><rect x="302.5" y="465" width="2.0" height="15.0" fill="rgb(253,7,31)" rx="2" ry="2" /> 6061 <text text-anchor="" x="305.51" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6062 </g> 6063 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6064 <title>net/rpc.(*Server).ServeRequest (338 samples, 14.25%)</title><rect x="531.8" y="401" width="168.2" height="15.0" fill="rgb(253,21,14)" rx="2" ry="2" /> 6065 <text text-anchor="" x="534.85" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/rpc.(*Server).Ser..</text> 6066 </g> 6067 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6068 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="722.9" y="273" width="0.5" height="15.0" fill="rgb(221,31,41)" rx="2" ry="2" /> 6069 <text text-anchor="" x="725.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6070 </g> 6071 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6072 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="95.6" y="481" width="1.0" height="15.0" fill="rgb(215,67,36)" rx="2" ry="2" /> 6073 <text text-anchor="" x="98.56" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6074 </g> 6075 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6076 <title>runtime.heapBitsForObject (10 samples, 0.42%)</title><rect x="1129.8" y="529" width="5.0" height="15.0" fill="rgb(240,89,54)" rx="2" ry="2" /> 6077 <text text-anchor="" x="1132.81" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6078 </g> 6079 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6080 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="717.9" y="337" width="0.5" height="15.0" fill="rgb(222,48,26)" rx="2" ry="2" /> 6081 <text text-anchor="" x="720.90" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6082 </g> 6083 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6084 <title>runtime.pcvalue (3 samples, 0.13%)</title><rect x="1168.1" y="369" width="1.5" height="15.0" fill="rgb(226,12,16)" rx="2" ry="2" /> 6085 <text text-anchor="" x="1171.11" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6086 </g> 6087 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6088 <title>runtime.deferreturn (2 samples, 0.08%)</title><rect x="266.2" y="529" width="1.0" height="15.0" fill="rgb(241,162,32)" rx="2" ry="2" /> 6089 <text text-anchor="" x="269.20" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6090 </g> 6091 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6092 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).(github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.gossip)-fm (3 samples, 0.13%)</title><rect x="60.7" y="561" width="1.5" height="15.0" fill="rgb(250,12,49)" rx="2" ry="2" /> 6093 <text text-anchor="" x="63.74" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6094 </g> 6095 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6096 <title>runtime.pcvalue (1 samples, 0.04%)</title><rect x="1152.2" y="321" width="0.5" height="15.0" fill="rgb(207,113,46)" rx="2" ry="2" /> 6097 <text text-anchor="" x="1155.19" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6098 </g> 6099 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6100 <title>runtime.deferreturn (1 samples, 0.04%)</title><rect x="866.6" y="433" width="0.5" height="15.0" fill="rgb(221,59,0)" rx="2" ry="2" /> 6101 <text text-anchor="" x="869.64" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6102 </g> 6103 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6104 <title>runtime.greyobject (2 samples, 0.08%)</title><rect x="261.2" y="385" width="1.0" height="15.0" fill="rgb(249,66,3)" rx="2" ry="2" /> 6105 <text text-anchor="" x="264.22" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6106 </g> 6107 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6108 <title>strings.Join (1 samples, 0.04%)</title><rect x="60.7" y="465" width="0.5" height="15.0" fill="rgb(252,109,27)" rx="2" ry="2" /> 6109 <text text-anchor="" x="63.74" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6110 </g> 6111 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6112 <title>net.(*UDPConn).ReadMsgUDP (1 samples, 0.04%)</title><rect x="59.2" y="481" width="0.5" height="15.0" fill="rgb(239,16,27)" rx="2" ry="2" /> 6113 <text text-anchor="" x="62.25" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6114 </g> 6115 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6116 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="659.7" y="209" width="1.0" height="15.0" fill="rgb(230,192,32)" rx="2" ry="2" /> 6117 <text text-anchor="" x="662.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6118 </g> 6119 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6120 <title>runtime.mallocgc (4 samples, 0.17%)</title><rect x="805.0" y="385" width="1.9" height="15.0" fill="rgb(246,84,51)" rx="2" ry="2" /> 6121 <text text-anchor="" x="807.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6122 </g> 6123 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6124 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="673.6" y="177" width="0.5" height="15.0" fill="rgb(228,94,8)" rx="2" ry="2" /> 6125 <text text-anchor="" x="676.63" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6126 </g> 6127 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6128 <title>runtime.newobject (3 samples, 0.13%)</title><rect x="909.4" y="369" width="1.5" height="15.0" fill="rgb(245,98,11)" rx="2" ry="2" /> 6129 <text text-anchor="" x="912.43" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6130 </g> 6131 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6132 <title>github.com/hashicorp/consul/vendor/github.com/miekg/dns.(*Server).serveUDP (1 samples, 0.04%)</title><rect x="59.2" y="545" width="0.5" height="15.0" fill="rgb(248,142,20)" rx="2" ry="2" /> 6133 <text text-anchor="" x="62.25" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6134 </g> 6135 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6136 <title>runtime.gcAssistAlloc.func1 (2 samples, 0.08%)</title><rect x="230.4" y="449" width="1.0" height="15.0" fill="rgb(212,148,36)" rx="2" ry="2" /> 6137 <text text-anchor="" x="233.38" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6138 </g> 6139 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6140 <title>net/http.putBufioWriter (2 samples, 0.08%)</title><rect x="457.2" y="545" width="1.0" height="15.0" fill="rgb(216,218,5)" rx="2" ry="2" /> 6141 <text text-anchor="" x="460.23" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6142 </g> 6143 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6144 <title>runtime.newobject (7 samples, 0.30%)</title><rect x="700.0" y="401" width="3.5" height="15.0" fill="rgb(212,213,8)" rx="2" ry="2" /> 6145 <text text-anchor="" x="702.99" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6146 </g> 6147 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6148 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="677.1" y="129" width="0.5" height="15.0" fill="rgb(240,94,0)" rx="2" ry="2" /> 6149 <text text-anchor="" x="680.11" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6150 </g> 6151 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6152 <title>sort.Search (4 samples, 0.17%)</title><rect x="644.8" y="161" width="2.0" height="15.0" fill="rgb(252,105,23)" rx="2" ry="2" /> 6153 <text text-anchor="" x="647.77" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6154 </g> 6155 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6156 <title>runtime.systemstack (3 samples, 0.13%)</title><rect x="1014.4" y="465" width="1.5" height="15.0" fill="rgb(241,46,2)" rx="2" ry="2" /> 6157 <text text-anchor="" x="1017.39" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6158 </g> 6159 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6160 <title>net/url.ParseQuery (17 samples, 0.72%)</title><rect x="795.0" y="401" width="8.5" height="15.0" fill="rgb(215,90,8)" rx="2" ry="2" /> 6161 <text text-anchor="" x="798.01" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6162 </g> 6163 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6164 <title>sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%)</title><rect x="698.5" y="353" width="0.5" height="15.0" fill="rgb(242,125,47)" rx="2" ry="2" /> 6165 <text text-anchor="" x="701.50" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6166 </g> 6167 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6168 <title>runtime.startm (1 samples, 0.04%)</title><rect x="1176.1" y="513" width="0.5" height="15.0" fill="rgb(246,73,5)" rx="2" ry="2" /> 6169 <text text-anchor="" x="1179.07" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6170 </g> 6171 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6172 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).KVSEndpoint-fm (592 samples, 24.96%)</title><rect x="524.9" y="481" width="294.5" height="15.0" fill="rgb(253,36,54)" rx="2" ry="2" /> 6173 <text text-anchor="" x="527.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/hashicorp/consul/command/age..</text> 6174 </g> 6175 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6176 <title>sync/atomic.CompareAndSwapUint32 (2 samples, 0.08%)</title><rect x="282.6" y="529" width="1.0" height="15.0" fill="rgb(218,47,52)" rx="2" ry="2" /> 6177 <text text-anchor="" x="285.61" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6178 </g> 6179 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6180 <title>runtime.notesleep (2 samples, 0.08%)</title><rect x="1139.3" y="545" width="1.0" height="15.0" fill="rgb(250,95,42)" rx="2" ry="2" /> 6181 <text text-anchor="" x="1142.26" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6182 </g> 6183 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6184 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="249.3" y="369" width="0.5" height="15.0" fill="rgb(205,213,9)" rx="2" ry="2" /> 6185 <text text-anchor="" x="252.28" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6186 </g> 6187 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6188 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="1012.9" y="417" width="0.5" height="15.0" fill="rgb(207,94,10)" rx="2" ry="2" /> 6189 <text text-anchor="" x="1015.90" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6190 </g> 6191 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6192 <title>runtime.shade (1 samples, 0.04%)</title><rect x="905.4" y="337" width="0.5" height="15.0" fill="rgb(215,18,35)" rx="2" ry="2" /> 6193 <text text-anchor="" x="908.45" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6194 </g> 6195 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6196 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).parseToken (27 samples, 1.14%)</title><rect x="771.1" y="433" width="13.5" height="15.0" fill="rgb(235,194,11)" rx="2" ry="2" /> 6197 <text text-anchor="" x="774.13" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6198 </g> 6199 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6200 <title>runtime.flushallmcaches (1 samples, 0.04%)</title><rect x="1181.5" y="433" width="0.5" height="15.0" fill="rgb(233,224,54)" rx="2" ry="2" /> 6201 <text text-anchor="" x="1184.54" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6202 </g> 6203 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6204 <title>runtime.(*gcControllerState).findRunnableGCWorker (2 samples, 0.08%)</title><rect x="1147.2" y="545" width="1.0" height="15.0" fill="rgb(244,153,13)" rx="2" ry="2" /> 6205 <text text-anchor="" x="1150.22" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6206 </g> 6207 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6208 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="1167.1" y="417" width="0.5" height="15.0" fill="rgb(224,94,42)" rx="2" ry="2" /> 6209 <text text-anchor="" x="1170.12" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6210 </g> 6211 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6212 <title>runtime.netpollunblock (2 samples, 0.08%)</title><rect x="1163.1" y="497" width="1.0" height="15.0" fill="rgb(208,64,3)" rx="2" ry="2" /> 6213 <text text-anchor="" x="1166.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6214 </g> 6215 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6216 <title>runtime.(*mcentral).uncacheSpan (1 samples, 0.04%)</title><rect x="1181.5" y="401" width="0.5" height="15.0" fill="rgb(207,62,41)" rx="2" ry="2" /> 6217 <text text-anchor="" x="1184.54" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6218 </g> 6219 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6220 <title>runtime.mapassign1 (3 samples, 0.13%)</title><rect x="729.8" y="369" width="1.5" height="15.0" fill="rgb(249,143,21)" rx="2" ry="2" /> 6221 <text text-anchor="" x="732.84" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6222 </g> 6223 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6224 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="640.3" y="161" width="0.5" height="15.0" fill="rgb(237,195,35)" rx="2" ry="2" /> 6225 <text text-anchor="" x="643.30" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6226 </g> 6227 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6228 <title>runtime.deferproc (3 samples, 0.13%)</title><rect x="661.7" y="257" width="1.5" height="15.0" fill="rgb(227,89,37)" rx="2" ry="2" /> 6229 <text text-anchor="" x="664.69" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6230 </g> 6231 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6232 <title>runtime.gcDrain (10 samples, 0.42%)</title><rect x="1166.6" y="497" width="5.0" height="15.0" fill="rgb(212,69,50)" rx="2" ry="2" /> 6233 <text text-anchor="" x="1169.62" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6234 </g> 6235 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6236 <title>runtime.makemap (11 samples, 0.46%)</title><rect x="221.4" y="513" width="5.5" height="15.0" fill="rgb(225,224,53)" rx="2" ry="2" /> 6237 <text text-anchor="" x="224.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6238 </g> 6239 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6240 <title>runtime.mProf_GC (1 samples, 0.04%)</title><rect x="734.8" y="209" width="0.5" height="15.0" fill="rgb(214,63,3)" rx="2" ry="2" /> 6241 <text text-anchor="" x="737.81" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6242 </g> 6243 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6244 <title>runtime.deferreturn (2 samples, 0.08%)</title><rect x="102.5" y="529" width="1.0" height="15.0" fill="rgb(224,53,7)" rx="2" ry="2" /> 6245 <text text-anchor="" x="105.53" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6246 </g> 6247 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6248 <title>runtime.getcallersp (1 samples, 0.04%)</title><rect x="443.8" y="401" width="0.5" height="15.0" fill="rgb(218,15,44)" rx="2" ry="2" /> 6249 <text text-anchor="" x="446.79" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6250 </g> 6251 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6252 <title>runtime.goexit (2,170 samples, 91.48%)</title><rect x="59.2" y="593" width="1079.6" height="15.0" fill="rgb(217,120,9)" rx="2" ry="2" /> 6253 <text text-anchor="" x="62.25" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.goexit</text> 6254 </g> 6255 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6256 <title>runtime.indexbytebody (1 samples, 0.04%)</title><rect x="214.5" y="497" width="0.5" height="15.0" fill="rgb(254,5,33)" rx="2" ry="2" /> 6257 <text text-anchor="" x="217.46" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6258 </g> 6259 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6260 <title>runtime.mapiternext (2 samples, 0.08%)</title><rect x="312.5" y="433" width="1.0" height="15.0" fill="rgb(222,154,22)" rx="2" ry="2" /> 6261 <text text-anchor="" x="315.46" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6262 </g> 6263 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6264 <title>net.(*pollDesc).prepare (2 samples, 0.08%)</title><rect x="344.8" y="449" width="1.0" height="15.0" fill="rgb(248,40,46)" rx="2" ry="2" /> 6265 <text text-anchor="" x="347.80" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6266 </g> 6267 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6268 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="696.0" y="241" width="0.5" height="15.0" fill="rgb(215,79,38)" rx="2" ry="2" /> 6269 <text text-anchor="" x="699.01" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6270 </g> 6271 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6272 <title>net/url.parseQuery (18 samples, 0.76%)</title><rect x="804.5" y="417" width="8.9" height="15.0" fill="rgb(206,81,18)" rx="2" ry="2" /> 6273 <text text-anchor="" x="807.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6274 </g> 6275 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6276 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="93.1" y="417" width="0.5" height="15.0" fill="rgb(241,106,41)" rx="2" ry="2" /> 6277 <text text-anchor="" x="96.08" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6278 </g> 6279 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6280 <title>runtime.(*gcWork).put (1 samples, 0.04%)</title><rect x="93.1" y="401" width="0.5" height="15.0" fill="rgb(222,133,12)" rx="2" ry="2" /> 6281 <text text-anchor="" x="96.08" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6282 </g> 6283 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6284 <title>runtime.(*mSpanList).insertBack (1 samples, 0.04%)</title><rect x="878.6" y="289" width="0.5" height="15.0" fill="rgb(205,225,28)" rx="2" ry="2" /> 6285 <text text-anchor="" x="881.58" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6286 </g> 6287 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6288 <title>runtime.gentraceback (1 samples, 0.04%)</title><rect x="883.1" y="289" width="0.5" height="15.0" fill="rgb(229,136,31)" rx="2" ry="2" /> 6289 <text text-anchor="" x="886.06" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6290 </g> 6291 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6292 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="313.5" y="337" width="0.5" height="15.0" fill="rgb(243,68,11)" rx="2" ry="2" /> 6293 <text text-anchor="" x="316.46" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6294 </g> 6295 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6296 <title>net/url.parseQuery (13 samples, 0.55%)</title><rect x="795.0" y="385" width="6.5" height="15.0" fill="rgb(214,125,32)" rx="2" ry="2" /> 6297 <text text-anchor="" x="798.01" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6298 </g> 6299 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6300 <title>net/http.(*Request).wantsClose (2 samples, 0.08%)</title><rect x="97.6" y="545" width="0.9" height="15.0" fill="rgb(250,3,26)" rx="2" ry="2" /> 6301 <text text-anchor="" x="100.55" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6302 </g> 6303 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6304 <title>runtime.(*mcache).nextFree.func1 (1 samples, 0.04%)</title><rect x="765.7" y="289" width="0.5" height="15.0" fill="rgb(233,39,30)" rx="2" ry="2" /> 6305 <text text-anchor="" x="768.66" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6306 </g> 6307 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6308 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="806.0" y="369" width="0.5" height="15.0" fill="rgb(218,142,24)" rx="2" ry="2" /> 6309 <text text-anchor="" x="808.95" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6310 </g> 6311 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6312 <title>runtime.gcDrain (1 samples, 0.04%)</title><rect x="1181.5" y="465" width="0.5" height="15.0" fill="rgb(239,17,10)" rx="2" ry="2" /> 6313 <text text-anchor="" x="1184.54" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6314 </g> 6315 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6316 <title>all (2,372 samples, 100%)</title><rect x="10.0" y="609" width="1180.0" height="15.0" fill="rgb(220,30,29)" rx="2" ry="2" /> 6317 <text text-anchor="" x="13.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6318 </g> 6319 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6320 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="635.8" y="177" width="0.5" height="15.0" fill="rgb(220,185,54)" rx="2" ry="2" /> 6321 <text text-anchor="" x="638.82" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6322 </g> 6323 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6324 <title>runtime.copystack (2 samples, 0.08%)</title><rect x="1179.1" y="561" width="1.0" height="15.0" fill="rgb(205,115,37)" rx="2" ry="2" /> 6325 <text text-anchor="" x="1182.06" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6326 </g> 6327 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6328 <title>runtime.markroot.func1 (2 samples, 0.08%)</title><rect x="1174.6" y="449" width="1.0" height="15.0" fill="rgb(214,67,32)" rx="2" ry="2" /> 6329 <text text-anchor="" x="1177.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6330 </g> 6331 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6332 <title>net/http.(*conn).readRequest (429 samples, 18.09%)</title><rect x="76.7" y="561" width="213.4" height="15.0" fill="rgb(207,108,41)" rx="2" ry="2" /> 6333 <text text-anchor="" x="79.66" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.(*conn).readRequest</text> 6334 </g> 6335 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6336 <title>runtime.(*guintptr).cas (1 samples, 0.04%)</title><rect x="1165.1" y="497" width="0.5" height="15.0" fill="rgb(244,86,4)" rx="2" ry="2" /> 6337 <text text-anchor="" x="1168.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6338 </g> 6339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6340 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).triggerFunc (4 samples, 0.17%)</title><rect x="60.7" y="577" width="2.0" height="15.0" fill="rgb(241,184,14)" rx="2" ry="2" /> 6341 <text text-anchor="" x="63.74" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6342 </g> 6343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6344 <title>runtime.stringtoslicebyte (4 samples, 0.17%)</title><rect x="616.4" y="177" width="2.0" height="15.0" fill="rgb(233,208,23)" rx="2" ry="2" /> 6345 <text text-anchor="" x="619.42" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6346 </g> 6347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6348 <title>runtime.rawstring (2 samples, 0.08%)</title><rect x="615.4" y="129" width="1.0" height="15.0" fill="rgb(236,15,0)" rx="2" ry="2" /> 6349 <text text-anchor="" x="618.42" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6350 </g> 6351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6352 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="904.5" y="401" width="0.4" height="15.0" fill="rgb(239,4,49)" rx="2" ry="2" /> 6353 <text text-anchor="" x="907.45" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6354 </g> 6355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6356 <title>runtime.futex (1 samples, 0.04%)</title><rect x="1137.8" y="433" width="0.5" height="15.0" fill="rgb(222,192,16)" rx="2" ry="2" /> 6357 <text text-anchor="" x="1140.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6358 </g> 6359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6360 <title>runtime.readvarint (1 samples, 0.04%)</title><rect x="1137.3" y="401" width="0.5" height="15.0" fill="rgb(251,101,28)" rx="2" ry="2" /> 6361 <text text-anchor="" x="1140.27" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6362 </g> 6363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6364 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="1011.9" y="289" width="0.5" height="15.0" fill="rgb(244,222,47)" rx="2" ry="2" /> 6365 <text text-anchor="" x="1014.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6366 </g> 6367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6368 <title>runtime.(*mheap).alloc_m (1 samples, 0.04%)</title><rect x="242.3" y="417" width="0.5" height="15.0" fill="rgb(240,67,19)" rx="2" ry="2" /> 6369 <text text-anchor="" x="245.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6370 </g> 6371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6372 <title>runtime.gcMarkTermination.func2 (1 samples, 0.04%)</title><rect x="734.8" y="241" width="0.5" height="15.0" fill="rgb(216,188,48)" rx="2" ry="2" /> 6373 <text text-anchor="" x="737.81" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6374 </g> 6375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6376 <title>runtime.heapBits.initSpan (2 samples, 0.08%)</title><rect x="808.9" y="257" width="1.0" height="15.0" fill="rgb(225,64,11)" rx="2" ry="2" /> 6377 <text text-anchor="" x="811.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6378 </g> 6379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6380 <title>github.com/hashicorp/consul/consul.(*Server).IsLeader (1 samples, 0.04%)</title><rect x="664.7" y="273" width="0.5" height="15.0" fill="rgb(247,66,54)" rx="2" ry="2" /> 6381 <text text-anchor="" x="667.67" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6382 </g> 6383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6384 <title>runtime.scang (1 samples, 0.04%)</title><rect x="1137.3" y="497" width="0.5" height="15.0" fill="rgb(239,100,15)" rx="2" ry="2" /> 6385 <text text-anchor="" x="1140.27" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6386 </g> 6387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6388 <title>runtime.netpollblockcommit (1 samples, 0.04%)</title><rect x="1144.2" y="561" width="0.5" height="15.0" fill="rgb(238,143,42)" rx="2" ry="2" /> 6389 <text text-anchor="" x="1147.23" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6390 </g> 6391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6392 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/memberlist.(*Memberlist).udpListen (1 samples, 0.04%)</title><rect x="62.7" y="577" width="0.5" height="15.0" fill="rgb(210,107,20)" rx="2" ry="2" /> 6393 <text text-anchor="" x="65.73" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6394 </g> 6395 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6396 <title>net.(*pollDesc).waitRead (7 samples, 0.30%)</title><rect x="138.3" y="401" width="3.5" height="15.0" fill="rgb(248,9,33)" rx="2" ry="2" /> 6397 <text text-anchor="" x="141.35" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6398 </g> 6399 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6400 <title>runtime.markroot.func1 (1 samples, 0.04%)</title><rect x="224.4" y="401" width="0.5" height="15.0" fill="rgb(247,62,11)" rx="2" ry="2" /> 6401 <text text-anchor="" x="227.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6402 </g> 6403 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6404 <title>github.com/hashicorp/consul/command/agent.setKnownLeader (8 samples, 0.34%)</title><rect x="720.9" y="417" width="4.0" height="15.0" fill="rgb(227,215,44)" rx="2" ry="2" /> 6405 <text text-anchor="" x="723.89" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6406 </g> 6407 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6408 <title>runtime.(*gcWork).get (1 samples, 0.04%)</title><rect x="259.2" y="353" width="0.5" height="15.0" fill="rgb(239,58,26)" rx="2" ry="2" /> 6409 <text text-anchor="" x="262.23" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6410 </g> 6411 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6412 <title>runtime.(*mspan).refillAllocCache (1 samples, 0.04%)</title><rect x="876.1" y="353" width="0.5" height="15.0" fill="rgb(246,75,29)" rx="2" ry="2" /> 6413 <text text-anchor="" x="879.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6414 </g> 6415 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6416 <title>runtime.newobject (3 samples, 0.13%)</title><rect x="958.7" y="401" width="1.5" height="15.0" fill="rgb(220,70,1)" rx="2" ry="2" /> 6417 <text text-anchor="" x="961.68" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6418 </g> 6419 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6420 <title>runtime.deferproc (1 samples, 0.04%)</title><rect x="839.8" y="225" width="0.5" height="15.0" fill="rgb(216,90,29)" rx="2" ry="2" /> 6421 <text text-anchor="" x="842.78" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6422 </g> 6423 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6424 <title>runtime.stopm (1 samples, 0.04%)</title><rect x="1181.5" y="497" width="0.5" height="15.0" fill="rgb(247,198,54)" rx="2" ry="2" /> 6425 <text text-anchor="" x="1184.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6426 </g> 6427 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6428 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="1189.5" y="561" width="0.5" height="15.0" fill="rgb(227,29,3)" rx="2" ry="2" /> 6429 <text text-anchor="" x="1192.50" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6430 </g> 6431 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6432 <title>runtime.deferproc.func1 (3 samples, 0.13%)</title><rect x="899.0" y="353" width="1.5" height="15.0" fill="rgb(207,199,23)" rx="2" ry="2" /> 6433 <text text-anchor="" x="901.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6434 </g> 6435 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6436 <title>runtime.heapBitsSetType (3 samples, 0.13%)</title><rect x="281.1" y="513" width="1.5" height="15.0" fill="rgb(235,75,7)" rx="2" ry="2" /> 6437 <text text-anchor="" x="284.12" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6438 </g> 6439 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6440 <title>net/http.(*headerSorter).Swap (1 samples, 0.04%)</title><rect x="319.9" y="401" width="0.5" height="15.0" fill="rgb(213,72,50)" rx="2" ry="2" /> 6441 <text text-anchor="" x="322.92" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6442 </g> 6443 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6444 <title>github.com/hashicorp/consul/consul.(*Server).forward (3 samples, 0.13%)</title><rect x="690.5" y="305" width="1.5" height="15.0" fill="rgb(211,56,13)" rx="2" ry="2" /> 6445 <text text-anchor="" x="693.54" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6446 </g> 6447 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6448 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.MeasureSince (2 samples, 0.08%)</title><rect x="60.7" y="529" width="1.0" height="15.0" fill="rgb(210,194,29)" rx="2" ry="2" /> 6449 <text text-anchor="" x="63.74" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6450 </g> 6451 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6452 <title>time.Now (2 samples, 0.08%)</title><rect x="948.2" y="465" width="1.0" height="15.0" fill="rgb(249,74,5)" rx="2" ry="2" /> 6453 <text text-anchor="" x="951.23" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6454 </g> 6455 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6456 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).getExistingInterval (8 samples, 0.34%)</title><rect x="1028.3" y="433" width="4.0" height="15.0" fill="rgb(220,172,44)" rx="2" ry="2" /> 6457 <text text-anchor="" x="1031.32" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6458 </g> 6459 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6460 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge (3 samples, 0.13%)</title><rect x="632.8" y="161" width="1.5" height="15.0" fill="rgb(226,192,7)" rx="2" ry="2" /> 6461 <text text-anchor="" x="635.83" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6462 </g> 6463 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6464 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="331.4" y="449" width="0.5" height="15.0" fill="rgb(246,117,47)" rx="2" ry="2" /> 6465 <text text-anchor="" x="334.37" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6466 </g> 6467 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6468 <title>runtime.deferproc.func1 (1 samples, 0.04%)</title><rect x="839.8" y="193" width="0.5" height="15.0" fill="rgb(244,92,37)" rx="2" ry="2" /> 6469 <text text-anchor="" x="842.78" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6470 </g> 6471 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6472 <title>runtime.duffcopy (2 samples, 0.08%)</title><rect x="90.1" y="529" width="1.0" height="15.0" fill="rgb(228,11,41)" rx="2" ry="2" /> 6473 <text text-anchor="" x="93.09" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6474 </g> 6475 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6476 <title>sort.Search (2 samples, 0.08%)</title><rect x="603.0" y="161" width="1.0" height="15.0" fill="rgb(220,20,41)" rx="2" ry="2" /> 6477 <text text-anchor="" x="605.98" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6478 </g> 6479 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6480 <title>runtime.readvarint (1 samples, 0.04%)</title><rect x="1179.6" y="465" width="0.5" height="15.0" fill="rgb(249,200,9)" rx="2" ry="2" /> 6481 <text text-anchor="" x="1182.55" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6482 </g> 6483 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6484 <title>runtime.aeshash (1 samples, 0.04%)</title><rect x="590.1" y="273" width="0.4" height="15.0" fill="rgb(241,183,42)" rx="2" ry="2" /> 6485 <text text-anchor="" x="593.05" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6486 </g> 6487 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6488 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="229.9" y="417" width="0.5" height="15.0" fill="rgb(251,160,23)" rx="2" ry="2" /> 6489 <text text-anchor="" x="232.88" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6490 </g> 6491 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6492 <title>runtime.mapiterinit (2 samples, 0.08%)</title><rect x="481.6" y="481" width="1.0" height="15.0" fill="rgb(216,212,41)" rx="2" ry="2" /> 6493 <text text-anchor="" x="484.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6494 </g> 6495 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6496 <title>net/url.QueryUnescape (1 samples, 0.04%)</title><rect x="804.5" y="401" width="0.5" height="15.0" fill="rgb(235,169,38)" rx="2" ry="2" /> 6497 <text text-anchor="" x="807.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6498 </g> 6499 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6500 <title>net/http.fixLength (7 samples, 0.30%)</title><rect x="120.9" y="513" width="3.5" height="15.0" fill="rgb(234,133,34)" rx="2" ry="2" /> 6501 <text text-anchor="" x="123.94" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6502 </g> 6503 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6504 <title>bytes.(*Buffer).WriteByte (2 samples, 0.08%)</title><rect x="837.8" y="273" width="1.0" height="15.0" fill="rgb(225,41,3)" rx="2" ry="2" /> 6505 <text text-anchor="" x="840.79" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6506 </g> 6507 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6508 <title>runtime.stringiter2 (1 samples, 0.04%)</title><rect x="768.6" y="353" width="0.5" height="15.0" fill="rgb(213,114,23)" rx="2" ry="2" /> 6509 <text text-anchor="" x="771.64" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6510 </g> 6511 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6512 <title>runtime.unlock (1 samples, 0.04%)</title><rect x="677.1" y="49" width="0.5" height="15.0" fill="rgb(247,129,51)" rx="2" ry="2" /> 6513 <text text-anchor="" x="680.11" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6514 </g> 6515 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6516 <title>net/http.(*conn).hijacked (3 samples, 0.13%)</title><rect x="75.2" y="561" width="1.5" height="15.0" fill="rgb(216,89,39)" rx="2" ry="2" /> 6517 <text text-anchor="" x="78.17" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6518 </g> 6519 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6520 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="905.4" y="417" width="0.5" height="15.0" fill="rgb(221,220,47)" rx="2" ry="2" /> 6521 <text text-anchor="" x="908.45" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6522 </g> 6523 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6524 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="813.9" y="369" width="0.5" height="15.0" fill="rgb(222,32,16)" rx="2" ry="2" /> 6525 <text text-anchor="" x="816.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6526 </g> 6527 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6528 <title>strings.Index (1 samples, 0.04%)</title><rect x="801.0" y="369" width="0.5" height="15.0" fill="rgb(239,79,15)" rx="2" ry="2" /> 6529 <text text-anchor="" x="803.98" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6530 </g> 6531 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6532 <title>runtime.callwritebarrier (2 samples, 0.08%)</title><rect x="693.0" y="321" width="1.0" height="15.0" fill="rgb(219,100,25)" rx="2" ry="2" /> 6533 <text text-anchor="" x="696.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6534 </g> 6535 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6536 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="561.7" y="257" width="0.5" height="15.0" fill="rgb(229,147,4)" rx="2" ry="2" /> 6537 <text text-anchor="" x="564.69" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6538 </g> 6539 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6540 <title>runtime.mapaccess1_faststr (1 samples, 0.04%)</title><rect x="267.7" y="529" width="0.5" height="15.0" fill="rgb(224,223,33)" rx="2" ry="2" /> 6541 <text text-anchor="" x="270.69" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6542 </g> 6543 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6544 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="104.5" y="353" width="0.5" height="15.0" fill="rgb(237,1,50)" rx="2" ry="2" /> 6545 <text text-anchor="" x="107.52" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6546 </g> 6547 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6548 <title>runtime.(*mcentral).cacheSpan (3 samples, 0.13%)</title><rect x="713.9" y="257" width="1.5" height="15.0" fill="rgb(232,36,17)" rx="2" ry="2" /> 6549 <text text-anchor="" x="716.92" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6550 </g> 6551 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6552 <title>runtime.makeslice (3 samples, 0.13%)</title><rect x="672.6" y="209" width="1.5" height="15.0" fill="rgb(233,187,9)" rx="2" ry="2" /> 6553 <text text-anchor="" x="675.63" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6554 </g> 6555 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6556 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="954.7" y="385" width="0.5" height="15.0" fill="rgb(213,164,27)" rx="2" ry="2" /> 6557 <text text-anchor="" x="957.70" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6558 </g> 6559 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6560 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="790.0" y="353" width="0.5" height="15.0" fill="rgb(253,208,33)" rx="2" ry="2" /> 6561 <text text-anchor="" x="793.03" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6562 </g> 6563 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6564 <title>runtime.deferreturn.func1 (1 samples, 0.04%)</title><rect x="511.0" y="465" width="0.5" height="15.0" fill="rgb(250,11,20)" rx="2" ry="2" /> 6565 <text text-anchor="" x="513.95" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6566 </g> 6567 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6568 <title>runtime.(*mcentral).cacheSpan (4 samples, 0.17%)</title><rect x="807.9" y="289" width="2.0" height="15.0" fill="rgb(237,82,40)" rx="2" ry="2" /> 6569 <text text-anchor="" x="810.94" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6570 </g> 6571 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6572 <title>runtime/internal/atomic.Cas (1 samples, 0.04%)</title><rect x="453.2" y="385" width="0.5" height="15.0" fill="rgb(245,102,25)" rx="2" ry="2" /> 6573 <text text-anchor="" x="456.25" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6574 </g> 6575 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6576 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="648.8" y="177" width="0.4" height="15.0" fill="rgb(238,128,16)" rx="2" ry="2" /> 6577 <text text-anchor="" x="651.75" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6578 </g> 6579 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6580 <title>sync/atomic.CompareAndSwapUint64 (2 samples, 0.08%)</title><rect x="136.4" y="369" width="1.0" height="15.0" fill="rgb(243,188,40)" rx="2" ry="2" /> 6581 <text text-anchor="" x="139.36" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6582 </g> 6583 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6584 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="673.6" y="161" width="0.5" height="15.0" fill="rgb(229,198,16)" rx="2" ry="2" /> 6585 <text text-anchor="" x="676.63" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6586 </g> 6587 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6588 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="696.0" y="337" width="0.5" height="15.0" fill="rgb(205,73,6)" rx="2" ry="2" /> 6589 <text text-anchor="" x="699.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6590 </g> 6591 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6592 <title>strings.Join (15 samples, 0.63%)</title><rect x="670.1" y="225" width="7.5" height="15.0" fill="rgb(248,2,23)" rx="2" ry="2" /> 6593 <text text-anchor="" x="673.14" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6594 </g> 6595 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6596 <title>net/http.(*ServeMux).Handler (117 samples, 4.93%)</title><rect x="459.2" y="529" width="58.2" height="15.0" fill="rgb(208,30,24)" rx="2" ry="2" /> 6597 <text text-anchor="" x="462.22" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/ht..</text> 6598 </g> 6599 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6600 <title>runtime.typedmemmove (2 samples, 0.08%)</title><rect x="749.7" y="417" width="1.0" height="15.0" fill="rgb(228,209,44)" rx="2" ry="2" /> 6601 <text text-anchor="" x="752.74" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6602 </g> 6603 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6604 <title>runtime.rawstringtmp (2 samples, 0.08%)</title><rect x="615.4" y="145" width="1.0" height="15.0" fill="rgb(212,9,20)" rx="2" ry="2" /> 6605 <text text-anchor="" x="618.42" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6606 </g> 6607 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6608 <title>runtime.deferreturn (2 samples, 0.08%)</title><rect x="953.2" y="433" width="1.0" height="15.0" fill="rgb(211,169,23)" rx="2" ry="2" /> 6609 <text text-anchor="" x="956.20" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6610 </g> 6611 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6612 <title>runtime.concatstrings (3 samples, 0.13%)</title><rect x="634.3" y="177" width="1.5" height="15.0" fill="rgb(224,46,23)" rx="2" ry="2" /> 6613 <text text-anchor="" x="637.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6614 </g> 6615 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6616 <title>runtime.acquireSudog (2 samples, 0.08%)</title><rect x="1036.8" y="385" width="1.0" height="15.0" fill="rgb(224,210,22)" rx="2" ry="2" /> 6617 <text text-anchor="" x="1039.78" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6618 </g> 6619 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6620 <title>runtime.pcvalue (1 samples, 0.04%)</title><rect x="1179.6" y="497" width="0.5" height="15.0" fill="rgb(228,177,44)" rx="2" ry="2" /> 6621 <text text-anchor="" x="1182.55" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6622 </g> 6623 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6624 <title>runtime.freedefer (1 samples, 0.04%)</title><rect x="511.0" y="449" width="0.5" height="15.0" fill="rgb(222,125,18)" rx="2" ry="2" /> 6625 <text text-anchor="" x="513.95" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6626 </g> 6627 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6628 <title>runtime.systemstack (3 samples, 0.13%)</title><rect x="899.0" y="369" width="1.5" height="15.0" fill="rgb(246,209,11)" rx="2" ry="2" /> 6629 <text text-anchor="" x="901.98" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6630 </g> 6631 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6632 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="979.6" y="433" width="1.5" height="15.0" fill="rgb(215,126,5)" rx="2" ry="2" /> 6633 <text text-anchor="" x="982.57" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6634 </g> 6635 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6636 <title>runtime.markroot (81 samples, 3.41%)</title><rect x="1061.2" y="545" width="40.3" height="15.0" fill="rgb(241,190,12)" rx="2" ry="2" /> 6637 <text text-anchor="" x="1064.16" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >run..</text> 6638 </g> 6639 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6640 <title>time.Time.abs (1 samples, 0.04%)</title><rect x="934.3" y="385" width="0.5" height="15.0" fill="rgb(217,117,18)" rx="2" ry="2" /> 6641 <text text-anchor="" x="937.30" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6642 </g> 6643 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6644 <title>net.(*netFD).writeUnlock (2 samples, 0.08%)</title><rect x="343.8" y="465" width="1.0" height="15.0" fill="rgb(238,169,33)" rx="2" ry="2" /> 6645 <text text-anchor="" x="346.80" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6646 </g> 6647 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6648 <title>runtime.greyobject (1 samples, 0.04%)</title><rect x="509.5" y="369" width="0.5" height="15.0" fill="rgb(242,84,52)" rx="2" ry="2" /> 6649 <text text-anchor="" x="512.46" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6650 </g> 6651 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6652 <title>runtime.(*mheap).alloc_m (2 samples, 0.08%)</title><rect x="880.6" y="321" width="1.0" height="15.0" fill="rgb(232,187,41)" rx="2" ry="2" /> 6653 <text text-anchor="" x="883.57" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6654 </g> 6655 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6656 <title>net/url.unescape (3 samples, 0.13%)</title><rect x="257.2" y="497" width="1.5" height="15.0" fill="rgb(253,167,31)" rx="2" ry="2" /> 6657 <text text-anchor="" x="260.24" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6658 </g> 6659 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6660 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="676.1" y="161" width="1.5" height="15.0" fill="rgb(224,180,40)" rx="2" ry="2" /> 6661 <text text-anchor="" x="679.11" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6662 </g> 6663 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6664 <title>net/textproto.CanonicalMIMEHeaderKey (7 samples, 0.30%)</title><rect x="708.0" y="369" width="3.4" height="15.0" fill="rgb(252,132,37)" rx="2" ry="2" /> 6665 <text text-anchor="" x="710.95" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6666 </g> 6667 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6668 <title>net/http.newBufioWriterSize (8 samples, 0.34%)</title><rect x="104.5" y="545" width="4.0" height="15.0" fill="rgb(241,167,34)" rx="2" ry="2" /> 6669 <text text-anchor="" x="107.52" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6670 </g> 6671 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6672 <title>runtime.gchelper (1 samples, 0.04%)</title><rect x="1181.5" y="481" width="0.5" height="15.0" fill="rgb(222,72,7)" rx="2" ry="2" /> 6673 <text text-anchor="" x="1184.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6674 </g> 6675 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6676 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="783.1" y="337" width="0.5" height="15.0" fill="rgb(217,196,8)" rx="2" ry="2" /> 6677 <text text-anchor="" x="786.07" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6678 </g> 6679 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6680 <title>runtime.growslice (4 samples, 0.17%)</title><rect x="795.5" y="369" width="2.0" height="15.0" fill="rgb(243,228,43)" rx="2" ry="2" /> 6681 <text text-anchor="" x="798.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6682 </g> 6683 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6684 <title>runtime.exitsyscallfast (5 samples, 0.21%)</title><rect x="451.3" y="401" width="2.4" height="15.0" fill="rgb(240,164,31)" rx="2" ry="2" /> 6685 <text text-anchor="" x="454.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6686 </g> 6687 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6688 <title>runtime.mapassign1 (9 samples, 0.38%)</title><rect x="806.9" y="401" width="4.5" height="15.0" fill="rgb(250,70,39)" rx="2" ry="2" /> 6689 <text text-anchor="" x="809.95" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6690 </g> 6691 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6692 <title>sort.Sort (8 samples, 0.34%)</title><rect x="316.4" y="449" width="4.0" height="15.0" fill="rgb(229,192,28)" rx="2" ry="2" /> 6693 <text text-anchor="" x="319.44" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6694 </g> 6695 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6696 <title>runtime.gcAssistAlloc.func1 (2 samples, 0.08%)</title><rect x="1025.3" y="321" width="1.0" height="15.0" fill="rgb(236,179,47)" rx="2" ry="2" /> 6697 <text text-anchor="" x="1028.34" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6698 </g> 6699 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6700 <title>runtime.assertE2T2 (4 samples, 0.17%)</title><rect x="610.4" y="177" width="2.0" height="15.0" fill="rgb(251,134,35)" rx="2" ry="2" /> 6701 <text text-anchor="" x="613.45" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6702 </g> 6703 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6704 <title>runtime.scang (8 samples, 0.34%)</title><rect x="1167.6" y="433" width="4.0" height="15.0" fill="rgb(251,192,29)" rx="2" ry="2" /> 6705 <text text-anchor="" x="1170.61" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6706 </g> 6707 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6708 <title>bytes.(*Buffer).grow (3 samples, 0.13%)</title><rect x="985.5" y="449" width="1.5" height="15.0" fill="rgb(226,208,39)" rx="2" ry="2" /> 6709 <text text-anchor="" x="988.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6710 </g> 6711 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6712 <title>strings.ToLower (10 samples, 0.42%)</title><rect x="618.4" y="177" width="5.0" height="15.0" fill="rgb(224,114,39)" rx="2" ry="2" /> 6713 <text text-anchor="" x="621.41" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6714 </g> 6715 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6716 <title>runtime.newMarkBits (1 samples, 0.04%)</title><rect x="715.4" y="241" width="0.5" height="15.0" fill="rgb(207,81,50)" rx="2" ry="2" /> 6717 <text text-anchor="" x="718.41" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6718 </g> 6719 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6720 <title>runtime/internal/atomic.Xadd64 (1 samples, 0.04%)</title><rect x="1057.7" y="481" width="0.5" height="15.0" fill="rgb(219,135,50)" rx="2" ry="2" /> 6721 <text text-anchor="" x="1060.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6722 </g> 6723 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6724 <title>runtime.notewakeup (1 samples, 0.04%)</title><rect x="1137.8" y="465" width="0.5" height="15.0" fill="rgb(211,126,39)" rx="2" ry="2" /> 6725 <text text-anchor="" x="1140.77" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6726 </g> 6727 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6728 <title>runtime.(*mSpanList).insert (1 samples, 0.04%)</title><rect x="1166.6" y="417" width="0.5" height="15.0" fill="rgb(253,30,27)" rx="2" ry="2" /> 6729 <text text-anchor="" x="1169.62" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6730 </g> 6731 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6732 <title>runtime.(*mcache).refill (1 samples, 0.04%)</title><rect x="280.1" y="465" width="0.5" height="15.0" fill="rgb(228,122,52)" rx="2" ry="2" /> 6733 <text text-anchor="" x="283.13" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6734 </g> 6735 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6736 <title>net/url.unescape (1 samples, 0.04%)</title><rect x="804.5" y="385" width="0.5" height="15.0" fill="rgb(205,180,10)" rx="2" ry="2" /> 6737 <text text-anchor="" x="807.46" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6738 </g> 6739 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6740 <title>runtime.mapdelete (2 samples, 0.08%)</title><rect x="303.5" y="433" width="1.0" height="15.0" fill="rgb(248,8,45)" rx="2" ry="2" /> 6741 <text text-anchor="" x="306.51" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6742 </g> 6743 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6744 <title>net/url.ParseQuery (16 samples, 0.67%)</title><rect x="785.1" y="401" width="7.9" height="15.0" fill="rgb(216,87,21)" rx="2" ry="2" /> 6745 <text text-anchor="" x="788.06" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6746 </g> 6747 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6748 <title>encoding/json.stringEncoder (5 samples, 0.21%)</title><rect x="851.2" y="289" width="2.5" height="15.0" fill="rgb(217,193,49)" rx="2" ry="2" /> 6749 <text text-anchor="" x="854.22" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6750 </g> 6751 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6752 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*msgpackDecDriver).initReadNext (2 samples, 0.08%)</title><rect x="63.2" y="513" width="1.0" height="15.0" fill="rgb(250,14,22)" rx="2" ry="2" /> 6753 <text text-anchor="" x="66.23" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6754 </g> 6755 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6756 <title>encoding/json.typeEncoder (12 samples, 0.51%)</title><rect x="859.7" y="401" width="5.9" height="15.0" fill="rgb(253,150,52)" rx="2" ry="2" /> 6757 <text text-anchor="" x="862.68" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6758 </g> 6759 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6760 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="796.0" y="337" width="1.0" height="15.0" fill="rgb(206,225,3)" rx="2" ry="2" /> 6761 <text text-anchor="" x="799.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6762 </g> 6763 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6764 <title>strconv.formatBits (2 samples, 0.08%)</title><rect x="855.7" y="257" width="1.0" height="15.0" fill="rgb(207,185,29)" rx="2" ry="2" /> 6765 <text text-anchor="" x="858.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6766 </g> 6767 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6768 <title>strings.IndexAny (4 samples, 0.17%)</title><rect x="811.4" y="401" width="2.0" height="15.0" fill="rgb(230,70,52)" rx="2" ry="2" /> 6769 <text text-anchor="" x="814.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6770 </g> 6771 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6772 <title>bufio.(*Writer).Flush (2 samples, 0.08%)</title><rect x="64.7" y="465" width="1.0" height="15.0" fill="rgb(216,70,22)" rx="2" ry="2" /> 6773 <text text-anchor="" x="67.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6774 </g> 6775 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6776 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="1048.2" y="465" width="0.5" height="15.0" fill="rgb(214,74,18)" rx="2" ry="2" /> 6777 <text text-anchor="" x="1051.22" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6778 </g> 6779 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6780 <title>runtime.shade (1 samples, 0.04%)</title><rect x="954.7" y="321" width="0.5" height="15.0" fill="rgb(233,134,36)" rx="2" ry="2" /> 6781 <text text-anchor="" x="957.70" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6782 </g> 6783 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6784 <title>runtime.newarray (5 samples, 0.21%)</title><rect x="777.6" y="353" width="2.5" height="15.0" fill="rgb(215,127,37)" rx="2" ry="2" /> 6785 <text text-anchor="" x="780.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6786 </g> 6787 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6788 <title>time.absDate (1 samples, 0.04%)</title><rect x="934.8" y="385" width="0.5" height="15.0" fill="rgb(237,191,2)" rx="2" ry="2" /> 6789 <text text-anchor="" x="937.80" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6790 </g> 6791 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6792 <title>runtime.(*mheap).alloc.func1 (1 samples, 0.04%)</title><rect x="766.2" y="289" width="0.5" height="15.0" fill="rgb(254,142,54)" rx="2" ry="2" /> 6793 <text text-anchor="" x="769.16" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6794 </g> 6795 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6796 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge.func1 (3 samples, 0.13%)</title><rect x="645.3" y="145" width="1.5" height="15.0" fill="rgb(232,3,52)" rx="2" ry="2" /> 6797 <text text-anchor="" x="648.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6798 </g> 6799 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6800 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="275.6" y="529" width="0.5" height="15.0" fill="rgb(241,131,37)" rx="2" ry="2" /> 6801 <text text-anchor="" x="278.65" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6802 </g> 6803 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6804 <title>runtime.freedefer (1 samples, 0.04%)</title><rect x="953.7" y="385" width="0.5" height="15.0" fill="rgb(218,181,34)" rx="2" ry="2" /> 6805 <text text-anchor="" x="956.70" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6806 </g> 6807 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6808 <title>runtime.deferreturn (1 samples, 0.04%)</title><rect x="681.6" y="209" width="0.5" height="15.0" fill="rgb(237,145,28)" rx="2" ry="2" /> 6809 <text text-anchor="" x="684.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6810 </g> 6811 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6812 <title>net/url.unescape (2 samples, 0.08%)</title><rect x="872.6" y="401" width="1.0" height="15.0" fill="rgb(214,13,32)" rx="2" ry="2" /> 6813 <text text-anchor="" x="875.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6814 </g> 6815 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6816 <title>runtime.makeslice (6 samples, 0.25%)</title><rect x="960.2" y="417" width="3.0" height="15.0" fill="rgb(246,124,34)" rx="2" ry="2" /> 6817 <text text-anchor="" x="963.17" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6818 </g> 6819 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6820 <title>net/url.QueryUnescape (1 samples, 0.04%)</title><rect x="785.1" y="369" width="0.5" height="15.0" fill="rgb(246,191,17)" rx="2" ry="2" /> 6821 <text text-anchor="" x="788.06" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6822 </g> 6823 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6824 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="733.8" y="321" width="0.5" height="15.0" fill="rgb(230,67,4)" rx="2" ry="2" /> 6825 <text text-anchor="" x="736.82" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6826 </g> 6827 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6828 <title>runtime.assertE2T2 (1 samples, 0.04%)</title><rect x="640.3" y="193" width="0.5" height="15.0" fill="rgb(240,212,12)" rx="2" ry="2" /> 6829 <text text-anchor="" x="643.30" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6830 </g> 6831 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6832 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="1047.7" y="481" width="0.5" height="15.0" fill="rgb(217,25,16)" rx="2" ry="2" /> 6833 <text text-anchor="" x="1050.72" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6834 </g> 6835 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6836 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="61.7" y="529" width="0.5" height="15.0" fill="rgb(226,153,27)" rx="2" ry="2" /> 6837 <text text-anchor="" x="64.74" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6838 </g> 6839 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6840 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="734.8" y="305" width="0.5" height="15.0" fill="rgb(206,40,49)" rx="2" ry="2" /> 6841 <text text-anchor="" x="737.81" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6842 </g> 6843 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6844 <title>runtime.futexsleep (2 samples, 0.08%)</title><rect x="1139.3" y="529" width="1.0" height="15.0" fill="rgb(226,69,31)" rx="2" ry="2" /> 6845 <text text-anchor="" x="1142.26" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6846 </g> 6847 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6848 <title>net/http.(*response).Header (1 samples, 0.04%)</title><rect x="724.9" y="401" width="0.5" height="15.0" fill="rgb(241,20,32)" rx="2" ry="2" /> 6849 <text text-anchor="" x="727.87" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6850 </g> 6851 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6852 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="313.5" y="369" width="0.5" height="15.0" fill="rgb(244,222,46)" rx="2" ry="2" /> 6853 <text text-anchor="" x="316.46" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6854 </g> 6855 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6856 <title>runtime.sweepone (1 samples, 0.04%)</title><rect x="677.1" y="97" width="0.5" height="15.0" fill="rgb(221,139,14)" rx="2" ry="2" /> 6857 <text text-anchor="" x="680.11" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6858 </g> 6859 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6860 <title>runtime.gcMark (1 samples, 0.04%)</title><rect x="778.6" y="241" width="0.5" height="15.0" fill="rgb(214,159,52)" rx="2" ry="2" /> 6861 <text text-anchor="" x="781.59" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6862 </g> 6863 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6864 <title>runtime.(*mcache).refill (4 samples, 0.17%)</title><rect x="807.9" y="305" width="2.0" height="15.0" fill="rgb(245,23,31)" rx="2" ry="2" /> 6865 <text text-anchor="" x="810.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6866 </g> 6867 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6868 <title>runtime.mapiterinit (3 samples, 0.13%)</title><rect x="277.1" y="545" width="1.5" height="15.0" fill="rgb(216,39,0)" rx="2" ry="2" /> 6869 <text text-anchor="" x="280.14" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6870 </g> 6871 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6872 <title>sync.(*Mutex).Lock (1 samples, 0.04%)</title><rect x="574.1" y="353" width="0.5" height="15.0" fill="rgb(242,167,28)" rx="2" ry="2" /> 6873 <text text-anchor="" x="577.13" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6874 </g> 6875 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6876 <title>net.(*netFD).readMsg (1 samples, 0.04%)</title><rect x="59.2" y="449" width="0.5" height="15.0" fill="rgb(251,91,9)" rx="2" ry="2" /> 6877 <text text-anchor="" x="62.25" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6878 </g> 6879 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6880 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="265.7" y="481" width="0.5" height="15.0" fill="rgb(247,89,52)" rx="2" ry="2" /> 6881 <text text-anchor="" x="268.70" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6882 </g> 6883 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6884 <title>runtime.gentraceback (8 samples, 0.34%)</title><rect x="1167.6" y="401" width="4.0" height="15.0" fill="rgb(232,18,53)" rx="2" ry="2" /> 6885 <text text-anchor="" x="1170.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6886 </g> 6887 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6888 <title>runtime.markroot (1 samples, 0.04%)</title><rect x="1138.8" y="513" width="0.5" height="15.0" fill="rgb(221,143,0)" rx="2" ry="2" /> 6889 <text text-anchor="" x="1141.76" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6890 </g> 6891 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6892 <title>runtime.scang (1 samples, 0.04%)</title><rect x="1152.2" y="417" width="0.5" height="15.0" fill="rgb(239,65,4)" rx="2" ry="2" /> 6893 <text text-anchor="" x="1155.19" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6894 </g> 6895 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6896 <title>runtime.newarray (13 samples, 0.55%)</title><rect x="736.3" y="369" width="6.5" height="15.0" fill="rgb(235,136,11)" rx="2" ry="2" /> 6897 <text text-anchor="" x="739.31" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6898 </g> 6899 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6900 <title>runtime.scanobject (43 samples, 1.81%)</title><rect x="180.6" y="385" width="21.4" height="15.0" fill="rgb(219,217,29)" rx="2" ry="2" /> 6901 <text text-anchor="" x="183.63" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> 6902 </g> 6903 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6904 <title>runtime.mapiternext (1 samples, 0.04%)</title><rect x="278.6" y="545" width="0.5" height="15.0" fill="rgb(252,171,54)" rx="2" ry="2" /> 6905 <text text-anchor="" x="281.63" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6906 </g> 6907 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6908 <title>runtime.mapassign1 (7 samples, 0.30%)</title><rect x="797.5" y="369" width="3.5" height="15.0" fill="rgb(254,8,20)" rx="2" ry="2" /> 6909 <text text-anchor="" x="800.50" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6910 </g> 6911 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6912 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="639.8" y="225" width="0.5" height="15.0" fill="rgb(245,36,44)" rx="2" ry="2" /> 6913 <text text-anchor="" x="642.80" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6914 </g> 6915 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6916 <title>runtime.putfull (1 samples, 0.04%)</title><rect x="1060.7" y="513" width="0.5" height="15.0" fill="rgb(242,18,17)" rx="2" ry="2" /> 6917 <text text-anchor="" x="1063.66" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6918 </g> 6919 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6920 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="783.1" y="305" width="0.5" height="15.0" fill="rgb(206,11,46)" rx="2" ry="2" /> 6921 <text text-anchor="" x="786.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6922 </g> 6923 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6924 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="93.1" y="481" width="0.5" height="15.0" fill="rgb(229,169,32)" rx="2" ry="2" /> 6925 <text text-anchor="" x="96.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6926 </g> 6927 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6928 <title>net/http.(*chunkWriter).writeHeader.func1 (7 samples, 0.30%)</title><rect x="301.0" y="481" width="3.5" height="15.0" fill="rgb(208,180,54)" rx="2" ry="2" /> 6929 <text text-anchor="" x="304.02" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6930 </g> 6931 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6932 <title>runtime.unlock (1 samples, 0.04%)</title><rect x="1057.2" y="465" width="0.5" height="15.0" fill="rgb(215,159,7)" rx="2" ry="2" /> 6933 <text text-anchor="" x="1060.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6934 </g> 6935 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6936 <title>runtime.scanstack (1 samples, 0.04%)</title><rect x="224.4" y="369" width="0.5" height="15.0" fill="rgb(251,63,4)" rx="2" ry="2" /> 6937 <text text-anchor="" x="227.41" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6938 </g> 6939 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6940 <title>runtime.(*mcache).refill (4 samples, 0.17%)</title><rect x="878.6" y="321" width="2.0" height="15.0" fill="rgb(251,73,13)" rx="2" ry="2" /> 6941 <text text-anchor="" x="881.58" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6942 </g> 6943 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6944 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="313.5" y="433" width="0.5" height="15.0" fill="rgb(224,145,32)" rx="2" ry="2" /> 6945 <text text-anchor="" x="316.46" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6946 </g> 6947 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6948 <title>runtime.(*mcache).nextFree.func1 (2 samples, 0.08%)</title><rect x="270.2" y="465" width="1.0" height="15.0" fill="rgb(230,120,17)" rx="2" ry="2" /> 6949 <text text-anchor="" x="273.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6950 </g> 6951 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6952 <title>sync.(*Mutex).Unlock (2 samples, 0.08%)</title><rect x="75.7" y="545" width="1.0" height="15.0" fill="rgb(218,77,5)" rx="2" ry="2" /> 6953 <text text-anchor="" x="78.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6954 </g> 6955 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6956 <title>net/http.Header.Set (18 samples, 0.76%)</title><rect x="725.4" y="401" width="8.9" height="15.0" fill="rgb(231,167,31)" rx="2" ry="2" /> 6957 <text text-anchor="" x="728.36" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6958 </g> 6959 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6960 <title>runtime.sweepone (1 samples, 0.04%)</title><rect x="703.0" y="321" width="0.5" height="15.0" fill="rgb(221,34,22)" rx="2" ry="2" /> 6961 <text text-anchor="" x="705.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6962 </g> 6963 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6964 <title>runtime.(*mcache).nextFree.func1 (4 samples, 0.17%)</title><rect x="1005.4" y="369" width="2.0" height="15.0" fill="rgb(225,34,36)" rx="2" ry="2" /> 6965 <text text-anchor="" x="1008.44" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6966 </g> 6967 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6968 <title>github.com/hashicorp/consul/consul.(*inmemCodec).ReadRequestBody (14 samples, 0.59%)</title><rect x="532.8" y="369" width="7.0" height="15.0" fill="rgb(246,212,47)" rx="2" ry="2" /> 6969 <text text-anchor="" x="535.84" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6970 </g> 6971 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6972 <title>runtime.newMarkBits (1 samples, 0.04%)</title><rect x="703.0" y="289" width="0.5" height="15.0" fill="rgb(242,165,51)" rx="2" ry="2" /> 6973 <text text-anchor="" x="705.98" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6974 </g> 6975 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6976 <title>runtime.mapassign1 (8 samples, 0.34%)</title><rect x="1003.9" y="449" width="4.0" height="15.0" fill="rgb(240,151,22)" rx="2" ry="2" /> 6977 <text text-anchor="" x="1006.95" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6978 </g> 6979 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6980 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="538.8" y="305" width="0.5" height="15.0" fill="rgb(233,68,34)" rx="2" ry="2" /> 6981 <text text-anchor="" x="541.81" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6982 </g> 6983 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6984 <title>strings.Map (2 samples, 0.08%)</title><rect x="264.2" y="481" width="1.0" height="15.0" fill="rgb(234,3,12)" rx="2" ry="2" /> 6985 <text text-anchor="" x="267.21" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6986 </g> 6987 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6988 <title>strings.ToLower (5 samples, 0.21%)</title><rect x="262.7" y="497" width="2.5" height="15.0" fill="rgb(241,140,50)" rx="2" ry="2" /> 6989 <text text-anchor="" x="265.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6990 </g> 6991 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6992 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="1046.7" y="481" width="0.5" height="15.0" fill="rgb(211,216,47)" rx="2" ry="2" /> 6993 <text text-anchor="" x="1049.73" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6994 </g> 6995 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 6996 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="326.4" y="369" width="0.5" height="15.0" fill="rgb(245,26,16)" rx="2" ry="2" /> 6997 <text text-anchor="" x="329.39" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 6998 </g> 6999 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7000 <title>runtime.mapdelete (6 samples, 0.25%)</title><rect x="71.2" y="513" width="3.0" height="15.0" fill="rgb(239,177,15)" rx="2" ry="2" /> 7001 <text text-anchor="" x="74.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7002 </g> 7003 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7004 <title>runtime.mallocgc (5 samples, 0.21%)</title><rect x="731.3" y="353" width="2.5" height="15.0" fill="rgb(242,60,21)" rx="2" ry="2" /> 7005 <text text-anchor="" x="734.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7006 </g> 7007 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7008 <title>runtime.deferproc (2 samples, 0.08%)</title><rect x="680.6" y="209" width="1.0" height="15.0" fill="rgb(219,143,13)" rx="2" ry="2" /> 7009 <text text-anchor="" x="683.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7010 </g> 7011 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7012 <title>runtime.pcdatavalue (1 samples, 0.04%)</title><rect x="1170.6" y="353" width="0.5" height="15.0" fill="rgb(221,57,54)" rx="2" ry="2" /> 7013 <text text-anchor="" x="1173.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7014 </g> 7015 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7016 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="75.2" y="529" width="0.5" height="15.0" fill="rgb(242,226,27)" rx="2" ry="2" /> 7017 <text text-anchor="" x="78.17" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7018 </g> 7019 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7020 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="639.8" y="177" width="0.5" height="15.0" fill="rgb(212,215,23)" rx="2" ry="2" /> 7021 <text text-anchor="" x="642.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7022 </g> 7023 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7024 <title>runtime.gosweepone.func1 (1 samples, 0.04%)</title><rect x="703.0" y="337" width="0.5" height="15.0" fill="rgb(237,206,12)" rx="2" ry="2" /> 7025 <text text-anchor="" x="705.98" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7026 </g> 7027 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7028 <title>runtime.newobject (7 samples, 0.30%)</title><rect x="657.2" y="241" width="3.5" height="15.0" fill="rgb(225,213,45)" rx="2" ry="2" /> 7029 <text text-anchor="" x="660.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7030 </g> 7031 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7032 <title>runtime.gcAssistAlloc.func1 (2 samples, 0.08%)</title><rect x="224.9" y="433" width="1.0" height="15.0" fill="rgb(233,115,50)" rx="2" ry="2" /> 7033 <text text-anchor="" x="227.91" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7034 </g> 7035 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7036 <title>runtime.pcdatavalue (18 samples, 0.76%)</title><rect x="1084.0" y="417" width="9.0" height="15.0" fill="rgb(235,120,8)" rx="2" ry="2" /> 7037 <text text-anchor="" x="1087.04" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7038 </g> 7039 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7040 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="271.2" y="465" width="0.5" height="15.0" fill="rgb(211,111,1)" rx="2" ry="2" /> 7041 <text text-anchor="" x="274.17" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7042 </g> 7043 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7044 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="792.5" y="337" width="0.5" height="15.0" fill="rgb(247,134,43)" rx="2" ry="2" /> 7045 <text text-anchor="" x="795.52" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7046 </g> 7047 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7048 <title>runtime.memclr (2 samples, 0.08%)</title><rect x="962.2" y="385" width="1.0" height="15.0" fill="rgb(216,69,14)" rx="2" ry="2" /> 7049 <text text-anchor="" x="965.16" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7050 </g> 7051 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7052 <title>runtime.systemstack (21 samples, 0.89%)</title><rect x="1050.2" y="545" width="10.5" height="15.0" fill="rgb(222,23,50)" rx="2" ry="2" /> 7053 <text text-anchor="" x="1053.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7054 </g> 7055 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7056 <title>runtime.growslice (7 samples, 0.30%)</title><rect x="873.6" y="417" width="3.5" height="15.0" fill="rgb(251,117,32)" rx="2" ry="2" /> 7057 <text text-anchor="" x="876.61" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7058 </g> 7059 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7060 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="749.2" y="385" width="0.5" height="15.0" fill="rgb(218,192,8)" rx="2" ry="2" /> 7061 <text text-anchor="" x="752.24" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7062 </g> 7063 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7064 <title>runtime.gchelper (10 samples, 0.42%)</title><rect x="1166.6" y="513" width="5.0" height="15.0" fill="rgb(238,21,1)" rx="2" ry="2" /> 7065 <text text-anchor="" x="1169.62" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7066 </g> 7067 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7068 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="703.0" y="369" width="0.5" height="15.0" fill="rgb(207,41,4)" rx="2" ry="2" /> 7069 <text text-anchor="" x="705.98" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7070 </g> 7071 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7072 <title>runtime.getitab (4 samples, 0.17%)</title><rect x="896.5" y="369" width="2.0" height="15.0" fill="rgb(209,203,33)" rx="2" ry="2" /> 7073 <text text-anchor="" x="899.49" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7074 </g> 7075 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7076 <title>syscall.Syscall (2 samples, 0.08%)</title><rect x="64.7" y="369" width="1.0" height="15.0" fill="rgb(231,31,18)" rx="2" ry="2" /> 7077 <text text-anchor="" x="67.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7078 </g> 7079 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7080 <title>runtime.gcmarkwb_m (6 samples, 0.25%)</title><rect x="508.0" y="401" width="3.0" height="15.0" fill="rgb(209,114,42)" rx="2" ry="2" /> 7081 <text text-anchor="" x="510.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7082 </g> 7083 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7084 <title>runtime.scanobject (3 samples, 0.13%)</title><rect x="909.4" y="273" width="1.5" height="15.0" fill="rgb(215,123,53)" rx="2" ry="2" /> 7085 <text text-anchor="" x="912.43" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7086 </g> 7087 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7088 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="904.5" y="353" width="0.4" height="15.0" fill="rgb(212,36,41)" rx="2" ry="2" /> 7089 <text text-anchor="" x="907.45" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7090 </g> 7091 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7092 <title>runtime.findfunc (1 samples, 0.04%)</title><rect x="883.1" y="273" width="0.5" height="15.0" fill="rgb(249,201,27)" rx="2" ry="2" /> 7093 <text text-anchor="" x="886.06" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7094 </g> 7095 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7096 <title>runtime.mapaccess1_faststr (6 samples, 0.25%)</title><rect x="218.4" y="497" width="3.0" height="15.0" fill="rgb(213,20,21)" rx="2" ry="2" /> 7097 <text text-anchor="" x="221.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7098 </g> 7099 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7100 <title>bufio.(*Reader).ReadSlice (93 samples, 3.92%)</title><rect x="127.9" y="481" width="46.3" height="15.0" fill="rgb(236,78,39)" rx="2" ry="2" /> 7101 <text text-anchor="" x="130.90" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufi..</text> 7102 </g> 7103 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7104 <title>runtime.duffzero (1 samples, 0.04%)</title><rect x="456.7" y="529" width="0.5" height="15.0" fill="rgb(228,185,37)" rx="2" ry="2" /> 7105 <text text-anchor="" x="459.73" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7106 </g> 7107 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7108 <title>runtime.growslice (4 samples, 0.17%)</title><rect x="759.7" y="369" width="2.0" height="15.0" fill="rgb(228,213,6)" rx="2" ry="2" /> 7109 <text text-anchor="" x="762.69" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7110 </g> 7111 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7112 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).getInterval (10 samples, 0.42%)</title><rect x="1028.3" y="449" width="5.0" height="15.0" fill="rgb(229,126,4)" rx="2" ry="2" /> 7113 <text text-anchor="" x="1031.32" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7114 </g> 7115 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7116 <title>runtime.newdefer (1 samples, 0.04%)</title><rect x="866.1" y="385" width="0.5" height="15.0" fill="rgb(224,82,26)" rx="2" ry="2" /> 7117 <text text-anchor="" x="869.15" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7118 </g> 7119 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7120 <title>runtime.handoff (1 samples, 0.04%)</title><rect x="1043.7" y="353" width="0.5" height="15.0" fill="rgb(250,135,51)" rx="2" ry="2" /> 7121 <text text-anchor="" x="1046.74" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7122 </g> 7123 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7124 <title>net/url.shouldEscape (2 samples, 0.08%)</title><rect x="988.5" y="433" width="1.0" height="15.0" fill="rgb(208,78,18)" rx="2" ry="2" /> 7125 <text text-anchor="" x="991.52" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7126 </g> 7127 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7128 <title>runtime.rawstringtmp (2 samples, 0.08%)</title><rect x="1025.3" y="401" width="1.0" height="15.0" fill="rgb(208,161,38)" rx="2" ry="2" /> 7129 <text text-anchor="" x="1028.34" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7130 </g> 7131 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7132 <title>runtime.heapBitsSetType (3 samples, 0.13%)</title><rect x="715.9" y="321" width="1.5" height="15.0" fill="rgb(211,229,53)" rx="2" ry="2" /> 7133 <text text-anchor="" x="718.91" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7134 </g> 7135 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7136 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="904.5" y="337" width="0.4" height="15.0" fill="rgb(224,104,52)" rx="2" ry="2" /> 7137 <text text-anchor="" x="907.45" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7138 </g> 7139 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7140 <title>runtime.gchelper (2 samples, 0.08%)</title><rect x="1182.0" y="481" width="1.0" height="15.0" fill="rgb(213,74,46)" rx="2" ry="2" /> 7141 <text text-anchor="" x="1185.04" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7142 </g> 7143 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7144 <title>runtime.sweepone (1 samples, 0.04%)</title><rect x="104.5" y="417" width="0.5" height="15.0" fill="rgb(234,70,43)" rx="2" ry="2" /> 7145 <text text-anchor="" x="107.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7146 </g> 7147 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7148 <title>runtime.memclr (2 samples, 0.08%)</title><rect x="807.9" y="241" width="1.0" height="15.0" fill="rgb(230,62,48)" rx="2" ry="2" /> 7149 <text text-anchor="" x="810.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7150 </g> 7151 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7152 <title>runtime.slicebytetostring (57 samples, 2.40%)</title><rect x="174.2" y="513" width="28.3" height="15.0" fill="rgb(218,209,21)" rx="2" ry="2" /> 7153 <text text-anchor="" x="177.17" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 7154 </g> 7155 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7156 <title>runtime.gcMarkTermination (1 samples, 0.04%)</title><rect x="638.3" y="145" width="0.5" height="15.0" fill="rgb(239,122,14)" rx="2" ry="2" /> 7157 <text text-anchor="" x="641.31" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7158 </g> 7159 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7160 <title>runtime.convT2E (4 samples, 0.17%)</title><rect x="649.2" y="241" width="2.0" height="15.0" fill="rgb(226,184,14)" rx="2" ry="2" /> 7161 <text text-anchor="" x="652.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7162 </g> 7163 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7164 <title>runtime.typedslicecopy (3 samples, 0.13%)</title><rect x="973.6" y="417" width="1.5" height="15.0" fill="rgb(221,64,22)" rx="2" ry="2" /> 7165 <text text-anchor="" x="976.60" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7166 </g> 7167 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7168 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*AggregateSample).Ingest (1 samples, 0.04%)</title><rect x="1022.4" y="449" width="0.4" height="15.0" fill="rgb(230,55,11)" rx="2" ry="2" /> 7169 <text text-anchor="" x="1025.35" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7170 </g> 7171 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7172 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="922.4" y="353" width="0.5" height="15.0" fill="rgb(217,154,8)" rx="2" ry="2" /> 7173 <text text-anchor="" x="925.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7174 </g> 7175 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7176 <title>runtime/internal/atomic.Xadd64 (1 samples, 0.04%)</title><rect x="673.6" y="129" width="0.5" height="15.0" fill="rgb(228,78,5)" rx="2" ry="2" /> 7177 <text text-anchor="" x="676.63" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7178 </g> 7179 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7180 <title>net/url.unescape (1 samples, 0.04%)</title><rect x="785.1" y="353" width="0.5" height="15.0" fill="rgb(236,186,15)" rx="2" ry="2" /> 7181 <text text-anchor="" x="788.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7182 </g> 7183 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7184 <title>runtime.mallocgc (5 samples, 0.21%)</title><rect x="92.1" y="513" width="2.5" height="15.0" fill="rgb(218,32,17)" rx="2" ry="2" /> 7185 <text text-anchor="" x="95.08" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7186 </g> 7187 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7188 <title>runtime.getfull (1 samples, 0.04%)</title><rect x="259.2" y="337" width="0.5" height="15.0" fill="rgb(206,78,26)" rx="2" ry="2" /> 7189 <text text-anchor="" x="262.23" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7190 </g> 7191 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7192 <title>runtime.concatstrings (2 samples, 0.08%)</title><rect x="640.8" y="177" width="1.0" height="15.0" fill="rgb(231,78,20)" rx="2" ry="2" /> 7193 <text text-anchor="" x="643.79" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7194 </g> 7195 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7196 <title>runtime.mapaccess1_faststr (1 samples, 0.04%)</title><rect x="98.1" y="529" width="0.4" height="15.0" fill="rgb(224,53,9)" rx="2" ry="2" /> 7197 <text text-anchor="" x="101.05" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7198 </g> 7199 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7200 <title>reflect.flag.mustBeExported (2 samples, 0.08%)</title><rect x="537.8" y="337" width="1.0" height="15.0" fill="rgb(225,159,21)" rx="2" ry="2" /> 7201 <text text-anchor="" x="540.82" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7202 </g> 7203 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7204 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="61.7" y="465" width="0.5" height="15.0" fill="rgb(234,165,36)" rx="2" ry="2" /> 7205 <text text-anchor="" x="64.74" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7206 </g> 7207 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7208 <title>reflect.Value.call (242 samples, 10.20%)</title><rect x="576.1" y="353" width="120.4" height="15.0" fill="rgb(254,47,53)" rx="2" ry="2" /> 7209 <text text-anchor="" x="579.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >reflect.Value.c..</text> 7210 </g> 7211 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7212 <title>runtime.gentraceback (2 samples, 0.08%)</title><rect x="1179.1" y="545" width="1.0" height="15.0" fill="rgb(241,179,44)" rx="2" ry="2" /> 7213 <text text-anchor="" x="1182.06" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7214 </g> 7215 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7216 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="998.0" y="385" width="0.5" height="15.0" fill="rgb(224,147,51)" rx="2" ry="2" /> 7217 <text text-anchor="" x="1000.98" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7218 </g> 7219 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7220 <title>time.Time.Truncate (1 samples, 0.04%)</title><rect x="682.1" y="225" width="0.5" height="15.0" fill="rgb(251,88,2)" rx="2" ry="2" /> 7221 <text text-anchor="" x="685.08" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7222 </g> 7223 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7224 <title>net/http.appendTime (6 samples, 0.25%)</title><rect x="326.9" y="481" width="3.0" height="15.0" fill="rgb(242,158,24)" rx="2" ry="2" /> 7225 <text text-anchor="" x="329.89" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7226 </g> 7227 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7228 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="904.0" y="337" width="0.5" height="15.0" fill="rgb(248,57,1)" rx="2" ry="2" /> 7229 <text text-anchor="" x="906.95" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7230 </g> 7231 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7232 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="748.7" y="401" width="1.0" height="15.0" fill="rgb(232,3,18)" rx="2" ry="2" /> 7233 <text text-anchor="" x="751.74" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7234 </g> 7235 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7236 <title>runtime.unlock (1 samples, 0.04%)</title><rect x="740.8" y="273" width="0.5" height="15.0" fill="rgb(230,32,24)" rx="2" ry="2" /> 7237 <text text-anchor="" x="743.78" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7238 </g> 7239 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7240 <title>runtime.scanframeworker (1 samples, 0.04%)</title><rect x="1152.2" y="353" width="0.5" height="15.0" fill="rgb(249,76,25)" rx="2" ry="2" /> 7241 <text text-anchor="" x="1155.19" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7242 </g> 7243 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7244 <title>sync/atomic.AddUint32 (1 samples, 0.04%)</title><rect x="511.9" y="481" width="0.5" height="15.0" fill="rgb(207,50,3)" rx="2" ry="2" /> 7245 <text text-anchor="" x="514.95" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7246 </g> 7247 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7248 <title>runtime.scanobject (2 samples, 0.08%)</title><rect x="1025.3" y="289" width="1.0" height="15.0" fill="rgb(217,101,14)" rx="2" ry="2" /> 7249 <text text-anchor="" x="1028.34" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7250 </g> 7251 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7252 <title>reflect.Value.Interface (3 samples, 0.13%)</title><rect x="697.0" y="369" width="1.5" height="15.0" fill="rgb(217,124,52)" rx="2" ry="2" /> 7253 <text text-anchor="" x="700.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7254 </g> 7255 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7256 <title>runtime.(*mheap).alloc.func1 (1 samples, 0.04%)</title><rect x="740.8" y="305" width="0.5" height="15.0" fill="rgb(222,32,24)" rx="2" ry="2" /> 7257 <text text-anchor="" x="743.78" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7258 </g> 7259 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7260 <title>runtime.(*gcWork).balance (1 samples, 0.04%)</title><rect x="1043.7" y="369" width="0.5" height="15.0" fill="rgb(237,46,39)" rx="2" ry="2" /> 7261 <text text-anchor="" x="1046.74" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7262 </g> 7263 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7264 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).marshalJSON (137 samples, 5.78%)</title><rect x="819.4" y="481" width="68.1" height="15.0" fill="rgb(247,133,44)" rx="2" ry="2" /> 7265 <text text-anchor="" x="822.38" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> 7266 </g> 7267 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7268 <title>runtime.mapaccess2_faststr (5 samples, 0.21%)</title><rect x="750.7" y="433" width="2.5" height="15.0" fill="rgb(236,74,36)" rx="2" ry="2" /> 7269 <text text-anchor="" x="753.73" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7270 </g> 7271 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7272 <title>runtime.mapaccess2_faststr (8 samples, 0.34%)</title><rect x="623.4" y="193" width="4.0" height="15.0" fill="rgb(216,4,8)" rx="2" ry="2" /> 7273 <text text-anchor="" x="626.38" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7274 </g> 7275 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7276 <title>encoding/json.(*structEncoder).(encoding/json.encode)-fm (56 samples, 2.36%)</title><rect x="829.3" y="321" width="27.9" height="15.0" fill="rgb(205,157,30)" rx="2" ry="2" /> 7277 <text text-anchor="" x="832.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text> 7278 </g> 7279 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7280 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="686.6" y="161" width="0.5" height="15.0" fill="rgb(223,78,6)" rx="2" ry="2" /> 7281 <text text-anchor="" x="689.56" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7282 </g> 7283 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7284 <title>runtime.gcAssistAlloc (5 samples, 0.21%)</title><rect x="105.0" y="497" width="2.5" height="15.0" fill="rgb(233,110,34)" rx="2" ry="2" /> 7285 <text text-anchor="" x="108.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7286 </g> 7287 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7288 <title>reflect.(*rtype).Kind (1 samples, 0.04%)</title><rect x="555.7" y="369" width="0.5" height="15.0" fill="rgb(223,195,0)" rx="2" ry="2" /> 7289 <text text-anchor="" x="558.73" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7290 </g> 7291 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7292 <title>fmt.(*pp).handleMethods (15 samples, 0.63%)</title><rect x="896.5" y="401" width="7.5" height="15.0" fill="rgb(219,121,3)" rx="2" ry="2" /> 7293 <text text-anchor="" x="899.49" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7294 </g> 7295 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7296 <title>runtime.gcstopm (3 samples, 0.13%)</title><rect x="1182.0" y="513" width="1.5" height="15.0" fill="rgb(235,67,15)" rx="2" ry="2" /> 7297 <text text-anchor="" x="1185.04" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7298 </g> 7299 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7300 <title>runtime.mallocgc (4 samples, 0.17%)</title><rect x="991.0" y="449" width="2.0" height="15.0" fill="rgb(239,220,21)" rx="2" ry="2" /> 7301 <text text-anchor="" x="994.01" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7302 </g> 7303 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7304 <title>net/http.(*headerSorter).Less (3 samples, 0.13%)</title><rect x="318.4" y="401" width="1.5" height="15.0" fill="rgb(243,114,51)" rx="2" ry="2" /> 7305 <text text-anchor="" x="321.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7306 </g> 7307 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7308 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="686.6" y="193" width="0.5" height="15.0" fill="rgb(213,30,12)" rx="2" ry="2" /> 7309 <text text-anchor="" x="689.56" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7310 </g> 7311 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7312 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="326.4" y="433" width="0.5" height="15.0" fill="rgb(218,21,44)" rx="2" ry="2" /> 7313 <text text-anchor="" x="329.39" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7314 </g> 7315 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7316 <title>runtime.scanstack (8 samples, 0.34%)</title><rect x="1167.6" y="417" width="4.0" height="15.0" fill="rgb(247,64,51)" rx="2" ry="2" /> 7317 <text text-anchor="" x="1170.61" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7318 </g> 7319 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7320 <title>runtime.(*mcache).refill (4 samples, 0.17%)</title><rect x="1005.4" y="353" width="2.0" height="15.0" fill="rgb(211,96,0)" rx="2" ry="2" /> 7321 <text text-anchor="" x="1008.44" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7322 </g> 7323 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7324 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="635.8" y="193" width="0.5" height="15.0" fill="rgb(223,138,30)" rx="2" ry="2" /> 7325 <text text-anchor="" x="638.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7326 </g> 7327 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7328 <title>runtime/internal/atomic.Cas (1 samples, 0.04%)</title><rect x="1143.7" y="545" width="0.5" height="15.0" fill="rgb(207,224,29)" rx="2" ry="2" /> 7329 <text text-anchor="" x="1146.74" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7330 </g> 7331 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7332 <title>net/rpc.(*Server).getResponse (4 samples, 0.17%)</title><rect x="572.1" y="353" width="2.0" height="15.0" fill="rgb(246,95,19)" rx="2" ry="2" /> 7333 <text text-anchor="" x="575.14" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7334 </g> 7335 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7336 <title>runtime.findfunc (2 samples, 0.08%)</title><rect x="1074.6" y="449" width="1.0" height="15.0" fill="rgb(219,70,14)" rx="2" ry="2" /> 7337 <text text-anchor="" x="1077.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7338 </g> 7339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7340 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="778.6" y="321" width="0.5" height="15.0" fill="rgb(235,30,47)" rx="2" ry="2" /> 7341 <text text-anchor="" x="781.59" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7342 </g> 7343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7344 <title>runtime.usleep (1 samples, 0.04%)</title><rect x="259.2" y="321" width="0.5" height="15.0" fill="rgb(237,128,11)" rx="2" ry="2" /> 7345 <text text-anchor="" x="262.23" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7346 </g> 7347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7348 <title>sync/atomic.CompareAndSwapUint32 (1 samples, 0.04%)</title><rect x="112.0" y="465" width="0.5" height="15.0" fill="rgb(212,95,47)" rx="2" ry="2" /> 7349 <text text-anchor="" x="114.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7350 </g> 7351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7352 <title>runtime/internal/atomic.Cas (1 samples, 0.04%)</title><rect x="450.8" y="385" width="0.5" height="15.0" fill="rgb(227,172,54)" rx="2" ry="2" /> 7353 <text text-anchor="" x="453.76" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7354 </g> 7355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7356 <title>runtime.duffzero (2 samples, 0.08%)</title><rect x="989.5" y="465" width="1.0" height="15.0" fill="rgb(240,178,0)" rx="2" ry="2" /> 7357 <text text-anchor="" x="992.52" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7358 </g> 7359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7360 <title>runtime.(*mcache).nextFree.func1 (1 samples, 0.04%)</title><rect x="747.7" y="321" width="0.5" height="15.0" fill="rgb(222,62,4)" rx="2" ry="2" /> 7361 <text text-anchor="" x="750.75" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7362 </g> 7363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7364 <title>bytes.makeSlice (3 samples, 0.13%)</title><rect x="838.8" y="241" width="1.5" height="15.0" fill="rgb(236,137,4)" rx="2" ry="2" /> 7365 <text text-anchor="" x="841.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7366 </g> 7367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7368 <title>reflect.(*rtype).NumIn (2 samples, 0.08%)</title><rect x="584.1" y="337" width="1.0" height="15.0" fill="rgb(228,229,6)" rx="2" ry="2" /> 7369 <text text-anchor="" x="587.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7370 </g> 7371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7372 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="652.2" y="209" width="0.5" height="15.0" fill="rgb(228,119,48)" rx="2" ry="2" /> 7373 <text text-anchor="" x="655.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7374 </g> 7375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7376 <title>github.com/hashicorp/consul/command/agent.(*HTTPServer).parseDC (28 samples, 1.18%)</title><rect x="757.2" y="433" width="13.9" height="15.0" fill="rgb(232,159,43)" rx="2" ry="2" /> 7377 <text text-anchor="" x="760.20" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7378 </g> 7379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7380 <title>runtime.scanstack (1 samples, 0.04%)</title><rect x="1137.3" y="481" width="0.5" height="15.0" fill="rgb(223,88,9)" rx="2" ry="2" /> 7381 <text text-anchor="" x="1140.27" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7382 </g> 7383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7384 <title>runtime.schedule (69 samples, 2.91%)</title><rect x="1144.7" y="561" width="34.4" height="15.0" fill="rgb(224,141,9)" rx="2" ry="2" /> 7385 <text text-anchor="" x="1147.73" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> 7386 </g> 7387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7388 <title>runtime.gcMark (1 samples, 0.04%)</title><rect x="259.2" y="385" width="0.5" height="15.0" fill="rgb(205,80,6)" rx="2" ry="2" /> 7389 <text text-anchor="" x="262.23" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7390 </g> 7391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7392 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="904.5" y="385" width="0.4" height="15.0" fill="rgb(253,108,8)" rx="2" ry="2" /> 7393 <text text-anchor="" x="907.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7394 </g> 7395 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7396 <title>runtime.mapassign1 (13 samples, 0.55%)</title><rect x="711.4" y="369" width="6.5" height="15.0" fill="rgb(239,174,43)" rx="2" ry="2" /> 7397 <text text-anchor="" x="714.43" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7398 </g> 7399 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7400 <title>encoding/json.Marshal (96 samples, 4.05%)</title><rect x="820.9" y="465" width="47.7" height="15.0" fill="rgb(248,172,49)" rx="2" ry="2" /> 7401 <text text-anchor="" x="823.88" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >enco..</text> 7402 </g> 7403 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7404 <title>runtime.(*mcache).nextFree (1 samples, 0.04%)</title><rect x="1011.9" y="417" width="0.5" height="15.0" fill="rgb(215,224,54)" rx="2" ry="2" /> 7405 <text text-anchor="" x="1014.91" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7406 </g> 7407 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7408 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).IncrCounter (30 samples, 1.26%)</title><rect x="667.7" y="257" width="14.9" height="15.0" fill="rgb(222,169,30)" rx="2" ry="2" /> 7409 <text text-anchor="" x="670.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7410 </g> 7411 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7412 <title>runtime.freedefer (1 samples, 0.04%)</title><rect x="936.3" y="385" width="0.5" height="15.0" fill="rgb(207,173,42)" rx="2" ry="2" /> 7413 <text text-anchor="" x="939.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7414 </g> 7415 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7416 <title>runtime.newdefer (1 samples, 0.04%)</title><rect x="839.8" y="177" width="0.5" height="15.0" fill="rgb(212,54,44)" rx="2" ry="2" /> 7417 <text text-anchor="" x="842.78" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7418 </g> 7419 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7420 <title>net/textproto.canonicalMIMEHeaderKey (5 samples, 0.21%)</title><rect x="721.4" y="353" width="2.5" height="15.0" fill="rgb(216,7,40)" rx="2" ry="2" /> 7421 <text text-anchor="" x="724.38" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7422 </g> 7423 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7424 <title>runtime.(*mSpanList).insert (1 samples, 0.04%)</title><rect x="1181.5" y="385" width="0.5" height="15.0" fill="rgb(239,167,20)" rx="2" ry="2" /> 7425 <text text-anchor="" x="1184.54" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7426 </g> 7427 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7428 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).AddSample (36 samples, 1.52%)</title><rect x="1022.4" y="465" width="17.9" height="15.0" fill="rgb(245,35,52)" rx="2" ry="2" /> 7429 <text text-anchor="" x="1025.35" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7430 </g> 7431 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7432 <title>runtime.mprof_GC (1 samples, 0.04%)</title><rect x="734.8" y="193" width="0.5" height="15.0" fill="rgb(228,50,25)" rx="2" ry="2" /> 7433 <text text-anchor="" x="737.81" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7434 </g> 7435 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7436 <title>runtime.newMarkBits (1 samples, 0.04%)</title><rect x="270.2" y="385" width="0.5" height="15.0" fill="rgb(206,91,33)" rx="2" ry="2" /> 7437 <text text-anchor="" x="273.18" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7438 </g> 7439 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7440 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="660.7" y="209" width="0.5" height="15.0" fill="rgb(218,97,39)" rx="2" ry="2" /> 7441 <text text-anchor="" x="663.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7442 </g> 7443 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7444 <title>bytes.(*Buffer).WriteString (4 samples, 0.17%)</title><rect x="985.0" y="465" width="2.0" height="15.0" fill="rgb(217,228,6)" rx="2" ry="2" /> 7445 <text text-anchor="" x="988.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7446 </g> 7447 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7448 <title>vendor/golang_org/x/net/lex/httplex.ValidHeaderFieldValue (4 samples, 0.17%)</title><rect x="288.1" y="545" width="2.0" height="15.0" fill="rgb(249,22,52)" rx="2" ry="2" /> 7449 <text text-anchor="" x="291.09" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7450 </g> 7451 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7452 <title>strings.IndexAny (5 samples, 0.21%)</title><rect x="780.1" y="369" width="2.5" height="15.0" fill="rgb(209,215,38)" rx="2" ry="2" /> 7453 <text text-anchor="" x="783.08" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7454 </g> 7455 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7456 <title>runtime.markroot.func1 (1 samples, 0.04%)</title><rect x="1182.5" y="417" width="0.5" height="15.0" fill="rgb(215,150,14)" rx="2" ry="2" /> 7457 <text text-anchor="" x="1185.54" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7458 </g> 7459 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7460 <title>runtime.gcDrainN (1 samples, 0.04%)</title><rect x="686.6" y="177" width="0.5" height="15.0" fill="rgb(234,91,12)" rx="2" ry="2" /> 7461 <text text-anchor="" x="689.56" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7462 </g> 7463 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7464 <title>runtime.runqget (1 samples, 0.04%)</title><rect x="1143.2" y="529" width="0.5" height="15.0" fill="rgb(222,204,10)" rx="2" ry="2" /> 7465 <text text-anchor="" x="1146.24" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7466 </g> 7467 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7468 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="681.1" y="161" width="0.5" height="15.0" fill="rgb(242,31,36)" rx="2" ry="2" /> 7469 <text text-anchor="" x="684.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7470 </g> 7471 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7472 <title>runtime.heapBitsForObject (1 samples, 0.04%)</title><rect x="660.7" y="145" width="0.5" height="15.0" fill="rgb(214,60,40)" rx="2" ry="2" /> 7473 <text text-anchor="" x="663.69" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7474 </g> 7475 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7476 <title>runtime.typedmemmove (2 samples, 0.08%)</title><rect x="638.8" y="209" width="1.0" height="15.0" fill="rgb(240,53,12)" rx="2" ry="2" /> 7477 <text text-anchor="" x="641.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7478 </g> 7479 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7480 <title>sync/atomic.AddUint32 (2 samples, 0.08%)</title><rect x="75.7" y="529" width="1.0" height="15.0" fill="rgb(209,34,41)" rx="2" ry="2" /> 7481 <text text-anchor="" x="78.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7482 </g> 7483 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7484 <title>runtime.exitsyscall (1 samples, 0.04%)</title><rect x="173.7" y="353" width="0.5" height="15.0" fill="rgb(252,130,9)" rx="2" ry="2" /> 7485 <text text-anchor="" x="176.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7486 </g> 7487 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7488 <title>runtime.mstart1 (10 samples, 0.42%)</title><rect x="1184.5" y="577" width="5.0" height="15.0" fill="rgb(225,19,9)" rx="2" ry="2" /> 7489 <text text-anchor="" x="1187.53" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7490 </g> 7491 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7492 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="939.3" y="385" width="0.5" height="15.0" fill="rgb(228,79,19)" rx="2" ry="2" /> 7493 <text text-anchor="" x="942.27" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7494 </g> 7495 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7496 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="696.0" y="289" width="0.5" height="15.0" fill="rgb(248,3,25)" rx="2" ry="2" /> 7497 <text text-anchor="" x="699.01" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7498 </g> 7499 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7500 <title>runtime.lock (1 samples, 0.04%)</title><rect x="1135.3" y="529" width="0.5" height="15.0" fill="rgb(244,145,37)" rx="2" ry="2" /> 7501 <text text-anchor="" x="1138.28" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7502 </g> 7503 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7504 <title>runtime.(*workbuf).checkempty (1 samples, 0.04%)</title><rect x="1182.0" y="401" width="0.5" height="15.0" fill="rgb(232,52,16)" rx="2" ry="2" /> 7505 <text text-anchor="" x="1185.04" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7506 </g> 7507 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7508 <title>runtime.rawstringtmp (1 samples, 0.04%)</title><rect x="720.4" y="353" width="0.5" height="15.0" fill="rgb(249,60,51)" rx="2" ry="2" /> 7509 <text text-anchor="" x="723.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7510 </g> 7511 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7512 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="922.4" y="337" width="0.5" height="15.0" fill="rgb(230,199,41)" rx="2" ry="2" /> 7513 <text text-anchor="" x="925.36" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7514 </g> 7515 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7516 <title>runtime.deferreturn (3 samples, 0.13%)</title><rect x="935.3" y="433" width="1.5" height="15.0" fill="rgb(246,174,33)" rx="2" ry="2" /> 7517 <text text-anchor="" x="938.30" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7518 </g> 7519 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7520 <title>runtime.deferproc.func1 (1 samples, 0.04%)</title><rect x="75.2" y="513" width="0.5" height="15.0" fill="rgb(234,3,43)" rx="2" ry="2" /> 7521 <text text-anchor="" x="78.17" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7522 </g> 7523 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7524 <title>runtime.futex (1 samples, 0.04%)</title><rect x="1183.0" y="449" width="0.5" height="15.0" fill="rgb(222,170,8)" rx="2" ry="2" /> 7525 <text text-anchor="" x="1186.04" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7526 </g> 7527 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7528 <title>runtime.(*mheap).alloc (2 samples, 0.08%)</title><rect x="879.1" y="273" width="1.0" height="15.0" fill="rgb(230,89,41)" rx="2" ry="2" /> 7529 <text text-anchor="" x="882.08" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7530 </g> 7531 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7532 <title>net/textproto.(*Reader).ReadLine (152 samples, 6.41%)</title><rect x="126.9" y="529" width="75.6" height="15.0" fill="rgb(213,222,51)" rx="2" ry="2" /> 7533 <text text-anchor="" x="129.91" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/text..</text> 7534 </g> 7535 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7536 <title>runtime.aeshashbody (2 samples, 0.08%)</title><rect x="626.4" y="177" width="1.0" height="15.0" fill="rgb(241,211,38)" rx="2" ry="2" /> 7537 <text text-anchor="" x="629.37" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7538 </g> 7539 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7540 <title>strings.(*byteReplacer).Replace (4 samples, 0.17%)</title><rect x="323.9" y="449" width="2.0" height="15.0" fill="rgb(217,57,6)" rx="2" ry="2" /> 7541 <text text-anchor="" x="326.90" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7542 </g> 7543 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7544 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="271.2" y="433" width="0.5" height="15.0" fill="rgb(243,143,31)" rx="2" ry="2" /> 7545 <text text-anchor="" x="274.17" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7546 </g> 7547 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7548 <title>runtime/internal/atomic.Cas (2 samples, 0.08%)</title><rect x="1151.2" y="513" width="1.0" height="15.0" fill="rgb(216,141,26)" rx="2" ry="2" /> 7549 <text text-anchor="" x="1154.20" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7550 </g> 7551 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7552 <title>runtime.procyield (1 samples, 0.04%)</title><rect x="1153.7" y="481" width="0.5" height="15.0" fill="rgb(213,47,54)" rx="2" ry="2" /> 7553 <text text-anchor="" x="1156.68" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7554 </g> 7555 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7556 <title>fmt.newPrinter (9 samples, 0.38%)</title><rect x="908.4" y="433" width="4.5" height="15.0" fill="rgb(209,43,43)" rx="2" ry="2" /> 7557 <text text-anchor="" x="911.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7558 </g> 7559 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7560 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="792.5" y="369" width="0.5" height="15.0" fill="rgb(245,61,1)" rx="2" ry="2" /> 7561 <text text-anchor="" x="795.52" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7562 </g> 7563 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7564 <title>runtime.newobject (8 samples, 0.34%)</title><rect x="258.7" y="497" width="4.0" height="15.0" fill="rgb(229,83,19)" rx="2" ry="2" /> 7565 <text text-anchor="" x="261.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7566 </g> 7567 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7568 <title>runtime.gcMarkDone (1 samples, 0.04%)</title><rect x="778.6" y="305" width="0.5" height="15.0" fill="rgb(208,74,4)" rx="2" ry="2" /> 7569 <text text-anchor="" x="781.59" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7570 </g> 7571 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7572 <title>runtime.notewakeup (1 samples, 0.04%)</title><rect x="778.6" y="209" width="0.5" height="15.0" fill="rgb(248,29,30)" rx="2" ry="2" /> 7573 <text text-anchor="" x="781.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7574 </g> 7575 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7576 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*Raft).pipelineSend (2 samples, 0.08%)</title><rect x="64.7" y="513" width="1.0" height="15.0" fill="rgb(253,73,17)" rx="2" ry="2" /> 7577 <text text-anchor="" x="67.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7578 </g> 7579 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7580 <title>sync.(*RWMutex).RLock (1 samples, 0.04%)</title><rect x="511.9" y="497" width="0.5" height="15.0" fill="rgb(227,37,44)" rx="2" ry="2" /> 7581 <text text-anchor="" x="514.95" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7582 </g> 7583 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7584 <title>time.(*Location).get (1 samples, 0.04%)</title><rect x="934.3" y="369" width="0.5" height="15.0" fill="rgb(234,182,19)" rx="2" ry="2" /> 7585 <text text-anchor="" x="937.30" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7586 </g> 7587 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7588 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="722.4" y="289" width="1.0" height="15.0" fill="rgb(229,223,0)" rx="2" ry="2" /> 7589 <text text-anchor="" x="725.38" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7590 </g> 7591 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7592 <title>runtime.mallocgc (4 samples, 0.17%)</title><rect x="967.1" y="385" width="2.0" height="15.0" fill="rgb(247,225,30)" rx="2" ry="2" /> 7593 <text text-anchor="" x="970.13" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7594 </g> 7595 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7596 <title>reflect.memclr (1 samples, 0.04%)</title><rect x="593.5" y="337" width="0.5" height="15.0" fill="rgb(249,137,5)" rx="2" ry="2" /> 7597 <text text-anchor="" x="596.53" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7598 </g> 7599 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7600 <title>runtime/internal/atomic.Cas (1 samples, 0.04%)</title><rect x="638.3" y="81" width="0.5" height="15.0" fill="rgb(239,169,16)" rx="2" ry="2" /> 7601 <text text-anchor="" x="641.31" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7602 </g> 7603 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7604 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="561.7" y="305" width="0.5" height="15.0" fill="rgb(236,116,8)" rx="2" ry="2" /> 7605 <text text-anchor="" x="564.69" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7606 </g> 7607 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7608 <title>runtime.gentraceback (1 samples, 0.04%)</title><rect x="1137.3" y="465" width="0.5" height="15.0" fill="rgb(234,106,26)" rx="2" ry="2" /> 7609 <text text-anchor="" x="1140.27" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7610 </g> 7611 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7612 <title>runtime.(*mheap).alloc.func1 (1 samples, 0.04%)</title><rect x="104.5" y="465" width="0.5" height="15.0" fill="rgb(215,96,30)" rx="2" ry="2" /> 7613 <text text-anchor="" x="107.52" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7614 </g> 7615 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7616 <title>runtime/internal/atomic.Store (2 samples, 0.08%)</title><rect x="1152.7" y="497" width="1.0" height="15.0" fill="rgb(241,112,6)" rx="2" ry="2" /> 7617 <text text-anchor="" x="1155.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7618 </g> 7619 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7620 <title>runtime.(*mcache).nextFree.func1 (1 samples, 0.04%)</title><rect x="991.5" y="401" width="0.5" height="15.0" fill="rgb(223,214,12)" rx="2" ry="2" /> 7621 <text text-anchor="" x="994.51" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7622 </g> 7623 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7624 <title>runtime.(*mspan).countFree (1 samples, 0.04%)</title><rect x="1056.2" y="481" width="0.5" height="15.0" fill="rgb(208,35,51)" rx="2" ry="2" /> 7625 <text text-anchor="" x="1059.18" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7626 </g> 7627 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7628 <title>runtime.readgstatus (1 samples, 0.04%)</title><rect x="938.8" y="353" width="0.5" height="15.0" fill="rgb(241,138,39)" rx="2" ry="2" /> 7629 <text text-anchor="" x="941.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7630 </g> 7631 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7632 <title>bytes.(*Buffer).WriteByte (1 samples, 0.04%)</title><rect x="852.7" y="257" width="0.5" height="15.0" fill="rgb(230,33,37)" rx="2" ry="2" /> 7633 <text text-anchor="" x="855.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7634 </g> 7635 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7636 <title>runtime.mallocgc (6 samples, 0.25%)</title><rect x="763.7" y="337" width="3.0" height="15.0" fill="rgb(243,127,2)" rx="2" ry="2" /> 7637 <text text-anchor="" x="766.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7638 </g> 7639 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7640 <title>sync.runtime_procUnpin (1 samples, 0.04%)</title><rect x="907.9" y="401" width="0.5" height="15.0" fill="rgb(238,134,42)" rx="2" ry="2" /> 7641 <text text-anchor="" x="910.93" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7642 </g> 7643 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7644 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="1003.0" y="433" width="0.9" height="15.0" fill="rgb(220,21,13)" rx="2" ry="2" /> 7645 <text text-anchor="" x="1005.95" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7646 </g> 7647 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7648 <title>runtime.deferreturn.func1 (1 samples, 0.04%)</title><rect x="953.7" y="401" width="0.5" height="15.0" fill="rgb(239,109,44)" rx="2" ry="2" /> 7649 <text text-anchor="" x="956.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7650 </g> 7651 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7652 <title>github.com/hashicorp/consul/command/agent.setIndex (32 samples, 1.35%)</title><rect x="705.0" y="417" width="15.9" height="15.0" fill="rgb(218,227,32)" rx="2" ry="2" /> 7653 <text text-anchor="" x="707.97" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7654 </g> 7655 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7656 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="922.4" y="305" width="0.5" height="15.0" fill="rgb(215,174,48)" rx="2" ry="2" /> 7657 <text text-anchor="" x="925.36" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7658 </g> 7659 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7660 <title>runtime.(*mspan).sweep (1 samples, 0.04%)</title><rect x="280.6" y="449" width="0.5" height="15.0" fill="rgb(220,130,45)" rx="2" ry="2" /> 7661 <text text-anchor="" x="283.62" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7662 </g> 7663 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7664 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="639.3" y="193" width="0.5" height="15.0" fill="rgb(218,90,5)" rx="2" ry="2" /> 7665 <text text-anchor="" x="642.30" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7666 </g> 7667 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7668 <title>runtime.memhash (1 samples, 0.04%)</title><rect x="590.1" y="289" width="0.4" height="15.0" fill="rgb(222,186,34)" rx="2" ry="2" /> 7669 <text text-anchor="" x="593.05" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7670 </g> 7671 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7672 <title>runtime.shade (1 samples, 0.04%)</title><rect x="904.0" y="321" width="0.5" height="15.0" fill="rgb(249,32,9)" rx="2" ry="2" /> 7673 <text text-anchor="" x="906.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7674 </g> 7675 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7676 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*decFnInfo).kStruct (1 samples, 0.04%)</title><rect x="60.2" y="465" width="0.5" height="15.0" fill="rgb(222,25,1)" rx="2" ry="2" /> 7677 <text text-anchor="" x="63.24" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7678 </g> 7679 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7680 <title>sync.(*Pool).getSlow (2 samples, 0.08%)</title><rect x="111.5" y="497" width="1.0" height="15.0" fill="rgb(215,224,9)" rx="2" ry="2" /> 7681 <text text-anchor="" x="114.48" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7682 </g> 7683 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7684 <title>runtime.mapassign1 (13 samples, 0.55%)</title><rect x="736.3" y="385" width="6.5" height="15.0" fill="rgb(248,30,31)" rx="2" ry="2" /> 7685 <text text-anchor="" x="739.31" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7686 </g> 7687 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7688 <title>reflect.valueInterface (1 samples, 0.04%)</title><rect x="564.2" y="353" width="0.5" height="15.0" fill="rgb(226,201,43)" rx="2" ry="2" /> 7689 <text text-anchor="" x="567.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7690 </g> 7691 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7692 <title>runtime.notesleep (1 samples, 0.04%)</title><rect x="1175.6" y="513" width="0.5" height="15.0" fill="rgb(216,1,3)" rx="2" ry="2" /> 7693 <text text-anchor="" x="1178.57" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7694 </g> 7695 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7696 <title>runtime.semacquire (3 samples, 0.13%)</title><rect x="1036.8" y="401" width="1.5" height="15.0" fill="rgb(233,15,25)" rx="2" ry="2" /> 7697 <text text-anchor="" x="1039.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7698 </g> 7699 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7700 <title>log.(*Logger).Output (55 samples, 2.32%)</title><rect x="912.9" y="449" width="27.4" height="15.0" fill="rgb(221,221,42)" rx="2" ry="2" /> 7701 <text text-anchor="" x="915.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >l..</text> 7702 </g> 7703 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7704 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="881.6" y="257" width="0.5" height="15.0" fill="rgb(240,42,11)" rx="2" ry="2" /> 7705 <text text-anchor="" x="884.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7706 </g> 7707 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7708 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="954.7" y="353" width="0.5" height="15.0" fill="rgb(229,150,17)" rx="2" ry="2" /> 7709 <text text-anchor="" x="957.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7710 </g> 7711 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7712 <title>runtime.writebarrierptr_nostore1 (10 samples, 0.42%)</title><rect x="506.0" y="449" width="5.0" height="15.0" fill="rgb(244,180,39)" rx="2" ry="2" /> 7713 <text text-anchor="" x="508.98" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7714 </g> 7715 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7716 <title>sync.(*Mutex).Lock (2 samples, 0.08%)</title><rect x="103.5" y="529" width="1.0" height="15.0" fill="rgb(235,89,7)" rx="2" ry="2" /> 7717 <text text-anchor="" x="106.52" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7718 </g> 7719 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7720 <title>runtime.heapBitsBulkBarrier (1 samples, 0.04%)</title><rect x="946.2" y="433" width="0.5" height="15.0" fill="rgb(230,120,3)" rx="2" ry="2" /> 7721 <text text-anchor="" x="949.24" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7722 </g> 7723 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7724 <title>runtime.mapiternext (1 samples, 0.04%)</title><rect x="973.1" y="417" width="0.5" height="15.0" fill="rgb(231,57,3)" rx="2" ry="2" /> 7725 <text text-anchor="" x="976.10" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7726 </g> 7727 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7728 <title>time.sendTime (1 samples, 0.04%)</title><rect x="1138.3" y="561" width="0.5" height="15.0" fill="rgb(221,140,9)" rx="2" ry="2" /> 7729 <text text-anchor="" x="1141.26" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7730 </g> 7731 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7732 <title>runtime.makeslice (3 samples, 0.13%)</title><rect x="1023.3" y="417" width="1.5" height="15.0" fill="rgb(208,84,43)" rx="2" ry="2" /> 7733 <text text-anchor="" x="1026.35" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7734 </g> 7735 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7736 <title>runtime.systemstack (8 samples, 0.34%)</title><rect x="1167.6" y="465" width="4.0" height="15.0" fill="rgb(253,77,5)" rx="2" ry="2" /> 7737 <text text-anchor="" x="1170.61" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7738 </g> 7739 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7740 <title>runtime.call64 (201 samples, 8.47%)</title><rect x="594.0" y="337" width="100.0" height="15.0" fill="rgb(205,62,35)" rx="2" ry="2" /> 7741 <text text-anchor="" x="597.03" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.call64</text> 7742 </g> 7743 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7744 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-memdb.(*Txn).getIndexValue (8 samples, 0.34%)</title><rect x="640.3" y="225" width="4.0" height="15.0" fill="rgb(246,115,0)" rx="2" ry="2" /> 7745 <text text-anchor="" x="643.30" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7746 </g> 7747 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7748 <title>bytes.makeSlice.func1 (2 samples, 0.08%)</title><rect x="838.8" y="225" width="1.0" height="15.0" fill="rgb(224,0,22)" rx="2" ry="2" /> 7749 <text text-anchor="" x="841.79" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7750 </g> 7751 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7752 <title>runtime.gopark (2 samples, 0.08%)</title><rect x="938.3" y="369" width="1.0" height="15.0" fill="rgb(213,153,47)" rx="2" ry="2" /> 7753 <text text-anchor="" x="941.28" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7754 </g> 7755 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7756 <title>reflect.funcLayout (13 samples, 0.55%)</title><rect x="587.1" y="337" width="6.4" height="15.0" fill="rgb(247,213,31)" rx="2" ry="2" /> 7757 <text text-anchor="" x="590.07" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7758 </g> 7759 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7760 <title>reflect.Value.assignTo (1 samples, 0.04%)</title><rect x="568.7" y="321" width="0.5" height="15.0" fill="rgb(220,102,43)" rx="2" ry="2" /> 7761 <text text-anchor="" x="571.66" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7762 </g> 7763 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7764 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*Raft).pipelineReplicate (2 samples, 0.08%)</title><rect x="64.7" y="529" width="1.0" height="15.0" fill="rgb(211,186,52)" rx="2" ry="2" /> 7765 <text text-anchor="" x="67.72" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7766 </g> 7767 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7768 <title>sync.(*Pool).Put (1 samples, 0.04%)</title><rect x="457.7" y="529" width="0.5" height="15.0" fill="rgb(233,222,40)" rx="2" ry="2" /> 7769 <text text-anchor="" x="460.72" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7770 </g> 7771 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7772 <title>runtime.newobject (8 samples, 0.34%)</title><rect x="560.2" y="337" width="4.0" height="15.0" fill="rgb(242,226,12)" rx="2" ry="2" /> 7773 <text text-anchor="" x="563.20" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7774 </g> 7775 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7776 <title>runtime.gcDrain (1 samples, 0.04%)</title><rect x="1152.2" y="481" width="0.5" height="15.0" fill="rgb(247,70,43)" rx="2" ry="2" /> 7777 <text text-anchor="" x="1155.19" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7778 </g> 7779 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7780 <title>runtime.systemstack (2 samples, 0.08%)</title><rect x="1043.7" y="417" width="1.0" height="15.0" fill="rgb(212,60,27)" rx="2" ry="2" /> 7781 <text text-anchor="" x="1046.74" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7782 </g> 7783 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7784 <title>runtime.(*mspan).nextFreeIndex (1 samples, 0.04%)</title><rect x="881.1" y="257" width="0.5" height="15.0" fill="rgb(224,66,8)" rx="2" ry="2" /> 7785 <text text-anchor="" x="884.07" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7786 </g> 7787 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7788 <title>runtime.findfunc (1 samples, 0.04%)</title><rect x="1167.6" y="385" width="0.5" height="15.0" fill="rgb(209,204,14)" rx="2" ry="2" /> 7789 <text text-anchor="" x="1170.61" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7790 </g> 7791 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7792 <title>runtime.casfrom_Gscanstatus (1 samples, 0.04%)</title><rect x="638.3" y="97" width="0.5" height="15.0" fill="rgb(228,72,9)" rx="2" ry="2" /> 7793 <text text-anchor="" x="641.31" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7794 </g> 7795 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7796 <title>net/http.(*conn).serve (1,979 samples, 83.43%)</title><rect x="65.7" y="577" width="984.5" height="15.0" fill="rgb(206,30,48)" rx="2" ry="2" /> 7797 <text text-anchor="" x="68.72" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.(*conn).serve</text> 7798 </g> 7799 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7800 <title>runtime.cansemacquire (1 samples, 0.04%)</title><rect x="1037.8" y="385" width="0.5" height="15.0" fill="rgb(249,14,48)" rx="2" ry="2" /> 7801 <text text-anchor="" x="1040.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7802 </g> 7803 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7804 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="259.2" y="417" width="0.5" height="15.0" fill="rgb(252,68,27)" rx="2" ry="2" /> 7805 <text text-anchor="" x="262.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7806 </g> 7807 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7808 <title>runtime/internal/atomic.Xchg (1 samples, 0.04%)</title><rect x="1158.7" y="513" width="0.5" height="15.0" fill="rgb(229,36,44)" rx="2" ry="2" /> 7809 <text text-anchor="" x="1161.66" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7810 </g> 7811 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7812 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="59.2" y="401" width="0.5" height="15.0" fill="rgb(253,90,37)" rx="2" ry="2" /> 7813 <text text-anchor="" x="62.25" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7814 </g> 7815 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7816 <title>context.(*cancelCtx).cancel (10 samples, 0.42%)</title><rect x="70.2" y="545" width="5.0" height="15.0" fill="rgb(254,75,54)" rx="2" ry="2" /> 7817 <text text-anchor="" x="73.19" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7818 </g> 7819 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7820 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="59.7" y="529" width="0.5" height="15.0" fill="rgb(243,35,14)" rx="2" ry="2" /> 7821 <text text-anchor="" x="62.75" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7822 </g> 7823 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7824 <title>runtime.mapaccess2_faststr (2 samples, 0.08%)</title><rect x="925.3" y="385" width="1.0" height="15.0" fill="rgb(240,191,12)" rx="2" ry="2" /> 7825 <text text-anchor="" x="928.35" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7826 </g> 7827 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7828 <title>runtime.(*mcache).nextFree.func1 (2 samples, 0.08%)</title><rect x="1042.7" y="401" width="1.0" height="15.0" fill="rgb(243,93,0)" rx="2" ry="2" /> 7829 <text text-anchor="" x="1045.75" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7830 </g> 7831 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7832 <title>reflect.ValueOf (1 samples, 0.04%)</title><rect x="570.6" y="337" width="0.5" height="15.0" fill="rgb(209,123,11)" rx="2" ry="2" /> 7833 <text text-anchor="" x="573.65" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7834 </g> 7835 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7836 <title>net/url.ParseQuery (36 samples, 1.52%)</title><rect x="869.1" y="449" width="17.9" height="15.0" fill="rgb(242,39,50)" rx="2" ry="2" /> 7837 <text text-anchor="" x="872.13" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7838 </g> 7839 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7840 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="717.4" y="353" width="0.5" height="15.0" fill="rgb(227,37,5)" rx="2" ry="2" /> 7841 <text text-anchor="" x="720.40" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7842 </g> 7843 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7844 <title>runtime.(*mheap).freeSpan.func1 (1 samples, 0.04%)</title><rect x="1050.2" y="529" width="0.5" height="15.0" fill="rgb(208,176,41)" rx="2" ry="2" /> 7845 <text text-anchor="" x="1053.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7846 </g> 7847 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7848 <title>runtime.mapassign1 (1 samples, 0.04%)</title><rect x="60.2" y="385" width="0.5" height="15.0" fill="rgb(222,41,6)" rx="2" ry="2" /> 7849 <text text-anchor="" x="63.24" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7850 </g> 7851 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7852 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="797.0" y="337" width="0.5" height="15.0" fill="rgb(229,45,10)" rx="2" ry="2" /> 7853 <text text-anchor="" x="800.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7854 </g> 7855 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7856 <title>runtime.readvarint (3 samples, 0.13%)</title><rect x="1081.1" y="401" width="1.4" height="15.0" fill="rgb(247,98,22)" rx="2" ry="2" /> 7857 <text text-anchor="" x="1084.05" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7858 </g> 7859 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7860 <title>runtime.systemstack (4 samples, 0.17%)</title><rect x="1135.8" y="529" width="2.0" height="15.0" fill="rgb(248,4,31)" rx="2" ry="2" /> 7861 <text text-anchor="" x="1138.78" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7862 </g> 7863 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7864 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="639.8" y="129" width="0.5" height="15.0" fill="rgb(248,185,7)" rx="2" ry="2" /> 7865 <text text-anchor="" x="642.80" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7866 </g> 7867 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7868 <title>runtime.sweepone (1 samples, 0.04%)</title><rect x="715.4" y="273" width="0.5" height="15.0" fill="rgb(253,208,16)" rx="2" ry="2" /> 7869 <text text-anchor="" x="718.41" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7870 </g> 7871 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7872 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="1024.3" y="385" width="0.5" height="15.0" fill="rgb(248,130,43)" rx="2" ry="2" /> 7873 <text text-anchor="" x="1027.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7874 </g> 7875 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7876 <title>strconv.FormatUint (5 samples, 0.21%)</title><rect x="718.4" y="401" width="2.5" height="15.0" fill="rgb(228,0,37)" rx="2" ry="2" /> 7877 <text text-anchor="" x="721.40" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7878 </g> 7879 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7880 <title>reflect.Value.Elem (2 samples, 0.08%)</title><rect x="567.7" y="321" width="1.0" height="15.0" fill="rgb(234,151,2)" rx="2" ry="2" /> 7881 <text text-anchor="" x="570.66" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7882 </g> 7883 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7884 <title>bufio.(*Reader).fill (92 samples, 3.88%)</title><rect x="128.4" y="465" width="45.8" height="15.0" fill="rgb(237,227,3)" rx="2" ry="2" /> 7885 <text text-anchor="" x="131.40" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufi..</text> 7886 </g> 7887 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7888 <title>runtime.mallocgc (3 samples, 0.13%)</title><rect x="1023.3" y="401" width="1.5" height="15.0" fill="rgb(252,92,6)" rx="2" ry="2" /> 7889 <text text-anchor="" x="1026.35" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7890 </g> 7891 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7892 <title>github.com/hashicorp/consul/logger.(*LogWriter).Write (13 samples, 0.55%)</title><rect x="916.9" y="417" width="6.5" height="15.0" fill="rgb(224,116,30)" rx="2" ry="2" /> 7893 <text text-anchor="" x="919.89" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7894 </g> 7895 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7896 <title>net/http.(*ServeMux).match (103 samples, 4.34%)</title><rect x="459.7" y="497" width="51.3" height="15.0" fill="rgb(246,164,40)" rx="2" ry="2" /> 7897 <text text-anchor="" x="462.71" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/h..</text> 7898 </g> 7899 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7900 <title>runtime.scang (1 samples, 0.04%)</title><rect x="1138.8" y="465" width="0.5" height="15.0" fill="rgb(251,47,1)" rx="2" ry="2" /> 7901 <text text-anchor="" x="1141.76" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7902 </g> 7903 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7904 <title>runtime.mapaccess1 (6 samples, 0.25%)</title><rect x="860.2" y="385" width="3.0" height="15.0" fill="rgb(218,75,50)" rx="2" ry="2" /> 7905 <text text-anchor="" x="863.18" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7906 </g> 7907 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7908 <title>runtime.futex (1 samples, 0.04%)</title><rect x="1135.8" y="433" width="0.5" height="15.0" fill="rgb(227,168,26)" rx="2" ry="2" /> 7909 <text text-anchor="" x="1138.78" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7910 </g> 7911 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7912 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="1007.4" y="433" width="0.5" height="15.0" fill="rgb(234,74,10)" rx="2" ry="2" /> 7913 <text text-anchor="" x="1010.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7914 </g> 7915 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7916 <title>runtime.usleep (5 samples, 0.21%)</title><rect x="1187.0" y="545" width="2.5" height="15.0" fill="rgb(231,205,13)" rx="2" ry="2" /> 7917 <text text-anchor="" x="1190.02" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7918 </g> 7919 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7920 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="730.8" y="289" width="0.5" height="15.0" fill="rgb(234,118,8)" rx="2" ry="2" /> 7921 <text text-anchor="" x="733.83" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7922 </g> 7923 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7924 <title>net/textproto.canonicalMIMEHeaderKey (13 samples, 0.55%)</title><rect x="215.0" y="513" width="6.4" height="15.0" fill="rgb(213,2,43)" rx="2" ry="2" /> 7925 <text text-anchor="" x="217.96" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7926 </g> 7927 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7928 <title>net/textproto.MIMEHeader.Set (22 samples, 0.93%)</title><rect x="707.5" y="385" width="10.9" height="15.0" fill="rgb(211,48,52)" rx="2" ry="2" /> 7929 <text text-anchor="" x="710.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7930 </g> 7931 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7932 <title>runtime.restartg (1 samples, 0.04%)</title><rect x="638.3" y="113" width="0.5" height="15.0" fill="rgb(249,65,54)" rx="2" ry="2" /> 7933 <text text-anchor="" x="641.31" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7934 </g> 7935 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7936 <title>runtime.rawstringtmp (2 samples, 0.08%)</title><rect x="734.3" y="353" width="1.0" height="15.0" fill="rgb(209,166,44)" rx="2" ry="2" /> 7937 <text text-anchor="" x="737.32" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7938 </g> 7939 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7940 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="939.3" y="369" width="0.5" height="15.0" fill="rgb(231,174,33)" rx="2" ry="2" /> 7941 <text text-anchor="" x="942.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7942 </g> 7943 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7944 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/raft.(*netPipeline).decodeResponses (3 samples, 0.13%)</title><rect x="63.2" y="577" width="1.5" height="15.0" fill="rgb(251,112,46)" rx="2" ry="2" /> 7945 <text text-anchor="" x="66.23" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7946 </g> 7947 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7948 <title>runtime.jmpdefer (1 samples, 0.04%)</title><rect x="267.2" y="529" width="0.5" height="15.0" fill="rgb(251,131,32)" rx="2" ry="2" /> 7949 <text text-anchor="" x="270.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7950 </g> 7951 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7952 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="299.5" y="465" width="0.5" height="15.0" fill="rgb(241,219,31)" rx="2" ry="2" /> 7953 <text text-anchor="" x="302.53" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7954 </g> 7955 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7956 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="905.4" y="401" width="0.5" height="15.0" fill="rgb(214,66,42)" rx="2" ry="2" /> 7957 <text text-anchor="" x="908.45" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7958 </g> 7959 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7960 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="93.1" y="497" width="0.5" height="15.0" fill="rgb(244,156,54)" rx="2" ry="2" /> 7961 <text text-anchor="" x="96.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7962 </g> 7963 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7964 <title>runtime.scanstack (1 samples, 0.04%)</title><rect x="1152.2" y="401" width="0.5" height="15.0" fill="rgb(239,34,0)" rx="2" ry="2" /> 7965 <text text-anchor="" x="1155.19" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7966 </g> 7967 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7968 <title>runtime.findfunc (1 samples, 0.04%)</title><rect x="1174.6" y="385" width="0.5" height="15.0" fill="rgb(225,118,23)" rx="2" ry="2" /> 7969 <text text-anchor="" x="1177.58" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7970 </g> 7971 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7972 <title>net/textproto.(*Reader).ReadMIMEHeader (95 samples, 4.01%)</title><rect x="202.5" y="529" width="47.3" height="15.0" fill="rgb(229,181,15)" rx="2" ry="2" /> 7973 <text text-anchor="" x="205.52" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/..</text> 7974 </g> 7975 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7976 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="933.3" y="401" width="0.5" height="15.0" fill="rgb(222,108,1)" rx="2" ry="2" /> 7977 <text text-anchor="" x="936.31" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7978 </g> 7979 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7980 <title>runtime.gcAssistAlloc.func1 (1 samples, 0.04%)</title><rect x="326.4" y="385" width="0.5" height="15.0" fill="rgb(205,141,52)" rx="2" ry="2" /> 7981 <text text-anchor="" x="329.39" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7982 </g> 7983 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7984 <title>runtime.heapBitsSetType (1 samples, 0.04%)</title><rect x="961.7" y="385" width="0.5" height="15.0" fill="rgb(207,177,32)" rx="2" ry="2" /> 7985 <text text-anchor="" x="964.66" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7986 </g> 7987 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7988 <title>runtime.makemap (3 samples, 0.13%)</title><rect x="274.7" y="545" width="1.4" height="15.0" fill="rgb(212,118,46)" rx="2" ry="2" /> 7989 <text text-anchor="" x="277.65" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7990 </g> 7991 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7992 <title>runtime.getcallersp (1 samples, 0.04%)</title><rect x="1013.9" y="465" width="0.5" height="15.0" fill="rgb(251,46,18)" rx="2" ry="2" /> 7993 <text text-anchor="" x="1016.90" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7994 </g> 7995 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 7996 <title>runtime.(*mheap).alloc_m (2 samples, 0.08%)</title><rect x="788.5" y="273" width="1.0" height="15.0" fill="rgb(252,206,11)" rx="2" ry="2" /> 7997 <text text-anchor="" x="791.54" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 7998 </g> 7999 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8000 <title>runtime.lfstackpop (1 samples, 0.04%)</title><rect x="180.1" y="353" width="0.5" height="15.0" fill="rgb(223,105,2)" rx="2" ry="2" /> 8001 <text text-anchor="" x="183.13" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8002 </g> 8003 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8004 <title>runtime.newobject (1 samples, 0.04%)</title><rect x="770.6" y="369" width="0.5" height="15.0" fill="rgb(229,91,32)" rx="2" ry="2" /> 8005 <text text-anchor="" x="773.63" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8006 </g> 8007 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8008 <title>runtime.gcDrain (149 samples, 6.28%)</title><rect x="1060.7" y="561" width="74.1" height="15.0" fill="rgb(229,37,38)" rx="2" ry="2" /> 8009 <text text-anchor="" x="1063.66" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime...</text> 8010 </g> 8011 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8012 <title>net/url.unescape (1 samples, 0.04%)</title><rect x="795.0" y="353" width="0.5" height="15.0" fill="rgb(243,141,4)" rx="2" ry="2" /> 8013 <text text-anchor="" x="798.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8014 </g> 8015 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8016 <title>reflect.ValueOf (1 samples, 0.04%)</title><rect x="539.3" y="353" width="0.5" height="15.0" fill="rgb(239,10,51)" rx="2" ry="2" /> 8017 <text text-anchor="" x="542.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8018 </g> 8019 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8020 <title>runtime.indexbytebody (3 samples, 0.13%)</title><rect x="923.9" y="385" width="1.4" height="15.0" fill="rgb(251,164,49)" rx="2" ry="2" /> 8021 <text text-anchor="" x="926.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8022 </g> 8023 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8024 <title>runtime.mprof_GC (2 samples, 0.08%)</title><rect x="1136.3" y="465" width="1.0" height="15.0" fill="rgb(219,197,43)" rx="2" ry="2" /> 8025 <text text-anchor="" x="1139.27" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8026 </g> 8027 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8028 <title>runtime.eqstring (1 samples, 0.04%)</title><rect x="516.9" y="513" width="0.5" height="15.0" fill="rgb(223,223,19)" rx="2" ry="2" /> 8029 <text text-anchor="" x="519.92" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8030 </g> 8031 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8032 <title>runtime.mallocgc (7 samples, 0.30%)</title><rect x="713.9" y="337" width="3.5" height="15.0" fill="rgb(248,169,25)" rx="2" ry="2" /> 8033 <text text-anchor="" x="716.92" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8034 </g> 8035 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8036 <title>runtime.memclr (1 samples, 0.04%)</title><rect x="742.3" y="337" width="0.5" height="15.0" fill="rgb(234,179,18)" rx="2" ry="2" /> 8037 <text text-anchor="" x="745.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8038 </g> 8039 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8040 <title>runtime.mapaccess1_faststr (2 samples, 0.08%)</title><rect x="232.4" y="513" width="1.0" height="15.0" fill="rgb(213,103,32)" rx="2" ry="2" /> 8041 <text text-anchor="" x="235.37" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8042 </g> 8043 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8044 <title>net/http.(*headerSorter).Len (1 samples, 0.04%)</title><rect x="316.9" y="433" width="0.5" height="15.0" fill="rgb(227,8,23)" rx="2" ry="2" /> 8045 <text text-anchor="" x="319.94" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8046 </g> 8047 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8048 <title>runtime.gcMarkTermination (1 samples, 0.04%)</title><rect x="259.2" y="433" width="0.5" height="15.0" fill="rgb(206,1,22)" rx="2" ry="2" /> 8049 <text text-anchor="" x="262.23" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8050 </g> 8051 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8052 <title>runtime.mallocgc (7 samples, 0.30%)</title><rect x="279.1" y="529" width="3.5" height="15.0" fill="rgb(208,108,24)" rx="2" ry="2" /> 8053 <text text-anchor="" x="282.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8054 </g> 8055 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8056 <title>net/url.ParseRequestURI (31 samples, 1.31%)</title><rect x="249.8" y="529" width="15.4" height="15.0" fill="rgb(246,151,46)" rx="2" ry="2" /> 8057 <text text-anchor="" x="252.78" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8058 </g> 8059 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8060 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="538.8" y="321" width="0.5" height="15.0" fill="rgb(212,193,20)" rx="2" ry="2" /> 8061 <text text-anchor="" x="541.81" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8062 </g> 8063 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8064 <title>runtime.scanobject (1 samples, 0.04%)</title><rect x="93.1" y="433" width="0.5" height="15.0" fill="rgb(233,161,19)" rx="2" ry="2" /> 8065 <text text-anchor="" x="96.08" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8066 </g> 8067 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8068 <title>runtime.sweepone (1 samples, 0.04%)</title><rect x="229.9" y="433" width="0.5" height="15.0" fill="rgb(212,160,54)" rx="2" ry="2" /> 8069 <text text-anchor="" x="232.88" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8070 </g> 8071 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8072 <title>reflect.Indirect (2 samples, 0.08%)</title><rect x="532.8" y="353" width="1.0" height="15.0" fill="rgb(220,176,29)" rx="2" ry="2" /> 8073 <text text-anchor="" x="535.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8074 </g> 8075 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8076 <title>runtime.mallocgc (6 samples, 0.25%)</title><rect x="104.5" y="513" width="3.0" height="15.0" fill="rgb(235,209,24)" rx="2" ry="2" /> 8077 <text text-anchor="" x="107.52" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8078 </g> 8079 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8080 <title>runtime.gcMarkDone (7 samples, 0.30%)</title><rect x="1134.8" y="561" width="3.5" height="15.0" fill="rgb(241,16,43)" rx="2" ry="2" /> 8081 <text text-anchor="" x="1137.78" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8082 </g> 8083 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8084 <title>runtime.lock (2 samples, 0.08%)</title><rect x="1142.2" y="513" width="1.0" height="15.0" fill="rgb(237,85,46)" rx="2" ry="2" /> 8085 <text text-anchor="" x="1145.24" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8086 </g> 8087 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8088 <title>net/url.(*URL).Query (22 samples, 0.93%)</title><rect x="773.1" y="417" width="11.0" height="15.0" fill="rgb(214,165,19)" rx="2" ry="2" /> 8089 <text text-anchor="" x="776.12" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8090 </g> 8091 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8092 <title>runtime.stopm (16 samples, 0.67%)</title><rect x="1166.6" y="529" width="8.0" height="15.0" fill="rgb(230,192,33)" rx="2" ry="2" /> 8093 <text text-anchor="" x="1169.62" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8094 </g> 8095 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8096 <title>runtime.step (9 samples, 0.38%)</title><rect x="1088.5" y="385" width="4.5" height="15.0" fill="rgb(206,220,17)" rx="2" ry="2" /> 8097 <text text-anchor="" x="1091.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8098 </g> 8099 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8100 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="249.3" y="449" width="0.5" height="15.0" fill="rgb(210,105,12)" rx="2" ry="2" /> 8101 <text text-anchor="" x="252.28" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8102 </g> 8103 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8104 <title>reflect.valueInterface (3 samples, 0.13%)</title><rect x="697.0" y="353" width="1.5" height="15.0" fill="rgb(234,159,6)" rx="2" ry="2" /> 8105 <text text-anchor="" x="700.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8106 </g> 8107 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8108 <title>net.runtime_pollReset (2 samples, 0.08%)</title><rect x="344.8" y="433" width="1.0" height="15.0" fill="rgb(222,49,26)" rx="2" ry="2" /> 8109 <text text-anchor="" x="347.80" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8110 </g> 8111 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8112 <title>net/url.escape (5 samples, 0.21%)</title><rect x="253.3" y="481" width="2.5" height="15.0" fill="rgb(218,136,29)" rx="2" ry="2" /> 8113 <text text-anchor="" x="256.26" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8114 </g> 8115 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8116 <title>runtime.deferproc (4 samples, 0.17%)</title><rect x="898.5" y="385" width="2.0" height="15.0" fill="rgb(217,22,12)" rx="2" ry="2" /> 8117 <text text-anchor="" x="901.48" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8118 </g> 8119 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8120 <title>net/textproto.MIMEHeader.Del (4 samples, 0.17%)</title><rect x="121.4" y="481" width="2.0" height="15.0" fill="rgb(233,225,27)" rx="2" ry="2" /> 8121 <text text-anchor="" x="124.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8122 </g> 8123 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8124 <title>runtime.writebarrierptr_nostore1 (1 samples, 0.04%)</title><rect x="1181.5" y="353" width="0.5" height="15.0" fill="rgb(213,53,26)" rx="2" ry="2" /> 8125 <text text-anchor="" x="1184.54" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8126 </g> 8127 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8128 <title>runtime.systemstack (1 samples, 0.04%)</title><rect x="561.2" y="289" width="0.5" height="15.0" fill="rgb(213,39,47)" rx="2" ry="2" /> 8129 <text text-anchor="" x="564.20" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8130 </g> 8131 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8132 <title>runtime.(*mcache).nextFree.func1 (4 samples, 0.17%)</title><rect x="878.6" y="337" width="2.0" height="15.0" fill="rgb(240,218,18)" rx="2" ry="2" /> 8133 <text text-anchor="" x="881.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8134 </g> 8135 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8136 <title>runtime.systemstack (7 samples, 0.30%)</title><rect x="878.6" y="353" width="3.5" height="15.0" fill="rgb(232,84,26)" rx="2" ry="2" /> 8137 <text text-anchor="" x="881.58" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8138 </g> 8139 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8140 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="511.5" y="449" width="0.4" height="15.0" fill="rgb(247,70,28)" rx="2" ry="2" /> 8141 <text text-anchor="" x="514.45" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8142 </g> 8143 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8144 <title>runtime.(*mheap).alloc (2 samples, 0.08%)</title><rect x="807.9" y="257" width="1.0" height="15.0" fill="rgb(236,85,32)" rx="2" ry="2" /> 8145 <text text-anchor="" x="810.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8146 </g> 8147 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8148 <title>runtime.scang (2 samples, 0.08%)</title><rect x="1174.6" y="433" width="1.0" height="15.0" fill="rgb(220,73,1)" rx="2" ry="2" /> 8149 <text text-anchor="" x="1177.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8150 </g> 8151 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8152 <title>reflect.Value.assignTo (6 samples, 0.25%)</title><rect x="534.8" y="337" width="3.0" height="15.0" fill="rgb(209,228,28)" rx="2" ry="2" /> 8153 <text text-anchor="" x="537.83" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8154 </g> 8155 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8156 <title>net.(*UDPConn).WriteTo (1 samples, 0.04%)</title><rect x="62.2" y="465" width="0.5" height="15.0" fill="rgb(226,172,30)" rx="2" ry="2" /> 8157 <text text-anchor="" x="65.23" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8158 </g> 8159 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8160 <title>sync.(*Mutex).Unlock (1 samples, 0.04%)</title><rect x="699.0" y="369" width="0.5" height="15.0" fill="rgb(242,105,6)" rx="2" ry="2" /> 8161 <text text-anchor="" x="702.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8162 </g> 8163 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8164 <title>sync.(*Mutex).Lock (1 samples, 0.04%)</title><rect x="112.0" y="481" width="0.5" height="15.0" fill="rgb(234,158,1)" rx="2" ry="2" /> 8165 <text text-anchor="" x="114.98" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8166 </g> 8167 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8168 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Txn).Get (8 samples, 0.34%)</title><rect x="630.3" y="193" width="4.0" height="15.0" fill="rgb(234,94,54)" rx="2" ry="2" /> 8169 <text text-anchor="" x="633.35" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8170 </g> 8171 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8172 <title>runtime.gosweepone.func1 (1 samples, 0.04%)</title><rect x="677.1" y="113" width="0.5" height="15.0" fill="rgb(233,98,4)" rx="2" ry="2" /> 8173 <text text-anchor="" x="680.11" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8174 </g> 8175 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8176 <title>runtime.trygetfull (1 samples, 0.04%)</title><rect x="180.1" y="369" width="0.5" height="15.0" fill="rgb(215,132,38)" rx="2" ry="2" /> 8177 <text text-anchor="" x="183.13" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8178 </g> 8179 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8180 <title>runtime.getempty (1 samples, 0.04%)</title><rect x="1182.0" y="417" width="0.5" height="15.0" fill="rgb(251,56,24)" rx="2" ry="2" /> 8181 <text text-anchor="" x="1185.04" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8182 </g> 8183 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8184 <title>runtime.runqsteal (4 samples, 0.17%)</title><rect x="1164.6" y="529" width="2.0" height="15.0" fill="rgb(212,31,37)" rx="2" ry="2" /> 8185 <text text-anchor="" x="1167.63" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8186 </g> 8187 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8188 <title>runtime.(*gcWork).get (1 samples, 0.04%)</title><rect x="1182.0" y="449" width="0.5" height="15.0" fill="rgb(236,42,49)" rx="2" ry="2" /> 8189 <text text-anchor="" x="1185.04" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8190 </g> 8191 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8192 <title>sync.(*Mutex).Unlock (1 samples, 0.04%)</title><rect x="573.6" y="337" width="0.5" height="15.0" fill="rgb(251,28,10)" rx="2" ry="2" /> 8193 <text text-anchor="" x="576.63" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8194 </g> 8195 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8196 <title>sync/atomic.AddUint32 (1 samples, 0.04%)</title><rect x="699.0" y="353" width="0.5" height="15.0" fill="rgb(222,114,2)" rx="2" ry="2" /> 8197 <text text-anchor="" x="702.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8198 </g> 8199 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8200 <title>runtime.heapBitsSetType (2 samples, 0.08%)</title><rect x="779.1" y="321" width="1.0" height="15.0" fill="rgb(241,9,41)" rx="2" ry="2" /> 8201 <text text-anchor="" x="782.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8202 </g> 8203 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8204 <title>runtime.mallocgc (6 samples, 0.25%)</title><rect x="94.6" y="513" width="3.0" height="15.0" fill="rgb(239,9,41)" rx="2" ry="2" /> 8205 <text text-anchor="" x="97.57" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8206 </g> 8207 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8208 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="61.7" y="497" width="0.5" height="15.0" fill="rgb(232,161,8)" rx="2" ry="2" /> 8209 <text text-anchor="" x="64.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8210 </g> 8211 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8212 <title>runtime.ifaceeq (1 samples, 0.04%)</title><rect x="862.7" y="353" width="0.5" height="15.0" fill="rgb(206,133,20)" rx="2" ry="2" /> 8213 <text text-anchor="" x="865.66" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8214 </g> 8215 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8216 <title>bytes.(*Buffer).WriteByte (6 samples, 0.25%)</title><rect x="833.3" y="289" width="3.0" height="15.0" fill="rgb(251,11,22)" rx="2" ry="2" /> 8217 <text text-anchor="" x="836.31" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8218 </g> 8219 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8220 <title>net/url.(*URL).String (35 samples, 1.48%)</title><rect x="981.1" y="481" width="17.4" height="15.0" fill="rgb(238,172,37)" rx="2" ry="2" /> 8221 <text text-anchor="" x="984.06" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8222 </g> 8223 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8224 <title>sync.(*RWMutex).Lock (3 samples, 0.13%)</title><rect x="1036.8" y="449" width="1.5" height="15.0" fill="rgb(222,175,11)" rx="2" ry="2" /> 8225 <text text-anchor="" x="1039.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8226 </g> 8227 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8228 <title>runtime.gcAssistAlloc (1 samples, 0.04%)</title><rect x="271.2" y="497" width="0.5" height="15.0" fill="rgb(234,148,37)" rx="2" ry="2" /> 8229 <text text-anchor="" x="274.17" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8230 </g> 8231 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8232 <title>runtime.profilealloc (1 samples, 0.04%)</title><rect x="883.1" y="369" width="0.5" height="15.0" fill="rgb(249,42,27)" rx="2" ry="2" /> 8233 <text text-anchor="" x="886.06" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8234 </g> 8235 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8236 <title>github.com/hashicorp/consul/vendor/github.com/armon/go-metrics.(*InmemSink).flattenKey (18 samples, 0.76%)</title><rect x="670.1" y="241" width="9.0" height="15.0" fill="rgb(250,3,0)" rx="2" ry="2" /> 8237 <text text-anchor="" x="673.14" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8238 </g> 8239 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8240 <title>log.(*Logger).Printf (105 samples, 4.43%)</title><rect x="888.0" y="465" width="52.3" height="15.0" fill="rgb(217,89,47)" rx="2" ry="2" /> 8241 <text text-anchor="" x="891.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >log.(..</text> 8242 </g> 8243 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8244 <title>runtime.memmove (1 samples, 0.04%)</title><rect x="570.2" y="289" width="0.4" height="15.0" fill="rgb(225,163,22)" rx="2" ry="2" /> 8245 <text text-anchor="" x="573.15" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8246 </g> 8247 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8248 <title>net/url.parseQuery (14 samples, 0.59%)</title><rect x="785.1" y="385" width="6.9" height="15.0" fill="rgb(240,24,21)" rx="2" ry="2" /> 8249 <text text-anchor="" x="788.06" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8250 </g> 8251 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8252 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="273.7" y="465" width="0.5" height="15.0" fill="rgb(220,31,39)" rx="2" ry="2" /> 8253 <text text-anchor="" x="276.66" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8254 </g> 8255 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8256 <title>runtime.(*bucket).mp (1 samples, 0.04%)</title><rect x="280.6" y="401" width="0.5" height="15.0" fill="rgb(250,65,10)" rx="2" ry="2" /> 8257 <text text-anchor="" x="283.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8258 </g> 8259 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8260 <title>runtime.entersyscall (9 samples, 0.38%)</title><rect x="443.8" y="417" width="4.5" height="15.0" fill="rgb(205,130,0)" rx="2" ry="2" /> 8261 <text text-anchor="" x="446.79" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8262 </g> 8263 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8264 <title>runtime.typedmemmove (1 samples, 0.04%)</title><rect x="800.5" y="353" width="0.5" height="15.0" fill="rgb(217,131,29)" rx="2" ry="2" /> 8265 <text text-anchor="" x="803.48" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8266 </g> 8267 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8268 <title>time.Now (3 samples, 0.13%)</title><rect x="1048.7" y="497" width="1.5" height="15.0" fill="rgb(232,131,8)" rx="2" ry="2" /> 8269 <text text-anchor="" x="1051.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8270 </g> 8271 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8272 <title>runtime.writebarrierptr (1 samples, 0.04%)</title><rect x="59.2" y="417" width="0.5" height="15.0" fill="rgb(208,147,49)" rx="2" ry="2" /> 8273 <text text-anchor="" x="62.25" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8274 </g> 8275 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8276 <title>runtime.newobject (4 samples, 0.17%)</title><rect x="940.8" y="449" width="2.0" height="15.0" fill="rgb(251,41,31)" rx="2" ry="2" /> 8277 <text text-anchor="" x="943.77" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8278 </g> 8279 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8280 <title>runtime.mallocgc (1 samples, 0.04%)</title><rect x="692.5" y="289" width="0.5" height="15.0" fill="rgb(214,87,37)" rx="2" ry="2" /> 8281 <text text-anchor="" x="695.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8282 </g> 8283 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8284 <title>runtime.mapaccess1_faststr (1 samples, 0.04%)</title><rect x="728.3" y="337" width="0.5" height="15.0" fill="rgb(218,52,1)" rx="2" ry="2" /> 8285 <text text-anchor="" x="731.35" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8286 </g> 8287 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8288 <title>runtime.mallocgc (2 samples, 0.08%)</title><rect x="921.4" y="353" width="1.0" height="15.0" fill="rgb(241,84,45)" rx="2" ry="2" /> 8289 <text text-anchor="" x="924.37" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8290 </g> 8291 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8292 <title>runtime.makeslice (4 samples, 0.17%)</title><rect x="694.0" y="337" width="2.0" height="15.0" fill="rgb(217,187,54)" rx="2" ry="2" /> 8293 <text text-anchor="" x="697.02" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8294 </g> 8295 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8296 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).Decode (2 samples, 0.08%)</title><rect x="63.2" y="545" width="1.0" height="15.0" fill="rgb(233,15,16)" rx="2" ry="2" /> 8297 <text text-anchor="" x="66.23" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8298 </g> 8299 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8300 <title>runtime.mProf_Free (1 samples, 0.04%)</title><rect x="280.6" y="417" width="0.5" height="15.0" fill="rgb(229,11,8)" rx="2" ry="2" /> 8301 <text text-anchor="" x="283.62" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8302 </g> 8303 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8304 <title>runtime.newobject (3 samples, 0.13%)</title><rect x="651.7" y="241" width="1.5" height="15.0" fill="rgb(246,204,35)" rx="2" ry="2" /> 8305 <text text-anchor="" x="654.74" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8306 </g> 8307 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8308 <title>net/http.(*Server).doKeepAlives (2 samples, 0.08%)</title><rect x="300.0" y="481" width="1.0" height="15.0" fill="rgb(249,26,25)" rx="2" ry="2" /> 8309 <text text-anchor="" x="303.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8310 </g> 8311 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8312 <title>runtime.wakep (1 samples, 0.04%)</title><rect x="64.2" y="449" width="0.5" height="15.0" fill="rgb(248,167,20)" rx="2" ry="2" /> 8313 <text text-anchor="" x="67.22" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8314 </g> 8315 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8316 <title>runtime.futex (2 samples, 0.08%)</title><rect x="1139.3" y="513" width="1.0" height="15.0" fill="rgb(215,173,14)" rx="2" ry="2" /> 8317 <text text-anchor="" x="1142.26" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8318 </g> 8319 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8320 <title>runtime.schedule (6 samples, 0.25%)</title><rect x="1180.5" y="529" width="3.0" height="15.0" fill="rgb(211,36,1)" rx="2" ry="2" /> 8321 <text text-anchor="" x="1183.55" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8322 </g> 8323 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8324 <title>runtime.writebarrierptr_nostore1.func1 (1 samples, 0.04%)</title><rect x="273.7" y="481" width="0.5" height="15.0" fill="rgb(233,151,39)" rx="2" ry="2" /> 8325 <text text-anchor="" x="276.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8326 </g> 8327 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8328 <title>sync.(*Pool).getSlow (3 samples, 0.13%)</title><rect x="909.4" y="401" width="1.5" height="15.0" fill="rgb(226,225,30)" rx="2" ry="2" /> 8329 <text text-anchor="" x="912.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8330 </g> 8331 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8332 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-msgpack/codec.(*Decoder).decodeValue (1 samples, 0.04%)</title><rect x="60.2" y="449" width="0.5" height="15.0" fill="rgb(207,72,6)" rx="2" ry="2" /> 8333 <text text-anchor="" x="63.24" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8334 </g> 8335 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8336 <title>runtime.newarray (13 samples, 0.55%)</title><rect x="877.1" y="401" width="6.5" height="15.0" fill="rgb(206,164,4)" rx="2" ry="2" /> 8337 <text text-anchor="" x="880.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8338 </g> 8339 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8340 <title>runtime.(*mcache).refill (2 samples, 0.08%)</title><rect x="1042.7" y="385" width="1.0" height="15.0" fill="rgb(245,0,19)" rx="2" ry="2" /> 8341 <text text-anchor="" x="1045.75" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8342 </g> 8343 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8344 <title>runtime.rawstringtmp (1 samples, 0.04%)</title><rect x="641.3" y="161" width="0.5" height="15.0" fill="rgb(237,105,13)" rx="2" ry="2" /> 8345 <text text-anchor="" x="644.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8346 </g> 8347 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8348 <title>runtime.gentraceback (2 samples, 0.08%)</title><rect x="1183.5" y="545" width="1.0" height="15.0" fill="rgb(247,218,50)" rx="2" ry="2" /> 8349 <text text-anchor="" x="1186.53" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8350 </g> 8351 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8352 <title>runtime.makemap (3 samples, 0.13%)</title><rect x="782.6" y="385" width="1.5" height="15.0" fill="rgb(219,120,37)" rx="2" ry="2" /> 8353 <text text-anchor="" x="785.57" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8354 </g> 8355 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8356 <title>bytes.(*Buffer).grow (4 samples, 0.17%)</title><rect x="834.3" y="273" width="2.0" height="15.0" fill="rgb(231,164,46)" rx="2" ry="2" /> 8357 <text text-anchor="" x="837.31" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8358 </g> 8359 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8360 <title>runtime.markrootSpans (3 samples, 0.13%)</title><rect x="1064.1" y="529" width="1.5" height="15.0" fill="rgb(254,91,38)" rx="2" ry="2" /> 8361 <text text-anchor="" x="1067.14" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8362 </g> 8363 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8364 <title>github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix.(*Node).getEdge (4 samples, 0.17%)</title><rect x="644.8" y="177" width="2.0" height="15.0" fill="rgb(209,189,49)" rx="2" ry="2" /> 8365 <text text-anchor="" x="647.77" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8366 </g> 8367 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8368 <title>runtime.freedefer (1 samples, 0.04%)</title><rect x="266.7" y="481" width="0.5" height="15.0" fill="rgb(206,144,18)" rx="2" ry="2" /> 8369 <text text-anchor="" x="269.69" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8370 </g> 8371 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8372 <title>runtime.step (2 samples, 0.08%)</title><rect x="1168.6" y="353" width="1.0" height="15.0" fill="rgb(213,12,42)" rx="2" ry="2" /> 8373 <text text-anchor="" x="1171.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8374 </g> 8375 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8376 <title>runtime.deferproc.func1 (1 samples, 0.04%)</title><rect x="265.7" y="497" width="0.5" height="15.0" fill="rgb(248,97,47)" rx="2" ry="2" /> 8377 <text text-anchor="" x="268.70" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8378 </g> 8379 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8380 <title>net/url.QueryUnescape (2 samples, 0.08%)</title><rect x="758.7" y="369" width="1.0" height="15.0" fill="rgb(239,144,13)" rx="2" ry="2" /> 8381 <text text-anchor="" x="761.69" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8382 </g> 8383 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8384 <title>runtime.rawstring (1 samples, 0.04%)</title><rect x="641.3" y="145" width="0.5" height="15.0" fill="rgb(239,60,10)" rx="2" ry="2" /> 8385 <text text-anchor="" x="644.29" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8386 </g> 8387 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8388 <title>runtime.concatstring3 (2 samples, 0.08%)</title><rect x="646.8" y="209" width="1.0" height="15.0" fill="rgb(225,40,10)" rx="2" ry="2" /> 8389 <text text-anchor="" x="649.76" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8390 </g> 8391 <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> 8392 <title>runtime.gcmarkwb_m (1 samples, 0.04%)</title><rect x="922.4" y="289" width="0.5" height="15.0" fill="rgb(220,74,38)" rx="2" ry="2" /> 8393 <text text-anchor="" x="925.36" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> 8394 </g> 8395 </svg>