Skip to content

Instantly share code, notes, and snippets.

@WardCunningham
Forked from mbostock/.block
Last active September 25, 2016 17:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save WardCunningham/5861122 to your computer and use it in GitHub Desktop.
Save WardCunningham/5861122 to your computer and use it in GitHub Desktop.
Web Traffic

We start with Bostock's Multi-Foci Force Layout example and add motion to represent traffic progressing through a system. Think of this as progress bars for every inflight transaction.

Each dot represents a transaction read from a four-minute long recording. Watch for a spike in activity at 20:20 after the hour. The animation repeats when finished.

Dots enter when transactions start and exit when completed. Their speed is proportional to client's response time while their size reflects the server's contribution to total time. Color comes from the specific request.

Web Traffic is now available in New Relic's open-source Project Marlowe. Explore other datasets and other visualizations there.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
circle {
stroke: #fff;
}
#readout {
color: gray;
font-size: 24px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
}
</style>
<body>
<div id="readout"> </div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
// http://stackoverflow.com/questions/9539294/adding-new-nodes-to-force-directed-layout
// http://bl.ocks.org/mbostock/1804919 -- original
// http://bl.ocks.org/mbostock/1095795 -- add/remove elements
var margin = {top: 0, right: 0, bottom: 0, left: 0},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var padding = 6,
radius = d3.scale.sqrt().domain([0,5000]).range([5, 15]),
color = d3.scale.category10();
function readout(text) {
d3.select("#readout").text(text);
}
var nodes = [];
var force = d3.layout.force()
.nodes(nodes)
.size([width, height])
.gravity(0)
.friction(.6)
.charge(0)
.on("tick", tick)
.start();
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var circle = svg.selectAll("circle")
.data(nodes, function(d) { return d.id;})
.enter().append("circle")
.attr("r", function(d) { return d.radius; })
.style("fill", function(d) { return d.color; })
.call(force.drag);
// Update dom as transactions come and go
var id = 0;
function tick(e) {
var now = new Date().getTime();
for (var i = nodes.length - 1; i >= 0; i--) {
if (finished(nodes[i],now)) {
nodes.splice(i,1)
}
};
playnext(function(arrival){
readout(new Date(arrival.time).toTimeString().split(" ")[0]+" "+arrival.request);
arrival.id = id++;
arrival.radius = radius(transaction.server);
arrival.color = color(transaction.request);
arrival.cx = arrival.x = 10;
arrival.cy = arrival.y = height / 2 + Math.random()*30;
arrival.start = now;
nodes.push(arrival);
});
var circle = svg.selectAll("circle")
.data(nodes, function(d) { return d.id;});
circle
.enter().append("circle")
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; })
.attr("r", function(d) { return d.radius; })
.style("fill", function(d) { return d.color; });
circle
.exit().remove();
circle
.each(gravity(.2 * e.alpha))
.each(collide(.5))
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
force.start();
}
// Move nodes toward cluster focus.
function gravity(alpha) {
return function(d) {
d.y += (d.cy - d.y) * alpha;
var now = new Date().getTime();
var pos = width * (now - d.start)/d.client;
d.x += (pos - d.x) * alpha;
};
}
// Resolve collisions between nodes.
function collide(alpha) {
var quadtree = d3.geom.quadtree(nodes);
return function(d) {
var r = d.radius + radius.domain()[1] + padding,
nx1 = d.x - r,
nx2 = d.x + r,
ny1 = d.y - r,
ny2 = d.y + r;
quadtree.visit(function(quad, x1, y1, x2, y2) {
if (quad.point && (quad.point !== d)) {
var x = d.x - quad.point.x,
y = d.y - quad.point.y,
l = Math.sqrt(x * x + y * y),
r = d.radius + quad.point.radius + (d.color !== quad.point.color) * padding;
if (l < r) {
l = (l - r) / l * alpha;
d.x -= x *= l;
d.y -= y *= l;
quad.point.x += x;
quad.point.y += y;
}
}
return x1 > nx2
|| x2 < nx1
|| y1 > ny2
|| y2 < ny1;
});
};
}
// Stream over transaction dataset delivering entry events by callback
var stream = null;
function finished (transaction, now) {
return transaction.start + (transaction.client||3000) + stream.sleep < now
}
function playnext (callback) {
if (stream == null) {
return;
}
var now = new Date().getTime();
var delay = now - stream.wall;
stream.wall = now;
if (delay > 1000) {
// must have been sleeping without timer events
stream.sleep += delay;
}
var want = now - stream.start + stream.first - stream.sleep;
while ((at = stream.data[stream.index]) && at[0] < want) {
transaction = {time:at[0], request:at[1], client:at[2], server:at[3]}
callback(transaction);
stream.index += 1;
}
if (nodes.length == 0 && want > stream.last) {
stream.wall = stream.start = now;
stream.sleep = stream.index = 0;
}
}
function adjust (json) {
for (var i = json.length - 1; i >= 0; i--) {
json[i][0] -= json[i][2]; // move time back to start of transaction
}
json.sort(function(a,b){ return a[0]-b[0]; });
while(json[0][2]>1000) {
json.shift(); // remove stragglers from long ago
}
}
function playback (error, json) {
if(error) {
readout(error);
} else {
var now = new Date().getTime();
adjust(json);
stream = {start: now, wall: now, sleep: 0, first: json[0][0], last: json[json.length-1][0], index: 0, data: json,};
}
}
d3.json("nr-queuing-spike-zoom.json", playback);
</script>
[
[1368818280030, "infrastructure/hosts/show", 1012.0, 582.0],
[1368818280082, "infrastructure/hosts/show", 1340.0, 805.0],
[1368818280085, "applications/index", 1394.0, 872.0],
[1368818280121, "infrastructure/hosts/show", 1930.0, 1197.0],
[1368818280134, "infrastructure/hosts/index", 800.0, 333.0],
[1368818280142, "public_access/charts/show", 4364.0, 4321.0],
[1368818280155, "infrastructure/hosts/index", 6492.0, 585.0],
[1368818280222, "infrastructure/hosts/index", 3553.0, 1174.0],
[1368818280304, "public_access/charts/show", 359.0, 323.0],
[1368818280308, "public_access/charts/show", 370.0, 334.0],
[1368818280312, "public_access/charts/show", 375.0, 331.0],
[1368818280312, "applications/index", 1705.0, 993.0],
[1368818280313, "landing_pages/nerdlife", 944.0, 1.0],
[1368818280317, "public_access/charts/show", 137.0, 85.0],
[1368818280407, "applications/show", 1204.0, 499.0],
[1368818280445, "infrastructure/hosts/show", 938.0, 443.0],
[1368818280534, "public_access/charts/show", 150.0, 101.0],
[1368818280739, "public_access/charts/show", 175.0, 94.0],
[1368818280790, "public_access/charts/show", 142.0, 84.0],
[1368818280814, "infrastructure/hosts/index", 2051.0, 611.0],
[1368818280826, "platform/plugin_pages/show", 2415.0, 625.0],
[1368818280827, "traced_errors/index", 1236.0, 751.0],
[1368818280948, "named_transactions/index", 975.0, 414.0],
[1368818280954, "applications/index", 997.0, 464.0],
[1368818280958, "infrastructure/hosts/show", 1262.0, 580.0],
[1368818280960, "gadgets/dashboard", 659.0, 330.0],
[1368818281039, "infrastructure/hosts/show", 834.0, 358.0],
[1368818281043, "applications/show", 2533.0, 503.0],
[1368818281308, "applications/index", 1444.0, 385.0],
[1368818281321, "public_access/charts/show", 211.0, 100.0],
[1368818281325, "applications/index", 791.0, 621.0],
[1368818281339, "applications/show", 1555.0, 401.0],
[1368818281428, "applications/index", 1338.0, 461.0],
[1368818281442, "applications/show", 951.0, 301.0],
[1368818281495, "infrastructure/hosts/show", 2582.0, 1578.0],
[1368818281549, "applications/index", 1531.0, 1157.0],
[1368818281551, "applications/show", 619.0, 328.0],
[1368818281561, "platform/plugin_pages/show", 1347.0, 800.0],
[1368818281569, "infrastructure/hosts/index", 1434.0, 501.0],
[1368818281602, "applications/show", 2234.0, 1558.0],
[1368818281674, "applications/index", 934.0, 413.0],
[1368818281702, "applications/show", 1225.0, 710.0],
[1368818281901, "infrastructure/hosts/index", 1326.0, 691.0],
[1368818281964, "applications/index", 986.0, 274.0],
[1368818282110, "applications/index", 1634.0, 1259.0],
[1368818282169, "traced_errors/index", 1414.0, 557.0],
[1368818282204, "users/edit", 1288.0, 864.0],
[1368818282207, "applications/show", 1986.0, 465.0],
[1368818282318, "infrastructure/hosts/index", 1785.0, 844.0],
[1368818282371, "applications/index", 969.0, 366.0],
[1368818282372, "applications/index", 1882.0, 973.0],
[1368818282493, "custom_views/show", 2911.0, 1259.0],
[1368818282526, "alerts/incidents/show", 2793.0, 0.0],
[1368818282567, "applications/show", 1433.0, 487.0],
[1368818282571, "applications/show", 10798.0, 638.0],
[1368818282594, "applications/index", 696.0, 346.0],
[1368818282753, "applications/show", 1425.0, 398.0],
[1368818282762, "periscope/dashboard/index", 754.0, 718.0],
[1368818282791, "applications/index", 2610.0, 1941.0],
[1368818282794, "applications/index", 874.0, 449.0],
[1368818282823, "platform/plugin_pages/show", 2206.0, 533.0],
[1368818282855, "applications/show", 1010.0, 515.0],
[1368818282933, "internal/subscriptions/index", 1022.0, 873.0],
[1368818282965, "infrastructure/hosts/index", 5196.0, 3133.0],
[1368818283016, "infrastructure/network/index", 1164.0, 703.0],
[1368818283070, "infrastructure/hosts/show", 1426.0, 928.0],
[1368818283084, "applications/show", 919.0, 424.0],
[1368818283193, "gadgets/dashboard", 451.0, 221.0],
[1368818283269, "public_access/charts/show", 413.0, 306.0],
[1368818283298, "infrastructure/hosts/index", 765.0, 283.0],
[1368818283330, "pages/home_signup", 1358.0, 117.0],
[1368818283392, "public_access/charts/show", 301.0, 197.0],
[1368818283508, "applications/show", 4506.0, 737.0],
[1368818283530, "gadgets/dashboard", 727.0, 531.0],
[1368818283594, "applications/show", 1571.0, 926.0],
[1368818283621, "infrastructure/hosts/index", 2790.0, 1118.0],
[1368818283623, "platform/plugin_pages/show", 1331.0, 730.0],
[1368818283656, "applications/show", 1398.0, 571.0],
[1368818283682, "applications/index", 1774.0, 545.0],
[1368818283695, "applications/show", 1396.0, 872.0],
[1368818283700, "alerts/incidents/show", 621.0, 1.0],
[1368818283783, "applications/show", 1611.0, 820.0],
[1368818283825, "applications/index", 2293.0, 1130.0],
[1368818283828, "traced_errors/index", 2547.0, 459.0],
[1368818283878, "applications/index", 1801.0, 1162.0],
[1368818283963, "traced_errors/index", 1335.0, 554.0],
[1368818284013, "applications/show", 1638.0, 608.0],
[1368818284016, "public_access/charts/show", 330.0, 307.0],
[1368818284016, "public_access/charts/show", 358.0, 331.0],
[1368818284080, "applications/show", 1232.0, 487.0],
[1368818284139, "applications/show", 1484.0, 628.0],
[1368818284161, "applications/show", 1535.0, 786.0],
[1368818284211, "applications/index", 1266.0, 851.0],
[1368818284243, "applications/show", 1251.0, 391.0],
[1368818284304, "platform/plugin_pages/show", 1087.0, 506.0],
[1368818284471, "custom_views/show", 1488.0, 683.0],
[1368818284517, "infrastructure/hosts/index", 2070.0, 1385.0],
[1368818284522, "applications/index", 1690.0, 1039.0],
[1368818284556, "applications/index", 1143.0, 779.0],
[1368818284574, "infrastructure/hosts/index", 1523.0, 355.0],
[1368818284575, "public_access/charts/show", 227.0, 168.0],
[1368818284675, "applications/index", 1311.0, 486.0],
[1368818284693, "infrastructure/hosts/index", 1126.0, 378.0],
[1368818284694, "applications/index", 1467.0, 627.0],
[1368818284786, "traced_errors/index", 519.0, 262.0],
[1368818284862, "applications/index", 1432.0, 1034.0],
[1368818284919, "traced_errors/index", 1437.0, 876.0],
[1368818284922, "applications/show", 1104.0, 587.0],
[1368818285013, "infrastructure/hosts/show", 1892.0, 1262.0],
[1368818285175, "infrastructure/hosts/index", 1075.0, 295.0],
[1368818285400, "platform/plugin_pages/show", 4929.0, 2612.0],
[1368818285403, "traced_errors/index", 1384.0, 598.0],
[1368818285407, "applications/show", 1774.0, 386.0],
[1368818285651, "infrastructure/hosts/index", 1099.0, 611.0],
[1368818285759, "public_access/charts/show", 862.0, 263.0],
[1368818285777, "applications/show", 1054.0, 459.0],
[1368818285805, "applications/show", 2227.0, 415.0],
[1368818286244, "public_access/charts/show", 485.0, 127.0],
[1368818286246, "public_access/charts/show", 1362.0, 249.0],
[1368818286281, "infrastructure/hosts/index", 6077.0, 756.0],
[1368818286299, "infrastructure/hosts/show", 2593.0, 1451.0],
[1368818286319, "pages/home_signup", 4307.0, 415.0],
[1368818286376, "applications/show", 7097.0, 964.0],
[1368818286468, "infrastructure/network/index", 3550.0, 588.0],
[1368818286613, "transactions/index", 2304.0, 1414.0],
[1368818286656, "public_access/charts/show", 599.0, 148.0],
[1368818286665, "public_access/charts/show", 810.0, 378.0],
[1368818286675, "mobile_applications/applications/index", 774.0, 525.0],
[1368818286811, "applications/index", 1282.0, 742.0],
[1368818286837, "applications/show", 913.0, 406.0],
[1368818286983, "accounts/show", 2004.0, 1067.0],
[1368818287039, "public_access/charts/show", 467.0, 104.0],
[1368818287052, "public_access/charts/show", 507.0, 97.0],
[1368818287054, "public_access/charts/show", 479.0, 115.0],
[1368818287056, "public_access/charts/show", 455.0, 98.0],
[1368818287137, "public_access/charts/show", 1000.0, 478.0],
[1368818287239, "applications/index", 663.0, 367.0],
[1368818287276, "infrastructure/hosts/index", 4049.0, 3206.0],
[1368818287304, "infrastructure/hosts/index", 2696.0, 768.0],
[1368818287344, "mobile_applications/applications/show", 1215.0, 655.0],
[1368818287378, "applications/index", 869.0, 555.0],
[1368818287465, "internal/customers/show", 1194.0, 1038.0],
[1368818287472, "periscope/partners/index", 3064.0, 2865.0],
[1368818287493, "applications/index", 1194.0, 428.0],
[1368818287541, "applications/index", 1551.0, 919.0],
[1368818287586, "infrastructure/hosts/show", 1699.0, 739.0],
[1368818287640, "public_access/charts/show", 512.0, 350.0],
[1368818287668, "public_access/charts/show", 556.0, 404.0],
[1368818287672, "public_access/charts/show", 610.0, 433.0],
[1368818287676, "public_access/charts/show", 652.0, 457.0],
[1368818287683, "applications/show", 1643.0, 747.0],
[1368818287683, "public_access/charts/show", 700.0, 482.0],
[1368818287684, "public_access/charts/show", 746.0, 505.0],
[1368818287685, "infrastructure/hosts/index", 1281.0, 453.0],
[1368818287690, "applications/show", 1165.0, 600.0],
[1368818287693, "applications/show", 1044.0, 714.0],
[1368818287786, "applications/show", 9645.0, 1576.0],
[1368818287787, "infrastructure/hosts/show", 988.0, 470.0],
[1368818287888, "public_access/charts/show", 409.0, 174.0],
[1368818287905, "applications/show", 3023.0, 2037.0],
[1368818287907, "infrastructure/hosts/show", 3196.0, 3004.0],
[1368818287910, "public_access/charts/show", 412.0, 172.0],
[1368818287933, "applications/show", 2015.0, 449.0],
[1368818287968, "public_access/charts/show", 548.0, 308.0],
[1368818288000, "public_access/charts/show", 597.0, 211.0],
[1368818288068, "applications/show", 3388.0, 2174.0],
[1368818288154, "applications/index", 894.0, 613.0],
[1368818288171, "infrastructure/disks/index", 1020.0, 620.0],
[1368818288210, "infrastructure/hosts/index", 1397.0, 757.0],
[1368818288279, "custom_views/show", 3604.0, 1711.0],
[1368818288283, "applications/show", 1288.0, 567.0],
[1368818288284, "applications/index", 901.0, 534.0],
[1368818288325, "applications/show", 5794.0, 1110.0],
[1368818288337, "public_access/charts/show", 404.0, 164.0],
[1368818288352, "infrastructure/hosts/index", 2869.0, 455.0],
[1368818288615, "public_access/charts/show", 439.0, 272.0],
[1368818288647, "infrastructure/hosts/index", 1333.0, 505.0],
[1368818288653, "infrastructure/hosts/index", 816.0, 488.0],
[1368818288660, "public_access/charts/show", 1314.0, 201.0],
[1368818288669, "applications/index", 1967.0, 789.0],
[1368818288795, "infrastructure/hosts/index", 1083.0, 490.0],
[1368818288799, "traced_errors/index", 886.0, 482.0],
[1368818289001, "transactions/index", 1163.0, 345.0],
[1368818289060, "infrastructure/hosts/index", 5819.0, 3072.0],
[1368818289094, "public_access/charts/show", 314.0, 243.0],
[1368818289096, "public_access/charts/show", 1327.0, 276.0],
[1368818289115, "applications/show", 1012.0, 382.0],
[1368818289117, "applications/map", 1309.0, 784.0],
[1368818289241, "infrastructure/hosts/index", 789.0, 331.0],
[1368818289255, "public_access/charts/show", 369.0, 244.0],
[1368818289275, "public_access/charts/show", 343.0, 256.0],
[1368818289280, "applications/show", 1934.0, 471.0],
[1368818289359, "public_access/charts/show", 601.0, 516.0],
[1368818289381, "public_access/charts/show", 481.0, 319.0],
[1368818289381, "public_access/charts/show", 429.0, 275.0],
[1368818289381, "public_access/charts/show", 377.0, 269.0],
[1368818289395, "public_access/charts/show", 364.0, 272.0],
[1368818289395, "public_access/charts/show", 1798.0, 144.0],
[1368818289395, "public_access/charts/show", 509.0, 320.0],
[1368818289396, "public_access/charts/show", 320.0, 256.0],
[1368818289409, "applications/index", 1182.0, 759.0],
[1368818289409, "users/edit", 1091.0, 906.0],
[1368818289434, "custom_views/show", 1817.0, 590.0],
[1368818289434, "applications/index", 1067.0, 573.0],
[1368818289482, "infrastructure/hosts/show", 1986.0, 671.0],
[1368818289484, "public_access/charts/show", 1343.0, 275.0],
[1368818289518, "applications/index", 858.0, 386.0],
[1368818289521, "applications/index", 1497.0, 1049.0],
[1368818289662, "infrastructure/processes/index", 1586.0, 998.0],
[1368818289802, "infrastructure/hosts/show", 966.0, 639.0],
[1368818289815, "sessions/new", 1000.0, 219.0],
[1368818289896, "infrastructure/hosts/index", 2036.0, 1456.0],
[1368818289918, "public_access/charts/show", 1894.0, 276.0],
[1368818289983, "traced_errors/index", 1215.0, 705.0],
[1368818290126, "applications/show", 902.0, 416.0],
[1368818290130, "infrastructure/hosts/index", 2484.0, 1728.0],
[1368818290193, "applications/show", 2383.0, 367.0],
[1368818290220, "applications/show", 1808.0, 904.0],
[1368818290285, "applications/show", 1203.0, 671.0],
[1368818290754, "public_access/charts/show", 631.0, 202.0],
[1368818290953, "public_access/charts/show", 1047.0, 241.0],
[1368818291040, "applications/show", 1350.0, 582.0],
[1368818291065, "public_access/charts/show", 849.0, 193.0],
[1368818291068, "public_access/charts/show", 864.0, 187.0],
[1368818291070, "public_access/charts/show", 885.0, 214.0],
[1368818291075, "public_access/charts/show", 907.0, 175.0],
[1368818291080, "public_access/charts/show", 942.0, 166.0],
[1368818291124, "infrastructure/hosts/show", 938.0, 413.0],
[1368818291205, "traced_errors/index", 1396.0, 1030.0],
[1368818291307, "public_access/charts/show", 1297.0, 491.0],
[1368818291443, "applications/show", 803.0, 386.0],
[1368818291538, "applications/show", 2408.0, 979.0],
[1368818291546, "infrastructure/hosts/index", 1202.0, 377.0],
[1368818291650, "public_access/charts/show", 1301.0, 473.0],
[1368818291663, "custom_views/show", 3363.0, 2114.0],
[1368818291754, "public_access/charts/show", 1767.0, 466.0],
[1368818291948, "applications/show", 1713.0, 666.0],
[1368818291953, "infrastructure/hosts/index", 932.0, 533.0],
[1368818292122, "infrastructure/hosts/index", 1674.0, 383.0],
[1368818292164, "instances/index", 1375.0, 812.0],
[1368818292165, "infrastructure/hosts/show", 710.0, 465.0],
[1368818292217, "applications/show", 2034.0, 564.0],
[1368818292221, "platform/plugin_pages/show", 1937.0, 1463.0],
[1368818292311, "applications/index", 1121.0, 799.0],
[1368818292355, "applications/index", 893.0, 541.0],
[1368818292358, "applications/show", 1810.0, 730.0],
[1368818292364, "applications/show", 2314.0, 729.0],
[1368818292387, "applications/show", 926.0, 369.0],
[1368818292444, "applications/show", 1471.0, 1024.0],
[1368818292456, "infrastructure/hosts/show", 2877.0, 1334.0],
[1368818292624, "public_access/charts/show", 609.0, 360.0],
[1368818292637, "public_access/charts/show", 664.0, 389.0],
[1368818292645, "traced_errors/index", 1234.0, 483.0],
[1368818292649, "applications/show", 3830.0, 659.0],
[1368818292805, "infrastructure/hosts/index", 956.0, 630.0],
[1368818292905, "applications/show", 1282.0, 754.0],
[1368818292993, "traced_errors/index", 4256.0, 3460.0],
[1368818293007, "applications/show", 1037.0, 572.0],
[1368818293039, "public_access/charts/show", 922.0, 390.0],
[1368818293040, "public_access/charts/show", 962.0, 405.0],
[1368818293047, "public_access/charts/show", 323.0, 254.0],
[1368818293078, "public_access/charts/show", 375.0, 265.0],
[1368818293116, "applications/index", 918.0, 764.0],
[1368818293125, "public_access/charts/show", 559.0, 271.0],
[1368818293127, "public_access/charts/show", 569.0, 279.0],
[1368818293282, "public_access/charts/show", 421.0, 260.0],
[1368818293323, "public_access/charts/show", 381.0, 314.0],
[1368818293370, "public_access/charts/show", 473.0, 391.0],
[1368818293378, "public_access/charts/show", 951.0, 382.0],
[1368818293382, "public_access/charts/show", 474.0, 349.0],
[1368818293383, "public_access/charts/show", 424.0, 314.0],
[1368818293385, "public_access/charts/show", 564.0, 392.0],
[1368818293385, "public_access/charts/show", 617.0, 457.0],
[1368818293386, "public_access/charts/show", 1072.0, 433.0],
[1368818293390, "infrastructure/hosts/show", 1135.0, 489.0],
[1368818293401, "infrastructure/hosts/index", 1236.0, 532.0],
[1368818293476, "platform/plugin_pages/show", 1184.0, 613.0],
[1368818293477, "applications/show", 1075.0, 755.0],
[1368818293513, "applications/show", 1107.0, 566.0],
[1368818293531, "named_transactions/show", 5032.0, 477.0],
[1368818293570, "infrastructure/hosts/index", 2991.0, 572.0],
[1368818293604, "infrastructure/hosts/index", 895.0, 316.0],
[1368818293611, "traced_errors/index", 1546.0, 987.0],
[1368818293719, "applications/index", 7810.0, 7113.0],
[1368818293728, "infrastructure/hosts/show", 1877.0, 1233.0],
[1368818293875, "applications/index", 4699.0, 2156.0],
[1368818293927, "infrastructure/hosts/show", 4385.0, 1271.0],
[1368818293968, "applications/index", 733.0, 410.0],
[1368818294065, "public_access/charts/show", 1587.0, 201.0],
[1368818294116, "applications/index", 2261.0, 356.0],
[1368818294168, "applications/index", 2117.0, 915.0],
[1368818294204, "transactions/index", 2873.0, 1137.0],
[1368818294375, "applications/index", 1128.0, 668.0],
[1368818294403, "applications/index", 8052.0, 7132.0],
[1368818294445, "infrastructure/hosts/show", 2031.0, 794.0],
[1368818294456, "applications/show", 1210.0, 892.0],
[1368818294460, "public_access/charts/show", 1185.0, 296.0],
[1368818294518, "traced_errors/show", 1276.0, 624.0],
[1368818294521, "infrastructure/hosts/index", 1131.0, 418.0],
[1368818294647, "applications/index", 1086.0, 666.0],
[1368818294739, "infrastructure/hosts/show", 2263.0, 879.0],
[1368818294800, "applications/index", 3031.0, 2761.0],
[1368818294801, "applications/show", 1819.0, 487.0],
[1368818295078, "transactions/index", 1300.0, 684.0],
[1368818295210, "traced_errors/index", 3844.0, 1479.0],
[1368818295216, "applications/index", 1534.0, 613.0],
[1368818295274, "applications/index", 2350.0, 1369.0],
[1368818295336, "applications/index", 998.0, 365.0],
[1368818295429, "applications/index", 1026.0, 639.0],
[1368818295495, "infrastructure/hosts/show", 2922.0, 1670.0],
[1368818295583, "infrastructure/hosts/index", 3048.0, 735.0],
[1368818295646, "infrastructure/hosts/index", 2820.0, 616.0],
[1368818295662, "applications/show", 1276.0, 407.0],
[1368818295673, "infrastructure/hosts/show", 1372.0, 817.0],
[1368818295673, "applications/show", 2528.0, 557.0],
[1368818295681, "infrastructure/hosts/show", 1394.0, 1141.0],
[1368818295707, "applications/show", 2333.0, 923.0],
[1368818295811, "infrastructure/network/index", 1420.0, 1029.0],
[1368818295838, "traced_errors/index", 967.0, 503.0],
[1368818295913, "applications/index", 1744.0, 896.0],
[1368818295993, "applications/show", 4791.0, 982.0],
[1368818296010, "applications/show", 3046.0, 679.0],
[1368818296125, "traced_errors/index", 1205.0, 977.0],
[1368818296241, "traced_errors/index", 1053.0, 630.0],
[1368818296317, "platform/plugin_pages/show", 1301.0, 1159.0],
[1368818296361, "public_access/charts/show", 1299.0, 187.0],
[1368818296370, "sessions/new", 852.0, 329.0],
[1368818296408, "applications/index", 3973.0, 1105.0],
[1368818296474, "applications/show", 1384.0, 421.0],
[1368818296505, "infrastructure/hosts/show", 1993.0, 1399.0],
[1368818296517, "traced_errors/index", 2581.0, 704.0],
[1368818296536, "sessions/new", 1448.0, 1046.0],
[1368818296611, "infrastructure/hosts/index", 1396.0, 1049.0],
[1368818296630, "infrastructure/hosts/index", 2053.0, 1110.0],
[1368818296697, "applications/show", 2126.0, 1616.0],
[1368818296704, "applications/show", 1679.0, 558.0],
[1368818296712, "applications/show", 1625.0, 670.0],
[1368818296775, "internal/customers/show", 1589.0, 1151.0],
[1368818296788, "applications/show", 1237.0, 479.0],
[1368818296801, "platform/plugin_pages/show", 6549.0, 2907.0],
[1368818296804, "traced_errors/index", 1330.0, 942.0],
[1368818296809, "infrastructure/hosts/show", 1202.0, 588.0],
[1368818296871, "applications/show", 1030.0, 498.0],
[1368818296903, "applications/show", 1286.0, 464.0],
[1368818297014, "infrastructure/hosts/index", 1531.0, 546.0],
[1368818297016, "infrastructure/hosts/index", 1811.0, 786.0],
[1368818297029, "public_access/charts/show", 264.0, 175.0],
[1368818297067, "applications/show", 1772.0, 1199.0],
[1368818297124, "applications/index", 1005.0, 432.0],
[1368818297129, "applications/index", 2333.0, 1726.0],
[1368818297234, "public_access/charts/show", 427.0, 274.0],
[1368818297310, "transactions/index", 2949.0, 963.0],
[1368818297319, "applications/show", 1573.0, 470.0],
[1368818297349, "infrastructure/hosts/index", 1361.0, 589.0],
[1368818297419, "public_access/charts/show", 485.0, 309.0],
[1368818297518, "applications/show", 1761.0, 852.0],
[1368818297565, "public_access/charts/show", 544.0, 347.0],
[1368818297566, "public_access/charts/show", 605.0, 381.0],
[1368818297573, "public_access/charts/show", 648.0, 402.0],
[1368818297668, "named_transactions/index", 1337.0, 951.0],
[1368818297673, "applications/show", 1352.0, 506.0],
[1368818297704, "public_access/charts/show", 965.0, 253.0],
[1368818297795, "applications/index", 1841.0, 936.0],
[1368818297845, "applications/index", 1983.0, 1432.0],
[1368818297863, "applications/show", 4647.0, 860.0],
[1368818297938, "applications/show", 1579.0, 585.0],
[1368818297939, "applications/index", 933.0, 366.0],
[1368818298033, "applications/index", 2463.0, 1871.0],
[1368818298248, "applications/show", 1417.0, 582.0],
[1368818298254, "applications/show", 1576.0, 1179.0],
[1368818298301, "public_access/charts/show", 6241.0, 722.0],
[1368818298308, "public_access/charts/show", 6259.0, 713.0],
[1368818298352, "applications/index", 3669.0, 1175.0],
[1368818298492, "public_access/charts/show", 2623.0, 148.0],
[1368818298505, "applications/show", 1756.0, 1150.0],
[1368818298606, "public_access/charts/show", 2897.0, 145.0],
[1368818298609, "public_access/charts/show", 2815.0, 138.0],
[1368818298614, "public_access/charts/show", 2804.0, 149.0],
[1368818298620, "public_access/charts/show", 2718.0, 145.0],
[1368818298622, "public_access/charts/show", 2687.0, 134.0],
[1368818298625, "public_access/charts/show", 2836.0, 134.0],
[1368818298626, "public_access/charts/show", 2702.0, 136.0],
[1368818298626, "public_access/charts/show", 2725.0, 142.0],
[1368818298682, "applications/show", 1054.0, 648.0],
[1368818298698, "applications/index", 1198.0, 602.0],
[1368818298737, "applications/index", 1415.0, 780.0],
[1368818298738, "public_access/charts/show", 2894.0, 133.0],
[1368818298857, "traced_errors/index", 1924.0, 468.0],
[1368818298915, "public_access/charts/show", 699.0, 259.0],
[1368818299012, "public_access/charts/show", 771.0, 282.0],
[1368818299014, "public_access/charts/show", 791.0, 266.0],
[1368818299016, "public_access/charts/show", 781.0, 273.0],
[1368818299017, "public_access/charts/show", 817.0, 265.0],
[1368818299017, "public_access/charts/show", 802.0, 262.0],
[1368818299055, "applications/show", 1312.0, 648.0],
[1368818299129, "sessions/new", 1606.0, 383.0],
[1368818299252, "applications/index", 831.0, 592.0],
[1368818299479, "infrastructure/hosts/show", 1186.0, 754.0],
[1368818299500, "traced_errors/index", 1288.0, 495.0],
[1368818299519, "public_access/charts/show", 1532.0, 493.0],
[1368818299574, "applications/show", 1372.0, 635.0],
[1368818299610, "sessions/new", 2153.0, 1080.0],
[1368818299636, "infrastructure/hosts/show", 1855.0, 686.0],
[1368818299704, "infrastructure/hosts/index", 1268.0, 638.0],
[1368818299722, "press/index", 1784.0, 367.0],
[1368818299728, "public_access/charts/show", 1585.0, 533.0],
[1368818299730, "public_access/charts/show", 1675.0, 519.0],
[1368818299731, "public_access/charts/show", 1663.0, 520.0],
[1368818299732, "public_access/charts/show", 1699.0, 499.0],
[1368818299739, "gadgets/dashboard", 2441.0, 2303.0],
[1368818299740, "public_access/charts/show", 1687.0, 508.0],
[1368818299740, "applications/show", 5631.0, 842.0],
[1368818299775, "applications/index", 854.0, 610.0],
[1368818299841, "public_access/charts/show", 1062.0, 217.0],
[1368818299914, "infrastructure/hosts/index", 1485.0, 1066.0],
[1368818299993, "applications/show", 1362.0, 502.0],
[1368818300021, "applications/show", 1249.0, 580.0],
[1368818300037, "applications/index", 1098.0, 646.0],
[1368818300372, "applications/show", 2085.0, 756.0],
[1368818300399, "traced_errors/index", 802.0, 521.0],
[1368818300409, "traced_errors/index", 967.0, 536.0],
[1368818300476, "public_access/charts/show", 1108.0, 137.0],
[1368818300503, "applications/index", 9017.0, 8300.0],
[1368818300543, "applications/index", 3457.0, 1459.0],
[1368818300592, "periscope/partners/index", 2459.0, 2409.0],
[1368818300635, "applications/show", 1727.0, 825.0],
[1368818300757, "applications/show", 4691.0, 683.0],
[1368818300932, "public_access/charts/show", 389.0, 309.0],
[1368818300990, "traced_errors/index", 1912.0, 1510.0],
[1368818300990, "public_access/charts/show", 470.0, 383.0],
[1368818301039, "applications/show", 2015.0, 613.0],
[1368818301079, "applications/show", 2345.0, 1068.0],
[1368818301168, "public_access/charts/show", 729.0, 284.0],
[1368818301180, "public_access/charts/show", 931.0, 268.0],
[1368818301302, "public_access/charts/show", 1422.0, 261.0],
[1368818301307, "alerts/incidents/index", 1711.0, 1129.0],
[1368818301586, "public_access/charts/show", 1050.0, 268.0],
[1368818301655, "platform/plugin_pages/show", 1556.0, 670.0],
[1368818301702, "infrastructure/hosts/index", 1184.0, 875.0],
[1368818301717, "applications/show", 3606.0, 988.0],
[1368818301796, "named_transactions/show", 1153.0, 835.0],
[1368818301817, "applications/index", 4732.0, 3776.0],
[1368818301845, "infrastructure/hosts/index", 933.0, 478.0],
[1368818301929, "public_access/charts/show", 2420.0, 272.0],
[1368818301940, "public_access/charts/show", 2430.0, 272.0],
[1368818301949, "public_access/charts/show", 2441.0, 266.0],
[1368818301958, "public_access/charts/show", 2453.0, 267.0],
[1368818301971, "public_access/charts/show", 2464.0, 267.0],
[1368818301984, "public_access/charts/show", 2475.0, 267.0],
[1368818301986, "applications/show", 889.0, 482.0],
[1368818301990, "public_access/charts/show", 2486.0, 268.0],
[1368818302012, "public_access/charts/show", 2418.0, 272.0],
[1368818302016, "public_access/charts/show", 2410.0, 273.0],
[1368818302018, "public_access/charts/show", 2408.0, 266.0],
[1368818302039, "public_access/charts/show", 2397.0, 452.0],
[1368818302127, "applications/index", 1533.0, 654.0],
[1368818302159, "applications/show", 2547.0, 840.0],
[1368818302162, "applications/show", 1224.0, 699.0],
[1368818302257, "infrastructure/hosts/index", 2158.0, 916.0],
[1368818302283, "applications/index", 1722.0, 636.0],
[1368818302373, "infrastructure/hosts/index", 3339.0, 5.0],
[1368818302503, "applications/show", 1282.0, 519.0],
[1368818302523, "applications/index", 1285.0, 857.0],
[1368818302624, "applications/index", 1470.0, 700.0],
[1368818302633, "applications/index", 807.0, 449.0],
[1368818302665, "infrastructure/hosts/show", 1363.0, 908.0],
[1368818302678, "applications/show", 2672.0, 1610.0],
[1368818302683, "applications/show", 2188.0, 1301.0],
[1368818302814, "applications/index", 8067.0, 694.0],
[1368818302816, "applications/show", 2571.0, 1064.0],
[1368818302829, "infrastructure/hosts/index", 1306.0, 529.0],
[1368818302870, "infrastructure/hosts/show", 2836.0, 899.0],
[1368818302940, "traced_errors/index", 3988.0, 2567.0],
[1368818302992, "traced_errors/index", 880.0, 636.0],
[1368818303018, "infrastructure/hosts/show", 1092.0, 387.0],
[1368818303423, "platform/plugin_pages/show", 1537.0, 857.0],
[1368818303427, "pages/web_monitoring", 3099.0, 273.0],
[1368818303471, "applications/index", 3275.0, 782.0],
[1368818303474, "pages/web_monitoring", 4311.0, 365.0],
[1368818303529, "applications/show", 3053.0, 499.0],
[1368818303557, "applications/index", 1142.0, 525.0],
[1368818303716, "applications/show", 1148.0, 610.0],
[1368818303722, "infrastructure/hosts/show", 1456.0, 741.0],
[1368818303762, "applications/show", 1737.0, 1052.0],
[1368818303778, "applications/index", 12176.0, 9594.0],
[1368818303926, "infrastructure/hosts/index", 913.0, 466.0],
[1368818303938, "infrastructure/hosts/index", 908.0, 655.0],
[1368818303939, "applications/index", 1594.0, 1187.0],
[1368818303972, "applications/show", 1497.0, 765.0],
[1368818303980, "applications/show", 1038.0, 721.0],
[1368818304036, "applications/show", 2778.0, 650.0],
[1368818304036, "infrastructure/hosts/index", 1225.0, 899.0],
[1368818304113, "infrastructure/hosts/index", 41586.0, 40917.0],
[1368818304125, "public_access/charts/show", 641.0, 383.0],
[1368818304133, "public_access/charts/show", 646.0, 372.0],
[1368818304134, "public_access/charts/show", 919.0, 395.0],
[1368818304134, "public_access/charts/show", 889.0, 371.0],
[1368818304146, "public_access/charts/show", 902.0, 373.0],
[1368818304157, "applications/show", 1589.0, 1068.0],
[1368818304157, "applications/show", 1118.0, 949.0],
[1368818304179, "public_access/charts/show", 8122.0, 730.0],
[1368818304180, "custom_views/show", 14285.0, 1083.0],
[1368818304198, "public_access/charts/show", 1117.0, 408.0],
[1368818304257, "traced_errors/index", 907.0, 415.0],
[1368818304293, "public_access/charts/show", 407.0, 326.0],
[1368818304355, "applications/index", 1106.0, 501.0],
[1368818304416, "traced_errors/index", 2256.0, 1341.0],
[1368818304435, "traced_errors/index", 2050.0, 1394.0],
[1368818304460, "public_access/charts/show", 368.0, 125.0],
[1368818304460, "applications/show", 1572.0, 1063.0],
[1368818304498, "applications/show", 1394.0, 477.0],
[1368818304513, "custom_views/show", 1075.0, 514.0],
[1368818304579, "pages/home_signup", 5293.0, 811.0],
[1368818304593, "applications/index", 941.0, 606.0],
[1368818304594, "applications/show", 1174.0, 500.0],
[1368818304619, "applications/index", 851.0, 375.0],
[1368818304631, "applications/show", 1531.0, 549.0],
[1368818304634, "pages/home_signup", 2302.0, 409.0],
[1368818304682, "applications/index", 1929.0, 783.0],
[1368818304743, "applications/index", 2176.0, 981.0],
[1368818304806, "applications/index", 4058.0, 1666.0],
[1368818304810, "public_access/charts/show", 348.0, 323.0],
[1368818304819, "public_access/charts/show", 341.0, 318.0],
[1368818304862, "applications/index", 1831.0, 1203.0],
[1368818304876, "public_access/charts/show", 280.0, 160.0],
[1368818304882, "applications/show", 1269.0, 650.0],
[1368818304918, "applications/index", 1440.0, 628.0],
[1368818305012, "infrastructure/hosts/index", 1199.0, 605.0],
[1368818305177, "public_access/charts/show", 1043.0, 337.0],
[1368818305291, "applications/index", 1468.0, 879.0],
[1368818305402, "public_access/charts/show", 391.0, 324.0],
[1368818305447, "public_access/charts/show", 437.0, 376.0],
[1368818305512, "infrastructure/hosts/show", 1941.0, 1316.0],
[1368818305522, "components/index", 2147.0, 622.0],
[1368818305568, "infrastructure/hosts/show", 1653.0, 1066.0],
[1368818305628, "traced_errors/index", 1455.0, 1048.0],
[1368818305716, "applications/show", 1583.0, 679.0],
[1368818305842, "public_access/charts/show", 2226.0, 299.0],
[1368818305844, "landing_pages/git_blame", 6393.0, 149.0],
[1368818305855, "public_access/charts/show", 2251.0, 328.0],
[1368818305856, "public_access/charts/show", 2221.0, 307.0],
[1368818305864, "public_access/charts/show", 2193.0, 300.0],
[1368818305884, "public_access/charts/show", 2210.0, 308.0],
[1368818305906, "applications/index", 1430.0, 969.0],
[1368818305908, "public_access/charts/show", 2187.0, 300.0],
[1368818305917, "platform/plugin_pages/index", 1130.0, 570.0],
[1368818305921, "public_access/charts/show", 2221.0, 336.0],
[1368818305926, "public_access/charts/show", 2213.0, 335.0],
[1368818305927, "traced_errors/index", 1358.0, 501.0],
[1368818305927, "applications/index", 2167.0, 1426.0],
[1368818305931, "public_access/charts/show", 2205.0, 335.0],
[1368818305935, "public_access/charts/show", 2196.0, 334.0],
[1368818305953, "named_transactions/sla_report", 673.0, 380.0],
[1368818306048, "infrastructure/hosts/index", 1536.0, 697.0],
[1368818306093, "public_access/charts/show", 2216.0, 307.0],
[1368818306266, "applications/show", 1559.0, 1087.0],
[1368818306307, "infrastructure/hosts/index", 1570.0, 1006.0],
[1368818306310, "applications/index", 706.0, 590.0],
[1368818306564, "mobile_applications/applications/show", 2400.0, 1852.0],
[1368818306591, "applications/index", 970.0, 437.0],
[1368818306637, "applications/index", 1771.0, 1384.0],
[1368818306689, "pages/mobile_monitoring", 1861.0, 80.0],
[1368818306753, "applications/show", 1925.0, 1148.0],
[1368818306770, "public_access/charts/show", 261.0, 133.0],
[1368818306824, "applications/show", 1269.0, 364.0],
[1368818306903, "applications/show", 1166.0, 407.0],
[1368818306913, "public_access/charts/show", 208.0, 76.0],
[1368818306930, "public_access/charts/show", 176.0, 85.0],
[1368818306937, "public_access/charts/show", 131.0, 83.0],
[1368818306939, "platform/plugin_pages/show", 1500.0, 794.0],
[1368818306941, "applications/show", 476.0, 1.0],
[1368818306970, "public_access/charts/show", 318.0, 207.0],
[1368818307011, "infrastructure/hosts/show", 2637.0, 1583.0],
[1368818307014, "public_access/charts/show", 143.0, 97.0],
[1368818307115, "public_access/charts/show", 171.0, 111.0],
[1368818307177, "public_access/charts/show", 340.0, 115.0],
[1368818307382, "applications/show", 1594.0, 626.0],
[1368818307426, "infrastructure/hosts/index", 3072.0, 786.0],
[1368818307433, "applications/index", 1087.0, 478.0],
[1368818307509, "applications/show", 2070.0, 1245.0],
[1368818307527, "traced_errors/index", 2056.0, 514.0],
[1368818307621, "applications/show", 2766.0, 502.0],
[1368818307674, "public_access/charts/show", 1154.0, 231.0],
[1368818307704, "infrastructure/hosts/index", 2583.0, 669.0],
[1368818307727, "infrastructure/hosts/index", 1406.0, 460.0],
[1368818307747, "traced_errors/index", 1548.0, 1147.0],
[1368818307811, "infrastructure/hosts/index", 1524.0, 453.0],
[1368818307817, "traced_errors/index", 1893.0, 853.0],
[1368818307874, "mobile_applications/applications/show", 1032.0, 479.0],
[1368818307940, "traced_errors/index", 1310.0, 649.0],
[1368818307985, "public_access/charts/show", 282.0, 168.0],
[1368818307985, "platform/plugin_pages/show", 1502.0, 635.0],
[1368818307987, "public_access/charts/show", 339.0, 211.0],
[1368818307988, "public_access/charts/show", 612.0, 320.0],
[1368818307996, "public_access/charts/show", 451.0, 213.0],
[1368818308024, "named_transactions/sla_report", 725.0, 508.0],
[1368818308031, "public_access/charts/show", 200.0, 82.0],
[1368818308101, "public_access/charts/show", 9045.0, 1640.0],
[1368818308113, "traced_errors/index", 4247.0, 2609.0],
[1368818308115, "public_access/charts/show", 975.0, 188.0],
[1368818308123, "public_access/charts/show", 1600.0, 238.0],
[1368818308143, "applications/index", 2457.0, 1217.0],
[1368818308154, "periscope/partners/show", 564.0, 521.0],
[1368818308186, "applications/show", 1496.0, 604.0],
[1368818308218, "applications/index", 957.0, 500.0],
[1368818308327, "public_access/charts/show", 203.0, 132.0],
[1368818308331, "applications/index", 714.0, 364.0],
[1368818308351, "infrastructure/hosts/index", 2996.0, 595.0],
[1368818308362, "traced_errors/index", 857.0, 621.0],
[1368818308374, "applications/show", 4618.0, 1594.0],
[1368818308449, "mobile_applications/applications/show", 887.0, 574.0],
[1368818308455, "databases/index", 2366.0, 729.0],
[1368818308477, "applications/show", 1766.0, 624.0],
[1368818308563, "applications/show", 899.0, 319.0],
[1368818308567, "infrastructure/hosts/show", 927.0, 483.0],
[1368818308581, "transactions/index", 869.0, 422.0],
[1368818308609, "applications/index", 1164.0, 821.0],
[1368818308671, "applications/index", 1425.0, 594.0],
[1368818308689, "applications/show", 2023.0, 849.0],
[1368818308760, "named_transactions/sla_report", 599.0, 381.0],
[1368818308887, "infrastructure/hosts/show", 2253.0, 1361.0],
[1368818308937, "applications/index", 773.0, 439.0],
[1368818308958, "applications/index", 1505.0, 563.0],
[1368818308983, "applications/show", 1227.0, 421.0],
[1368818309081, "applications/show", 2582.0, 991.0],
[1368818309151, "applications/show", 1139.0, 476.0],
[1368818309239, "applications/index", 2088.0, 825.0],
[1368818309248, "infrastructure/hosts/show", 6945.0, 2796.0],
[1368818309268, "applications/show", 2178.0, 660.0],
[1368818309282, "public_access/charts/show", 528.0, 135.0],
[1368818309318, "applications/show", 2920.0, 804.0],
[1368818309635, "applications/index", 6233.0, 5233.0],
[1368818309647, "invoices/show", 704.0, 699.0],
[1368818309669, "infrastructure/hosts/show", 9859.0, 1985.0],
[1368818309709, "public_access/charts/show", 314.0, 276.0],
[1368818309717, "public_access/charts/show", 319.0, 282.0],
[1368818309754, "applications/index", 4351.0, 626.0],
[1368818309769, "platform/plugin_pages/show", 1833.0, 788.0],
[1368818309867, "public_access/charts/show", 794.0, 445.0],
[1368818309880, "public_access/charts/show", 871.0, 440.0],
[1368818309886, "public_access/charts/show", 362.0, 272.0],
[1368818309902, "public_access/charts/show", 847.0, 434.0],
[1368818309932, "public_access/charts/show", 306.0, 275.0],
[1368818309936, "applications/show", 1143.0, 448.0],
[1368818309980, "public_access/charts/show", 352.0, 321.0],
[1368818309986, "public_access/charts/show", 869.0, 481.0],
[1368818310024, "sessions/new", 1727.0, 420.0],
[1368818310047, "applications/index", 1023.0, 535.0],
[1368818310102, "applications/show", 1474.0, 335.0],
[1368818310118, "traced_errors/index", 749.0, 458.0],
[1368818310121, "platform/plugin_pages/show", 5913.0, 3350.0],
[1368818310192, "applications/show", 1580.0, 561.0],
[1368818310244, "applications/show", 1262.0, 516.0],
[1368818310305, "applications/show", 1408.0, 856.0],
[1368818310312, "applications/show", 1073.0, 562.0],
[1368818310374, "applications/show", 1500.0, 528.0],
[1368818310376, "public_access/charts/show", 317.0, 237.0],
[1368818310384, "infrastructure/hosts/show", 1169.0, 455.0],
[1368818310393, "public_access/charts/show", 305.0, 141.0],
[1368818310416, "applications/show", 2111.0, 570.0],
[1368818310454, "infrastructure/hosts/show", 2078.0, 995.0],
[1368818310481, "platform/plugin_pages/show", 2739.0, 389.0],
[1368818310484, "applications/show", 9267.0, 2200.0],
[1368818310542, "databases/index", 3027.0, 2567.0],
[1368818310552, "applications/show", 903.0, 387.0],
[1368818310593, "public_access/charts/show", 360.0, 280.0],
[1368818310594, "public_access/charts/show", 529.0, 367.0],
[1368818310595, "public_access/charts/show", 417.0, 280.0],
[1368818310646, "public_access/charts/show", 575.0, 388.0],
[1368818310658, "applications/show", 955.0, 316.0],
[1368818310777, "mobile_applications/applications/index", 904.0, 450.0],
[1368818310806, "applications/index", 933.0, 402.0],
[1368818310819, "applications/show", 2323.0, 924.0],
[1368818310869, "infrastructure/hosts/index", 885.0, 442.0],
[1368818310942, "applications/index", 933.0, 616.0],
[1368818310944, "applications/show", 1522.0, 759.0],
[1368818310973, "applications/index", 1216.0, 807.0],
[1368818311037, "applications/index", 1399.0, 900.0],
[1368818311063, "applications/show", 1417.0, 454.0],
[1368818311086, "applications/show", 1020.0, 533.0],
[1368818311117, "infrastructure/hosts/index", 1408.0, 479.0],
[1368818311172, "pages/about", 2654.0, 168.0],
[1368818311211, "infrastructure/hosts/index", 1880.0, 525.0],
[1368818311220, "infrastructure/hosts/index", 1451.0, 500.0],
[1368818311222, "applications/index", 2177.0, 940.0],
[1368818311282, "applications/show", 2031.0, 473.0],
[1368818311285, "applications/index", 2857.0, 444.0],
[1368818311291, "traced_errors/index", 980.0, 431.0],
[1368818311296, "public_access/charts/show", 423.0, 315.0],
[1368818311476, "infrastructure/hosts/index", 3245.0, 827.0],
[1368818311517, "applications/show", 3061.0, 816.0],
[1368818311587, "platform/plugin_pages/show", 762.0, 390.0],
[1368818311592, "transactions/index", 2791.0, 2299.0],
[1368818311627, "applications/show", 4243.0, 1554.0],
[1368818311693, "periscope/partners/edit", 616.0, 568.0],
[1368818311895, "public_access/charts/show", 166.0, 87.0],
[1368818311966, "public_access/charts/show", 196.0, 129.0],
[1368818311967, "public_access/charts/show", 230.0, 164.0],
[1368818312139, "traced_errors/index", 915.0, 410.0],
[1368818312153, "applications/index", 62059.0, 1760.0],
[1368818312169, "public_access/charts/show", 144.0, 115.0],
[1368818312220, "infrastructure/hosts/show", 781.0, 465.0],
[1368818312230, "applications/show", 1141.0, 343.0],
[1368818312232, "public_access/charts/show", 174.0, 126.0],
[1368818312234, "public_access/charts/show", 201.0, 148.0],
[1368818312244, "applications/show", 876.0, 2.0],
[1368818312250, "applications/show", 1735.0, 1250.0],
[1368818312541, "applications/show", 1102.0, 572.0],
[1368818312549, "applications/show", 2195.0, 515.0],
[1368818312594, "deployments/index", 2829.0, 2415.0],
[1368818312620, "applications/show", 1596.0, 636.0],
[1368818312626, "traced_errors/index", 2950.0, 1598.0],
[1368818312846, "applications/index", 1775.0, 820.0],
[1368818312909, "infrastructure/hosts/index", 1319.0, 642.0],
[1368818312917, "infrastructure/hosts/index", 1524.0, 590.0],
[1368818313007, "traced_errors/index", 1401.0, 512.0],
[1368818313087, "applications/show", 1222.0, 486.0],
[1368818313158, "applications/index", 7191.0, 4857.0],
[1368818313214, "applications/show", 1710.0, 314.0],
[1368818313405, "applications/show", 1560.0, 700.0],
[1368818313483, "traced_errors/index", 1042.0, 523.0],
[1368818313501, "mobile_applications/applications/index", 433.0, 229.0],
[1368818313507, "public_access/charts/show", 538.0, 283.0],
[1368818313799, "public_access/charts/show", 293.0, 167.0],
[1368818313884, "mobile_applications/applications/show", 1555.0, 896.0],
[1368818313979, "applications/show", 1108.0, 393.0],
[1368818314029, "mobile_applications/applications/show", 851.0, 488.0],
[1368818314069, "public_access/charts/show", 550.0, 260.0],
[1368818314155, "applications/show", 1123.0, 672.0],
[1368818314155, "applications/show", 1160.0, 501.0],
[1368818314224, "infrastructure/hosts/index", 2811.0, 2062.0],
[1368818314344, "sessions/new", 2494.0, 523.0],
[1368818314370, "applications/show", 1039.0, 547.0],
[1368818314378, "applications/index", 888.0, 281.0],
[1368818314386, "traced_errors/index", 1329.0, 890.0],
[1368818314447, "infrastructure/hosts/index", 1002.0, 453.0],
[1368818314484, "applications/show", 3148.0, 1143.0],
[1368818314497, "applications/show", 862.0, 368.0],
[1368818314528, "infrastructure/hosts/show", 1456.0, 734.0],
[1368818314531, "applications/show", 2542.0, 977.0],
[1368818314675, "public_access/charts/show", 300.0, 196.0],
[1368818314896, "traced_errors/index", 1091.0, 373.0],
[1368818315107, "applications/show", 2548.0, 664.0],
[1368818315135, "traced_errors/index", 1194.0, 591.0],
[1368818315190, "transactions/index", 1253.0, 452.0],
[1368818315197, "applications/index", 1795.0, 666.0],
[1368818315206, "applications/index", 1539.0, 569.0],
[1368818315252, "pages/jobs", 1407.0, 57.0],
[1368818315294, "pages/customers", 2741.0, 326.0],
[1368818315537, "infrastructure/hosts/show", 1632.0, 468.0],
[1368818315806, "applications/show", 801.0, 590.0],
[1368818315962, "applications/index", 1033.0, 645.0],
[1368818316068, "public_access/charts/show", 456.0, 107.0],
[1368818316079, "public_access/charts/show", 952.0, 188.0],
[1368818316100, "applications/show", 1553.0, 554.0],
[1368818316171, "public_access/charts/show", 950.0, 99.0],
[1368818316191, "public_access/charts/show", 972.0, 177.0],
[1368818316199, "applications/show", 1114.0, 380.0],
[1368818316199, "public_access/charts/show", 960.0, 202.0],
[1368818316200, "public_access/charts/show", 1000.0, 161.0],
[1368818316200, "public_access/charts/show", 1001.0, 192.0],
[1368818316201, "public_access/charts/show", 1011.0, 353.0],
[1368818316326, "public_access/charts/show", 1050.0, 357.0],
[1368818316337, "public_access/charts/show", 1055.0, 344.0],
[1368818316443, "public_access/charts/show", 1242.0, 173.0],
[1368818316520, "public_access/charts/show", 663.0, 294.0],
[1368818316573, "applications/show", 1351.0, 500.0],
[1368818316578, "infrastructure/hosts/index", 1800.0, 1164.0],
[1368818316602, "traced_errors/index", 871.0, 640.0],
[1368818316611, "traced_errors/index", 1468.0, 1029.0],
[1368818316627, "applications/show", 1488.0, 662.0],
[1368818316630, "applications/show", 1133.0, 774.0],
[1368818316650, "applications/show", 1415.0, 361.0],
[1368818316796, "applications/show", 940.0, 569.0],
[1368818316856, "public_access/charts/show", 741.0, 322.0],
[1368818316867, "applications/show", 1047.0, 379.0],
[1368818316883, "infrastructure/hosts/index", 4368.0, 548.0],
[1368818316888, "applications/show", 1780.0, 809.0],
[1368818316932, "infrastructure/hosts/index", 1192.0, 521.0],
[1368818316987, "infrastructure/hosts/index", 963.0, 448.0],
[1368818316987, "infrastructure/hosts/index", 3156.0, 2135.0],
[1368818317048, "applications/index", 1328.0, 699.0],
[1368818317050, "mobile_applications/applications/setup", 1618.0, 520.0],
[1368818317070, "platform/plugin_pages/show", 1194.0, 556.0],
[1368818317084, "applications/index", 3595.0, 441.0],
[1368818317092, "infrastructure/hosts/index", 1599.0, 494.0],
[1368818317101, "applications/show", 1554.0, 411.0],
[1368818317131, "infrastructure/hosts/index", 1973.0, 753.0],
[1368818317169, "applications/show", 1139.0, 352.0],
[1368818317172, "applications/show", 1213.0, 368.0],
[1368818317195, "infrastructure/hosts/show", 1533.0, 614.0],
[1368818317223, "applications/show", 1311.0, 441.0],
[1368818317275, "landing_pages/nlp_mobile_monitoring", 24453.0, 795.0],
[1368818317324, "applications/show", 1103.0, 496.0],
[1368818317370, "applications/index", 797.0, 507.0],
[1368818317441, "infrastructure/hosts/index", 1121.0, 426.0],
[1368818317455, "applications/show", 779.0, 277.0],
[1368818317474, "platform/plugin_pages/show", 795.0, 305.0],
[1368818317583, "infrastructure/hosts/index", 4353.0, 2181.0],
[1368818317642, "public_access/charts/show", 1217.0, 328.0],
[1368818317699, "public_access/charts/show", 418.0, 317.0],
[1368818317969, "applications/index", 1035.0, 443.0],
[1368818317974, "applications/show", 683.0, 386.0],
[1368818318134, "applications/index", 890.0, 388.0],
[1368818318193, "applications/show", 1928.0, 761.0],
[1368818318214, "applications/show", 1173.0, 442.0],
[1368818318224, "public_access/charts/show", 276.0, 185.0],
[1368818318300, "infrastructure/hosts/show", 1685.0, 415.0],
[1368818318308, "applications/show", 1963.0, 646.0],
[1368818318309, "public_access/charts/show", 1872.0, 224.0],
[1368818318341, "sessions/new", 1092.0, 315.0],
[1368818318363, "public_access/charts/show", 212.0, 176.0],
[1368818318425, "transactions/index", 981.0, 494.0],
[1368818318452, "applications/show", 1302.0, 615.0],
[1368818318494, "applications/show", 1540.0, 458.0],
[1368818318588, "infrastructure/hosts/index", 1286.0, 638.0],
[1368818318665, "applications/index", 2129.0, 885.0],
[1368818318665, "public_access/charts/show", 283.0, 239.0],
[1368818318667, "applications/show", 1156.0, 418.0],
[1368818318679, "applications/show", 2038.0, 981.0],
[1368818318686, "public_access/charts/show", 419.0, 253.0],
[1368818318689, "public_access/charts/show", 364.0, 252.0],
[1368818318690, "public_access/charts/show", 455.0, 256.0],
[1368818318690, "public_access/charts/show", 327.0, 249.0],
[1368818318724, "applications/show", 2406.0, 1592.0],
[1368818318729, "applications/show", 1367.0, 579.0],
[1368818318731, "applications/show", 1217.0, 737.0],
[1368818318750, "articles/show", 1847.0, 386.0],
[1368818318751, "pages/signup_external", 992.0, 349.0],
[1368818318772, "infrastructure/hosts/index", 2775.0, 1748.0],
[1368818318782, "public_access/charts/show", 2465.0, 297.0],
[1368818318864, "enterprise/enterprise", 1240.0, 205.0],
[1368818318884, "applications/show", 2155.0, 1308.0],
[1368818318925, "applications/show", 23203.0, 17883.0],
[1368818318968, "infrastructure/hosts/index", 3873.0, 821.0],
[1368818319022, "applications/index", 2969.0, 750.0],
[1368818319031, "applications/show", 1306.0, 424.0],
[1368818319110, "infrastructure/hosts/index", 977.0, 487.0],
[1368818319121, "applications/show", 1704.0, 629.0],
[1368818319138, "custom_views/show", 3593.0, 2301.0],
[1368818319226, "public_access/charts/show", 974.0, 515.0],
[1368818319230, "applications/index", 1381.0, 926.0],
[1368818319393, "public_access/charts/show", 1087.0, 520.0],
[1368818319394, "public_access/charts/show", 1096.0, 344.0],
[1368818319441, "applications/show", 1244.0, 385.0],
[1368818319464, "named_transactions/show", 797.0, 503.0],
[1368818319511, "public_access/charts/show", 2702.0, 132.0],
[1368818319535, "public_access/charts/show", 2610.0, 218.0],
[1368818319572, "public_access/charts/show", 1118.0, 168.0],
[1368818319573, "public_access/charts/show", 1131.0, 341.0],
[1368818319580, "public_access/charts/show", 1103.0, 345.0],
[1368818319582, "public_access/charts/show", 1126.0, 300.0],
[1368818319582, "public_access/charts/show", 1135.0, 577.0],
[1368818319582, "public_access/charts/show", 1121.0, 329.0],
[1368818319609, "mobile_applications/applications/show", 1861.0, 1301.0],
[1368818319631, "public_access/charts/show", 2554.0, 360.0],
[1368818319676, "public_access/charts/show", 1151.0, 176.0],
[1368818319678, "public_access/charts/show", 1166.0, 159.0],
[1368818319679, "public_access/charts/show", 1158.0, 152.0],
[1368818319686, "public_access/charts/show", 1157.0, 520.0],
[1368818319687, "public_access/charts/show", 1168.0, 493.0],
[1368818319687, "public_access/charts/show", 1173.0, 553.0],
[1368818319688, "public_access/charts/show", 2688.0, 322.0],
[1368818319689, "public_access/charts/show", 2657.0, 333.0],
[1368818319723, "infrastructure/hosts/show", 994.0, 467.0],
[1368818319736, "infrastructure/hosts/show", 1122.0, 497.0],
[1368818319792, "public_access/charts/show", 1179.0, 351.0],
[1368818319812, "mobile_applications/applications/index", 1187.0, 687.0],
[1368818319848, "applications/show", 1264.0, 770.0],
[1368818319848, "applications/show", 1037.0, 432.0],
[1368818319864, "public_access/charts/show", 3013.0, 117.0],
[1368818319916, "applications/show", 4191.0, 775.0],
[1368818319929, "traced_errors/index", 1290.0, 510.0],
[1368818319938, "public_access/charts/show", 336.0, 259.0],
[1368818319939, "public_access/charts/show", 311.0, 232.0],
[1368818319945, "applications/index", 853.0, 550.0],
[1368818319990, "public_access/charts/show", 369.0, 286.0],
[1368818319998, "applications/show", 1056.0, 510.0],
[1368818320012, "applications/index", 1168.0, 599.0],
[1368818320034, "applications/show", 10501.0, 565.0],
[1368818320161, "platform/plugin_pages/show", 4800.0, 2305.0],
[1368818320278, "public_access/charts/show", 151.0, 76.0],
[1368818320290, "applications/show", 1517.0, 705.0],
[1368818320309, "applications/show", 1253.0, 706.0],
[1368818320389, "applications/show", 2668.0, 1160.0],
[1368818320436, "applications/index", 1560.0, 709.0],
[1368818320447, "public_access/charts/show", 2480.0, 281.0],
[1368818320454, "custom_views/show", 4587.0, 952.0],
[1368818320665, "applications/index", 1101.0, 526.0],
[1368818320684, "applications/index", 6039.0, 5369.0],
[1368818320736, "articles/show", 1180.0, 5.0],
[1368818320737, "applications/show", 888.0, 471.0],
[1368818320788, "applications/index", 915.0, 483.0],
[1368818320827, "applications/show", 5912.0, 1017.0],
[1368818320847, "infrastructure/hosts/index", 1390.0, 851.0],
[1368818320858, "public_access/charts/show", 1066.0, 270.0],
[1368818320866, "applications/show", 1762.0, 902.0],
[1368818320918, "mobile_applications/applications/index", 1281.0, 796.0],
[1368818320943, "pages/signup_external", 480.0, 70.0],
[1368818321036, "traced_errors/index", 1178.0, 556.0],
[1368818321071, "infrastructure/hosts/index", 1770.0, 729.0],
[1368818321133, "public_access/charts/show", 1151.0, 181.0],
[1368818321175, "applications/index", 936.0, 389.0],
[1368818321183, "applications/index", 2003.0, 383.0],
[1368818321183, "mobile_applications/applications/map", 1506.0, 754.0],
[1368818321198, "platform/plugin_pages/show", 2597.0, 1302.0],
[1368818321231, "applications/index", 2488.0, 829.0],
[1368818321266, "applications/index", 4493.0, 3053.0],
[1368818321269, "infrastructure/hosts/index", 1779.0, 657.0],
[1368818321412, "applications/show", 1119.0, 676.0],
[1368818321434, "applications/index", 766.0, 454.0],
[1368818321471, "infrastructure/hosts/show", 1613.0, 581.0],
[1368818321477, "applications/index", 1398.0, 793.0],
[1368818321479, "infrastructure/hosts/index", 2706.0, 1042.0],
[1368818321579, "applications/show", 1374.0, 653.0],
[1368818321597, "traced_errors/index", 1070.0, 442.0],
[1368818321599, "public_access/charts/show", 935.0, 325.0],
[1368818321611, "infrastructure/hosts/show", 1626.0, 851.0],
[1368818321690, "applications/index", 1494.0, 824.0],
[1368818321730, "infrastructure/processes/index", 1191.0, 598.0],
[1368818321759, "alerts/incidents/index", 1388.0, 503.0],
[1368818321842, "custom_views/show", 2303.0, 1371.0],
[1368818321914, "public_access/charts/show", 977.0, 314.0],
[1368818321915, "public_access/charts/show", 990.0, 316.0],
[1368818321916, "public_access/charts/show", 964.0, 322.0],
[1368818321921, "pages/home_signup", 1628.0, 162.0],
[1368818321922, "public_access/charts/show", 999.0, 311.0],
[1368818321923, "public_access/charts/show", 1014.0, 309.0],
[1368818321924, "infrastructure/disks/index", 3456.0, 2967.0],
[1368818321928, "instances/index", 1203.0, 625.0],
[1368818321944, "infrastructure/hosts/show", 1696.0, 636.0],
[1368818321951, "public_access/charts/show", 8510.0, 269.0],
[1368818321963, "traced_errors/index", 2203.0, 1125.0],
[1368818322004, "gadgets/dashboard", 1334.0, 991.0],
[1368818322064, "public_access/charts/show", 667.0, 135.0],
[1368818322115, "sessions/new", 926.0, 164.0],
[1368818322234, "public_access/charts/show", 2062.0, 571.0],
[1368818322291, "applications/show", 1092.0, 699.0],
[1368818322332, "public_access/charts/show", 841.0, 136.0],
[1368818322368, "infrastructure/hosts/show", 908.0, 442.0],
[1368818322371, "applications/show", 1135.0, 494.0],
[1368818322381, "applications/index", 1082.0, 279.0],
[1368818322396, "platform/plugin_pages/show", 1232.0, 439.0],
[1368818322420, "applications/show", 4224.0, 279.0],
[1368818322440, "applications/show", 1443.0, 610.0],
[1368818322480, "public_access/charts/show", 2103.0, 610.0],
[1368818322481, "public_access/charts/show", 2127.0, 594.0],
[1368818322482, "public_access/charts/show", 2139.0, 576.0],
[1368818322485, "public_access/charts/show", 2115.0, 594.0],
[1368818322491, "public_access/charts/show", 2151.0, 572.0],
[1368818322493, "transactions/index", 1588.0, 925.0],
[1368818322542, "applications/index", 836.0, 650.0],
[1368818322567, "applications/show", 1578.0, 535.0],
[1368818322593, "platform/plugin_pages/show", 1233.0, 506.0],
[1368818322845, "applications/show", 1173.0, 483.0],
[1368818322851, "named_transactions/show", 716.0, 414.0],
[1368818322932, "applications/index", 973.0, 512.0],
[1368818322970, "traced_errors/index", 2927.0, 1990.0],
[1368818323005, "public_access/charts/show", 1994.0, 142.0],
[1368818323184, "public_access/charts/show", 2683.0, 260.0],
[1368818323187, "platform/plugin_pages/show", 1451.0, 508.0],
[1368818323223, "public_access/charts/show", 9269.0, 641.0],
[1368818323274, "applications/index", 842.0, 403.0],
[1368818323286, "applications/index", 4359.0, 808.0],
[1368818323302, "public_access/charts/show", 747.0, 325.0],
[1368818323307, "public_access/charts/show", 737.0, 320.0],
[1368818323307, "public_access/charts/show", 468.0, 216.0],
[1368818323353, "api/users/accounts", 2402.0, 623.0],
[1368818323396, "public_access/charts/show", 980.0, 358.0],
[1368818323429, "traced_errors/index", 1513.0, 582.0],
[1368818323442, "infrastructure/hosts/index", 1161.0, 508.0],
[1368818323450, "applications/show", 2158.0, 993.0],
[1368818323499, "applications/show", 730.0, 407.0],
[1368818323502, "applications/show", 1079.0, 544.0],
[1368818323504, "public_access/charts/show", 635.0, 289.0],
[1368818323514, "public_access/charts/show", 628.0, 299.0],
[1368818323585, "infrastructure/hosts/show", 3514.0, 2927.0],
[1368818323592, "traced_errors/index", 10594.0, 627.0],
[1368818323658, "sessions/new", 858.0, 238.0],
[1368818323661, "public_access/charts/show", 541.0, 312.0],
[1368818323713, "sessions/new", 991.0, 247.0],
[1368818323746, "custom_views/show", 2023.0, 819.0],
[1368818323799, "infrastructure/hosts/index", 1178.0, 602.0],
[1368818323859, "applications/show", 1047.0, 367.0],
[1368818323865, "applications/index", 615.0, 307.0],
[1368818323905, "applications/show", 3193.0, 543.0],
[1368818323931, "public_access/charts/show", 741.0, 321.0],
[1368818323957, "pages/pricing", 1320.0, 182.0],
[1368818323959, "public_access/charts/show", 601.0, 226.0],
[1368818323968, "public_access/charts/show", 810.0, 563.0],
[1368818324016, "partners/connect", 2281.0, 144.0],
[1368818324032, "applications/show", 1325.0, 679.0],
[1368818324053, "applications/show", 1341.0, 738.0],
[1368818324103, "deployments/show", 1532.0, 1225.0],
[1368818324118, "applications/index", 8771.0, 643.0],
[1368818324244, "infrastructure/hosts/show", 1093.0, 469.0],
[1368818324309, "public_access/charts/show", 989.0, 261.0],
[1368818324310, "public_access/charts/show", 1008.0, 263.0],
[1368818324400, "public_access/charts/show", 1048.0, 289.0],
[1368818324401, "public_access/charts/show", 1058.0, 269.0],
[1368818324402, "public_access/charts/show", 1075.0, 270.0],
[1368818324422, "public_access/charts/show", 659.0, 315.0],
[1368818324523, "public_access/charts/show", 411.0, 86.0],
[1368818324530, "public_access/charts/show", 9490.0, 590.0],
[1368818324586, "infrastructure/hosts/index", 811.0, 424.0],
[1368818324596, "infrastructure/hosts/index", 970.0, 487.0],
[1368818324755, "traced_errors/index", 1413.0, 621.0],
[1368818324773, "sessions/new", 579.0, 97.0],
[1368818324780, "applications/index", 4063.0, 1008.0],
[1368818324836, "applications/index", 1015.0, 503.0],
[1368818324925, "mobile_applications/applications/transactions", 1187.0, 517.0],
[1368818324956, "x_rays/index", 688.0, 489.0],
[1368818324991, "public_access/charts/show", 710.0, 311.0],
[1368818324997, "public_access/charts/show", 882.0, 327.0],
[1368818325018, "infrastructure/hosts/index", 897.0, 463.0],
[1368818325022, "infrastructure/hosts/show", 1201.0, 464.0],
[1368818325033, "public_access/charts/show", 852.0, 317.0],
[1368818325074, "applications/show", 8453.0, 660.0],
[1368818325297, "applications/show", 2328.0, 585.0],
[1368818325318, "infrastructure/hosts/index", 4940.0, 2923.0],
[1368818325335, "infrastructure/hosts/index", 3061.0, 915.0],
[1368818325336, "applications/show", 3398.0, 504.0],
[1368818325407, "alerts/incidents/show", 1679.0, 1061.0],
[1368818325413, "traced_errors/index", 1177.0, 697.0],
[1368818325548, "public_access/charts/show", 352.0, 322.0],
[1368818325571, "public_access/charts/show", 320.0, 298.0],
[1368818325708, "applications/show", 3215.0, 881.0],
[1368818325735, "infrastructure/hosts/show", 1994.0, 951.0],
[1368818325847, "public_access/charts/show", 9808.0, 505.0],
[1368818325947, "applications/show", 885.0, 401.0],
[1368818325948, "infrastructure/hosts/show", 3609.0, 1536.0],
[1368818326096, "applications/index", 901.0, 392.0],
[1368818326157, "infrastructure/hosts/show", 3714.0, 3033.0],
[1368818326173, "infrastructure/hosts/index", 1563.0, 771.0],
[1368818326201, "applications/show", 973.0, 478.0],
[1368818326302, "infrastructure/hosts/index", 2833.0, 1485.0],
[1368818326344, "internal/customers/show", 2067.0, 915.0],
[1368818326399, "applications/show", 1040.0, 363.0],
[1368818326421, "applications/index", 2088.0, 1224.0],
[1368818326473, "traced_errors/index", 814.0, 457.0],
[1368818326566, "public_access/charts/show", 502.0, 164.0],
[1368818326569, "applications/show", 948.0, 387.0],
[1368818326589, "applications/index", 553.0, 295.0],
[1368818326596, "public_access/charts/show", 505.0, 202.0],
[1368818326598, "public_access/charts/show", 515.0, 185.0],
[1368818326599, "public_access/charts/show", 507.0, 169.0],
[1368818326599, "public_access/charts/show", 516.0, 177.0],
[1368818326617, "infrastructure/hosts/show", 1074.0, 450.0],
[1368818326681, "applications/show", 1454.0, 369.0],
[1368818326704, "applications/index", 1852.0, 1179.0],
[1368818326732, "public_access/charts/show", 1722.0, 131.0],
[1368818326860, "public_access/charts/show", 777.0, 276.0],
[1368818326909, "public_access/charts/show", 317.0, 233.0],
[1368818327002, "gadgets/dashboard", 1974.0, 1512.0],
[1368818327032, "gadgets/dashboard", 839.0, 399.0],
[1368818327061, "applications/show", 1091.0, 558.0],
[1368818327079, "infrastructure/hosts/index", 2747.0, 907.0],
[1368818327079, "named_transactions/show", 1082.0, 715.0],
[1368818327173, "infrastructure/hosts/show", 1634.0, 614.0],
[1368818327208, "applications/show", 2687.0, 2153.0],
[1368818327266, "infrastructure/hosts/index", 2228.0, 707.0],
[1368818327268, "infrastructure/hosts/index", 2252.0, 1124.0],
[1368818327321, "applications/index", 659.0, 346.0],
[1368818327349, "applications/index", 1705.0, 495.0],
[1368818327386, "pages/home_signup", 1190.0, 72.0],
[1368818327413, "applications/index", 1043.0, 409.0],
[1368818327438, "infrastructure/hosts/index", 1048.0, 601.0],
[1368818327476, "mobile_applications/errors/index", 1312.0, 806.0],
[1368818327542, "applications/show", 1106.0, 610.0],
[1368818327592, "applications/show", 5328.0, 1154.0],
[1368818327625, "applications/index", 1052.0, 638.0],
[1368818327782, "public_access/charts/show", 320.0, 123.0],
[1368818327786, "infrastructure/processes/index", 1414.0, 859.0],
[1368818327802, "applications/show", 1320.0, 625.0],
[1368818327860, "applications/show", 1647.0, 998.0],
[1368818327866, "applications/show", 969.0, 451.0],
[1368818327895, "public_access/charts/show", 333.0, 211.0],
[1368818328084, "public_access/charts/show", 347.0, 102.0],
[1368818328092, "mobile_applications/applications/index", 734.0, 331.0],
[1368818328121, "public_access/charts/show", 353.0, 125.0],
[1368818328126, "applications/show", 6231.0, 603.0],
[1368818328144, "public_access/charts/show", 401.0, 116.0],
[1368818328197, "applications/show", 1889.0, 456.0],
[1368818328484, "infrastructure/hosts/show", 1264.0, 436.0],
[1368818328677, "applications/show", 2105.0, 556.0],
[1368818328719, "infrastructure/hosts/show", 1089.0, 599.0],
[1368818328887, "applications/show", 2460.0, 964.0],
[1368818328924, "infrastructure/hosts/index", 2960.0, 866.0],
[1368818329021, "pages/rumvideo", 9401.0, 1189.0],
[1368818329059, "infrastructure/hosts/show", 852.0, 523.0],
[1368818329131, "mobile_applications/geographies/index", 935.0, 456.0],
[1368818329213, "public_access/charts/show", 584.0, 148.0],
[1368818329267, "public_access/charts/show", 872.0, 266.0],
[1368818329281, "infrastructure/hosts/show", 3412.0, 929.0],
[1368818329287, "applications/show", 1514.0, 543.0],
[1368818329295, "sessions/new", 1435.0, 78.0],
[1368818329404, "infrastructure/hosts/index", 1525.0, 532.0],
[1368818329601, "public_access/charts/show", 226.0, 56.0],
[1368818329694, "applications/show", 14324.0, 2084.0],
[1368818329726, "landing_pages/thirty_days", 3990.0, 241.0],
[1368818329740, "public_access/charts/show", 1311.0, 282.0],
[1368818329995, "infrastructure/hosts/show", 2056.0, 1536.0],
[1368818330003, "public_access/charts/show", 464.0, 125.0],
[1368818330039, "traced_errors/index", 1198.0, 629.0],
[1368818330119, "infrastructure/hosts/show", 2569.0, 596.0],
[1368818330148, "applications/show", 1034.0, 286.0],
[1368818330150, "pages/home_signup", 1124.0, 391.0],
[1368818330154, "applications/show", 4994.0, 524.0],
[1368818330156, "infrastructure/hosts/show", 1863.0, 642.0],
[1368818330179, "infrastructure/hosts/show", 1974.0, 517.0],
[1368818330406, "platform/plugin_pages/show", 2433.0, 996.0],
[1368818330419, "applications/index", 701.0, 284.0],
[1368818330420, "applications/show", 4648.0, 4135.0],
[1368818330537, "applications/show", 1591.0, 522.0],
[1368818330565, "public_access/charts/show", 163.0, 108.0],
[1368818330592, "infrastructure/hosts/show", 2201.0, 433.0],
[1368818330599, "applications/show", 1506.0, 498.0],
[1368818330622, "mobile_applications/applications/carriers", 1038.0, 508.0],
[1368818330668, "applications/show", 8516.0, 417.0],
[1368818330668, "applications/show", 2869.0, 485.0],
[1368818330882, "applications/show", 1321.0, 463.0],
[1368818330937, "infrastructure/hosts/index", 1680.0, 908.0],
[1368818331043, "applications/show", 1236.0, 402.0],
[1368818331125, "applications/show", 1781.0, 764.0],
[1368818331133, "infrastructure/hosts/index", 930.0, 416.0],
[1368818331221, "applications/show", 1924.0, 1013.0],
[1368818331261, "applications/index", 1080.0, 508.0],
[1368818331360, "transactions/index", 1250.0, 443.0],
[1368818331428, "applications/show", 1340.0, 386.0],
[1368818331429, "applications/show", 1873.0, 764.0],
[1368818331446, "applications/show", 948.0, 325.0],
[1368818331448, "applications/show", 1384.0, 599.0],
[1368818331501, "infrastructure/hosts/index", 1098.0, 521.0],
[1368818331505, "traced_errors/index", 765.0, 494.0],
[1368818331575, "applications/show", 1325.0, 533.0],
[1368818331696, "public_access/charts/show", 198.0, 91.0],
[1368818331704, "applications/index", 1094.0, 417.0],
[1368818331868, "applications/show", 1458.0, 781.0],
[1368818331893, "infrastructure/hosts/index", 1444.0, 1113.0],
[1368818331944, "public_access/charts/show", 205.0, 116.0],
[1368818331945, "applications/index", 1123.0, 347.0],
[1368818331999, "public_access/charts/show", 345.0, 133.0],
[1368818332072, "public_access/charts/show", 265.0, 175.0],
[1368818332075, "public_access/charts/show", 354.0, 221.0],
[1368818332076, "public_access/charts/show", 308.0, 197.0],
[1368818332082, "applications/index", 4368.0, 925.0],
[1368818332131, "infrastructure/hosts/show", 2137.0, 448.0],
[1368818332203, "infrastructure/hosts/index", 3485.0, 469.0],
[1368818332294, "infrastructure/hosts/index", 924.0, 536.0],
[1368818332295, "applications/index", 3177.0, 1130.0],
[1368818332332, "public_access/charts/show", 445.0, 340.0],
[1368818332352, "infrastructure/hosts/show", 1949.0, 383.0],
[1368818332364, "applications/show", 6124.0, 0.0],
[1368818332408, "alerts/incidents/index", 1693.0, 972.0],
[1368818332470, "applications/show", 2155.0, 1061.0],
[1368818332552, "applications/show", 1675.0, 452.0],
[1368818332580, "applications/index", 918.0, 393.0],
[1368818332581, "applications/show", 776.0, 497.0],
[1368818332623, "applications/show", 1944.0, 1066.0],
[1368818332655, "infrastructure/hosts/show", 1995.0, 669.0],
[1368818332661, "applications/show", 1810.0, 700.0],
[1368818332678, "applications/show", 1556.0, 543.0],
[1368818332791, "applications/show", 1083.0, 554.0],
[1368818332840, "applications/index", 1115.0, 719.0],
[1368818332842, "applications/show", 1473.0, 380.0],
[1368818332851, "infrastructure/hosts/index", 1112.0, 398.0],
[1368818332889, "applications/index", 785.0, 277.0],
[1368818332891, "applications/show", 2164.0, 1710.0],
[1368818332897, "public_access/charts/show", 200.0, 123.0],
[1368818332972, "alerts/incidents/show", 2518.0, 619.0],
[1368818332993, "sessions/new", 1771.0, 909.0],
[1368818333022, "applications/show", 999.0, 520.0],
[1368818333071, "landing_pages/nlp_mobile_monitoring", 81892.0, 1883.0],
[1368818333096, "public_access/charts/show", 2700.0, 802.0],
[1368818333194, "traced_errors/index", 1433.0, 550.0],
[1368818333260, "public_access/charts/show", 1156.0, 269.0],
[1368818333265, "public_access/charts/show", 1099.0, 269.0],
[1368818333268, "public_access/charts/show", 1149.0, 270.0],
[1368818333268, "public_access/charts/show", 1087.0, 269.0],
[1368818333275, "public_access/charts/show", 1075.0, 269.0],
[1368818333276, "public_access/charts/show", 1064.0, 270.0],
[1368818333287, "traced_errors/index", 1095.0, 557.0],
[1368818333302, "public_access/charts/show", 1052.0, 270.0],
[1368818333339, "public_access/charts/show", 1007.0, 271.0],
[1368818333344, "public_access/charts/show", 1030.0, 271.0],
[1368818333347, "public_access/charts/show", 1018.0, 271.0],
[1368818333353, "public_access/charts/show", 995.0, 271.0],
[1368818333354, "public_access/charts/show", 984.0, 272.0],
[1368818333450, "traced_errors/index", 1053.0, 546.0],
[1368818333570, "traced_errors/index", 2442.0, 591.0],
[1368818333633, "applications/show", 1218.0, 596.0],
[1368818333642, "applications/show", 2545.0, 546.0],
[1368818333643, "applications/show", 940.0, 419.0],
[1368818333662, "infrastructure/hosts/index", 3141.0, 683.0],
[1368818333671, "applications/index", 19027.0, 1633.0],
[1368818333712, "applications/index", 1265.0, 324.0],
[1368818333859, "public_access/charts/show", 943.0, 262.0],
[1368818333860, "public_access/charts/show", 969.0, 260.0],
[1368818333863, "pages/signup_external", 472.0, 146.0],
[1368818333863, "public_access/charts/show", 950.0, 264.0],
[1368818333871, "public_access/charts/show", 953.0, 261.0],
[1368818333872, "public_access/charts/show", 980.0, 266.0],
[1368818333875, "infrastructure/hosts/show", 1033.0, 529.0],
[1368818333908, "articles/show", 1562.0, 610.0],
[1368818333987, "applications/index", 811.0, 326.0],
[1368818334116, "infrastructure/hosts/index", 781.0, 354.0],
[1368818334230, "applications/show", 1119.0, 444.0],
[1368818334289, "traced_errors/index", 3331.0, 770.0],
[1368818334345, "platform/plugin_pages/show", 3046.0, 1885.0],
[1368818334393, "public_access/charts/show", 242.0, 73.0],
[1368818334395, "applications/show", 1310.0, 452.0],
[1368818334447, "public_access/charts/show", 379.0, 292.0],
[1368818334462, "infrastructure/hosts/show", 2067.0, 806.0],
[1368818334486, "pages/home_signup", 1987.0, 74.0],
[1368818334538, "partners/connect_details", 2015.0, 153.0],
[1368818334969, "applications/index", 1522.0, 983.0],
[1368818335023, "platform/plugin_pages/show", 1671.0, 526.0],
[1368818335034, "gadgets/dashboard", 345.0, 154.0],
[1368818335036, "public_access/charts/show", 190.0, 68.0],
[1368818335058, "databases/index", 1142.0, 678.0],
[1368818335085, "public_access/charts/show", 370.0, 188.0],
[1368818335092, "public_access/charts/show", 532.0, 286.0],
[1368818335096, "public_access/charts/show", 458.0, 193.0],
[1368818335096, "public_access/charts/show", 291.0, 144.0],
[1368818335096, "public_access/charts/show", 578.0, 304.0],
[1368818335097, "infrastructure/hosts/index", 1472.0, 711.0],
[1368818335275, "public_access/charts/show", 740.0, 551.0],
[1368818335314, "applications/show", 1084.0, 560.0],
[1368818335323, "mobile_applications/applications/index", 783.0, 319.0],
[1368818335331, "applications/show", 2918.0, 430.0],
[1368818335441, "applications/index", 860.0, 381.0],
[1368818335499, "public_access/charts/show", 325.0, 177.0],
[1368818335512, "public_access/charts/show", 299.0, 190.0],
[1368818335515, "public_access/charts/show", 321.0, 196.0],
[1368818335534, "public_access/charts/show", 712.0, 359.0],
[1368818335540, "public_access/charts/show", 882.0, 481.0],
[1368818335540, "public_access/charts/show", 788.0, 430.0],
[1368818335546, "infrastructure/hosts/show", 897.0, 430.0],
[1368818335562, "public_access/charts/show", 489.0, 279.0],
[1368818335576, "infrastructure/hosts/show", 6867.0, 4783.0],
[1368818335607, "infrastructure/hosts/index", 1042.0, 484.0],
[1368818335621, "platform/plugin_pages/show", 1090.0, 582.0],
[1368818335651, "applications/show", 2345.0, 387.0],
[1368818335669, "named_transactions/show", 1553.0, 665.0],
[1368818335678, "applications/show", 830.0, 528.0],
[1368818335777, "traced_errors/index", 1348.0, 806.0],
[1368818335855, "applications/show", 1875.0, 578.0],
[1368818335890, "applications/show", 3644.0, 3050.0],
[1368818335906, "traced_errors/index", 1190.0, 539.0],
[1368818336052, "databases/index", 1532.0, 506.0],
[1368818336082, "infrastructure/hosts/index", 4001.0, 633.0],
[1368818336118, "custom_views/show", 14919.0, 1960.0],
[1368818336199, "infrastructure/hosts/index", 4633.0, 1706.0],
[1368818336254, "transactions/index", 2800.0, 1957.0],
[1368818336271, "platform/plugin_pages/show", 1165.0, 620.0],
[1368818336288, "infrastructure/hosts/index", 2222.0, 869.0],
[1368818336302, "applications/index", 1181.0, 706.0],
[1368818336355, "applications/index", 1422.0, 832.0],
[1368818336358, "named_transactions/show", 1198.0, 687.0],
[1368818336517, "platform/plugin_pages/show", 1222.0, 618.0],
[1368818336601, "platform/plugin_pages/show", 1491.0, 877.0],
[1368818336607, "applications/show", 1057.0, 382.0],
[1368818336737, "applications/index", 1027.0, 460.0],
[1368818336896, "pages/signup_external", 273.0, 62.0],
[1368818336947, "infrastructure/hosts/show", 923.0, 518.0],
[1368818336996, "landing_pages/nlp_mobile_monitoring", 220635.0, 563.0],
[1368818337090, "applications/index", 1066.0, 439.0],
[1368818337179, "infrastructure/hosts/show", 974.0, 362.0],
[1368818337189, "platform/plugin_pages/show", 1852.0, 1512.0],
[1368818337194, "infrastructure/hosts/index", 2015.0, 1059.0],
[1368818337225, "applications/show", 1292.0, 757.0],
[1368818337272, "traced_errors/index", 1349.0, 779.0],
[1368818337331, "applications/index", 2061.0, 422.0],
[1368818337352, "infrastructure/hosts/show", 7262.0, 2464.0],
[1368818337368, "infrastructure/hosts/index", 2391.0, 1654.0],
[1368818337411, "public_access/charts/show", 1055.0, 267.0],
[1368818337431, "help/index", 852.0, 44.0],
[1368818337468, "pages/web_monitoring", 5216.0, 110.0],
[1368818337528, "applications/show", 1227.0, 378.0],
[1368818337546, "public_access/charts/show", 2082.0, 265.0],
[1368818337563, "public_access/charts/show", 2102.0, 265.0],
[1368818337575, "public_access/charts/show", 2115.0, 266.0],
[1368818337584, "public_access/charts/show", 2124.0, 266.0],
[1368818337669, "public_access/charts/show", 2091.0, 265.0],
[1368818337729, "transactions/index", 969.0, 490.0],
[1368818337796, "public_access/charts/show", 2133.0, 265.0],
[1368818337865, "public_access/charts/show", 2065.0, 266.0],
[1368818337893, "databases/index", 2396.0, 467.0],
[1368818337958, "public_access/charts/show", 2088.0, 267.0],
[1368818337965, "public_access/charts/show", 2081.0, 266.0],
[1368818337966, "public_access/charts/show", 2073.0, 266.0],
[1368818338015, "infrastructure/hosts/show", 1377.0, 984.0],
[1368818338030, "applications/show", 1230.0, 528.0],
[1368818338060, "platform/plugin_pages/show", 1297.0, 808.0],
[1368818338067, "traced_errors/index", 783.0, 452.0],
[1368818338146, "applications/index", 2551.0, 693.0],
[1368818338194, "applications/index", 1692.0, 653.0],
[1368818338225, "infrastructure/hosts/index", 1089.0, 390.0],
[1368818338375, "public_access/charts/show", 2632.0, 2151.0],
[1368818338424, "gadgets/dashboard", 1170.0, 538.0],
[1368818338438, "applications/index", 741.0, 424.0],
[1368818338531, "platform/plugin_pages/show", 1176.0, 491.0],
[1368818338704, "applications/show", 12315.0, 3419.0],
[1368818338730, "applications/index", 1234.0, 546.0],
[1368818338760, "applications/index", 710.0, 294.0],
[1368818338761, "infrastructure/hosts/index", 5151.0, 385.0],
[1368818338906, "applications/index", 3304.0, 1423.0],
[1368818338907, "applications/show", 1514.0, 596.0],
[1368818338973, "public_access/charts/show", 518.0, 124.0],
[1368818338973, "applications/show", 3962.0, 705.0],
[1368818339037, "infrastructure/hosts/index", 2402.0, 1797.0],
[1368818339062, "applications/show", 3290.0, 686.0],
[1368818339070, "applications/show", 2376.0, 1136.0],
[1368818339119, "applications/index", 752.0, 402.0],
[1368818339152, "applications/edit_alerts", 1357.0, 585.0],
[1368818339179, "applications/index", 2623.0, 794.0],
[1368818339186, "applications/index", 3731.0, 633.0],
[1368818339297, "public_access/charts/show", 432.0, 326.0],
[1368818339349, "applications/show", 3305.0, 2235.0],
[1368818339381, "infrastructure/hosts/index", 2703.0, 812.0],
[1368818339692, "infrastructure/hosts/index", 17445.0, 510.0],
[1368818339722, "traced_errors/index", 1386.0, 500.0],
[1368818339745, "infrastructure/hosts/index", 1216.0, 948.0],
[1368818339766, "applications/index", 935.0, 402.0],
[1368818339776, "infrastructure/hosts/show", 846.0, 392.0],
[1368818339822, "applications/show", 1153.0, 375.0],
[1368818339895, "applications/index", 1434.0, 779.0],
[1368818339950, "platform/plugin_pages/show", 3202.0, 561.0],
[1368818339990, "infrastructure/hosts/index", 2695.0, 1396.0],
[1368818340012, "applications/index", 2012.0, 811.0],
[1368818340032, "infrastructure/hosts/index", 4569.0, 3923.0],
[1368818340209, "applications/index", 3232.0, 858.0],
[1368818340220, "infrastructure/hosts/index", 1181.0, 582.0],
[1368818340220, "infrastructure/hosts/index", 1947.0, 277.0],
[1368818340272, "applications/show", 3037.0, 1108.0],
[1368818340274, "applications/index", 2930.0, 608.0],
[1368818340284, "public_access/charts/show", 394.0, 101.0],
[1368818340285, "pages/signup_external", 4296.0, 564.0],
[1368818340312, "traced_errors/index", 1300.0, 916.0],
[1368818340320, "articles/show", 8671.0, 1889.0],
[1368818340450, "applications/show", 1221.0, 449.0],
[1368818340499, "infrastructure/hosts/index", 17279.0, 1391.0],
[1368818340509, "traced_errors/index", 1525.0, 535.0],
[1368818340512, "applications/index", 630.0, 286.0],
[1368818340627, "public_access/charts/show", 488.0, 164.0],
[1368818340638, "infrastructure/hosts/index", 912.0, 793.0],
[1368818340668, "public_access/charts/show", 505.0, 189.0],
[1368818340702, "applications/index", 4296.0, 3428.0],
[1368818340724, "sessions/new", 620.0, 95.0],
[1368818340759, "infrastructure/hosts/index", 988.0, 392.0],
[1368818340760, "applications/show", 925.0, 426.0],
[1368818340817, "public_access/charts/show", 604.0, 173.0],
[1368818340831, "public_access/charts/show", 609.0, 195.0],
[1368818341004, "traced_errors/index", 2594.0, 435.0],
[1368818341013, "public_access/charts/show", 358.0, 314.0],
[1368818341013, "public_access/charts/show", 644.0, 231.0],
[1368818341068, "public_access/charts/show", 4868.0, 4829.0],
[1368818341069, "public_access/charts/show", 363.0, 325.0],
[1368818341069, "public_access/charts/show", 365.0, 328.0],
[1368818341075, "public_access/charts/show", 878.0, 199.0],
[1368818341082, "public_access/charts/show", 958.0, 428.0],
[1368818341091, "traced_errors/index", 989.0, 390.0],
[1368818341100, "infrastructure/hosts/index", 3375.0, 543.0],
[1368818341154, "public_access/charts/show", 1013.0, 391.0],
[1368818341259, "applications/show", 1346.0, 658.0],
[1368818341367, "applications/show", 1040.0, 484.0],
[1368818341393, "public_access/charts/show", 1111.0, 412.0],
[1368818341483, "applications/show", 1465.0, 583.0],
[1368818341512, "applications/show", 1381.0, 579.0],
[1368818341531, "infrastructure/hosts/index", 877.0, 471.0],
[1368818341541, "platform/plugin_pages/show", 938.0, 524.0],
[1368818341555, "gadgets/dashboard", 594.0, 279.0],
[1368818341597, "applications/show", 1060.0, 534.0],
[1368818341671, "infrastructure/hosts/show", 1930.0, 529.0],
[1368818341679, "applications/show", 1407.0, 659.0],
[1368818341706, "applications/index", 1180.0, 660.0],
[1368818341782, "infrastructure/hosts/index", 1181.0, 767.0],
[1368818341784, "applications/show", 1275.0, 533.0],
[1368818341818, "applications/setup", 3332.0, 1627.0],
[1368818341819, "applications/index", 1464.0, 663.0],
[1368818341881, "applications/index", 701.0, 303.0],
[1368818341924, "applications/index", 968.0, 365.0],
[1368818341992, "applications/show", 9272.0, 462.0],
[1368818342060, "public_access/charts/show", 500.0, 212.0],
[1368818342127, "applications/show", 2160.0, 638.0],
[1368818342160, "infrastructure/hosts/index", 1749.0, 403.0],
[1368818342209, "applications/show", 679.0, 388.0],
[1368818342317, "applications/show", 1041.0, 521.0],
[1368818342484, "infrastructure/hosts/index", 1504.0, 698.0],
[1368818342497, "transactions/index", 1253.0, 527.0],
[1368818342534, "platform/plugin_pages/show", 1831.0, 485.0],
[1368818342670, "infrastructure/hosts/show", 1144.0, 311.0],
[1368818342670, "infrastructure/hosts/index", 4867.0, 2829.0],
[1368818342732, "applications/show", 2793.0, 1939.0],
[1368818342836, "applications/show", 1123.0, 561.0],
[1368818342958, "pages/signup_external", 1086.0, 678.0],
[1368818342990, "applications/show", 2346.0, 490.0],
[1368818342990, "traced_errors/index", 1466.0, 996.0],
[1368818343106, "public_access/charts/show", 445.0, 249.0],
[1368818343127, "applications/show", 795.0, 448.0],
[1368818343159, "applications/show", 2210.0, 383.0],
[1368818343162, "applications/show", 855.0, 412.0],
[1368818343234, "public_access/charts/show", 611.0, 250.0],
[1368818343273, "applications/show", 1278.0, 532.0],
[1368818343278, "applications/show", 1231.0, 593.0],
[1368818343297, "infrastructure/hosts/index", 1400.0, 495.0],
[1368818343317, "public_access/charts/show", 633.0, 265.0],
[1368818343318, "public_access/charts/show", 644.0, 257.0],
[1368818343318, "public_access/charts/show", 670.0, 251.0],
[1368818343320, "public_access/charts/show", 656.0, 254.0],
[1368818343402, "applications/show", 1651.0, 718.0],
[1368818343492, "infrastructure/hosts/index", 1314.0, 681.0],
[1368818343539, "applications/index", 1033.0, 504.0],
[1368818343592, "infrastructure/hosts/show", 1504.0, 1051.0],
[1368818343633, "public_access/charts/show", 411.0, 249.0],
[1368818343633, "public_access/charts/show", 407.0, 249.0],
[1368818343653, "applications/show", 2856.0, 765.0],
[1368818343669, "gadgets/dashboard", 448.0, 197.0],
[1368818343733, "public_access/charts/show", 526.0, 259.0],
[1368818343783, "applications/show", 1181.0, 727.0],
[1368818343843, "applications/index", 942.0, 433.0],
[1368818343935, "public_access/charts/show", 232.0, 102.0],
[1368818343935, "applications/show", 1918.0, 530.0],
[1368818343984, "public_access/charts/show", 1262.0, 397.0],
[1368818343995, "public_access/charts/show", 1476.0, 497.0],
[1368818343996, "public_access/charts/show", 1430.0, 528.0],
[1368818344000, "public_access/charts/show", 1453.0, 504.0],
[1368818344000, "public_access/charts/show", 1464.0, 497.0],
[1368818344001, "public_access/charts/show", 1442.0, 510.0],
[1368818344063, "infrastructure/hosts/show", 6538.0, 1153.0],
[1368818344104, "articles/show", 4605.0, 1063.0],
[1368818344177, "applications/show", 1403.0, 773.0],
[1368818344197, "public_access/charts/show", 1564.0, 648.0],
[1368818344258, "gadgets/dashboard", 727.0, 527.0],
[1368818344264, "infrastructure/hosts/index", 1197.0, 461.0],
[1368818344282, "infrastructure/hosts/index", 1534.0, 597.0],
[1368818344286, "applications/show", 1732.0, 384.0],
[1368818344295, "applications/index", 1170.0, 408.0],
[1368818344296, "public_access/charts/show", 2218.0, 2017.0],
[1368818344307, "infrastructure/hosts/show", 5146.0, 560.0],
[1368818344342, "applications/show", 7568.0, 917.0],
[1368818344387, "applications/index", 970.0, 592.0],
[1368818344400, "traced_errors/index", 1149.0, 638.0],
[1368818344401, "applications/show", 1233.0, 905.0],
[1368818344425, "landing_pages/nlp_newrelic", 2211.0, 8.0],
[1368818344540, "applications/index", 1398.0, 619.0],
[1368818344576, "applications/show", 925.0, 446.0],
[1368818344606, "applications/index", 1890.0, 1497.0],
[1368818344717, "applications/show", 1781.0, 1075.0],
[1368818344720, "applications/index", 1496.0, 869.0],
[1368818344722, "periscope/partners/show", 637.0, 519.0],
[1368818344947, "applications/index", 875.0, 363.0],
[1368818345124, "applications/show", 1463.0, 8.0],
[1368818345379, "applications/index", 923.0, 426.0],
[1368818345393, "applications/show", 1183.0, 448.0],
[1368818345396, "applications/show", 1607.0, 646.0],
[1368818345424, "applications/show", 1504.0, 1026.0],
[1368818345514, "infrastructure/hosts/index", 1162.0, 600.0],
[1368818345602, "applications/index", 1005.0, 601.0],
[1368818345614, "applications/index", 1781.0, 931.0],
[1368818345637, "applications/index", 1547.0, 846.0],
[1368818345779, "applications/show", 2174.0, 1803.0],
[1368818345789, "public_access/charts/show", 308.0, 183.0],
[1368818345843, "applications/index", 2603.0, 565.0],
[1368818345845, "infrastructure/hosts/index", 1935.0, 803.0],
[1368818345875, "applications/show", 2069.0, 457.0],
[1368818345964, "applications/show", 1042.0, 566.0],
[1368818346041, "infrastructure/hosts/show", 4029.0, 687.0],
[1368818346047, "applications/show", 2528.0, 1044.0],
[1368818346097, "applications/index", 1156.0, 524.0],
[1368818346120, "pages/signup_external", 348.0, 125.0],
[1368818346139, "articles/show", 713.0, 25.0],
[1368818346170, "applications/show", 1346.0, 642.0],
[1368818346193, "applications/show", 1216.0, 781.0],
[1368818346248, "public_access/charts/show", 349.0, 322.0],
[1368818346254, "public_access/charts/show", 340.0, 317.0],
[1368818346294, "infrastructure/network/index", 3391.0, 638.0],
[1368818346314, "traced_errors/index", 49691.0, 3975.0],
[1368818346446, "applications/index", 1035.0, 506.0],
[1368818346458, "public_access/charts/show", 238.0, 144.0],
[1368818346468, "applications/index", 1152.0, 565.0],
[1368818346514, "public_access/charts/show", 582.0, 150.0],
[1368818346522, "public_access/charts/show", 601.0, 160.0],
[1368818346544, "public_access/charts/show", 591.0, 158.0],
[1368818346551, "public_access/charts/show", 608.0, 161.0],
[1368818346552, "public_access/charts/show", 616.0, 166.0],
[1368818346563, "public_access/charts/show", 763.0, 233.0],
[1368818346568, "public_access/charts/show", 771.0, 247.0],
[1368818346588, "infrastructure/hosts/show", 1171.0, 665.0],
[1368818346740, "optimize/optimizations/index", 1749.0, 649.0],
[1368818346863, "applications/show", 1467.0, 586.0],
[1368818346894, "infrastructure/hosts/show", 1143.0, 437.0],
[1368818346915, "applications/index", 7279.0, 564.0],
[1368818346979, "mobile_applications/applications/show", 993.0, 413.0],
[1368818346989, "traced_errors/index", 910.0, 571.0],
[1368818347040, "traced_errors/index", 1579.0, 825.0],
[1368818347047, "infrastructure/hosts/index", 1381.0, 653.0],
[1368818347084, "applications/show", 1640.0, 381.0],
[1368818347092, "transactions/index", 1121.0, 588.0],
[1368818347109, "applications/index", 2824.0, 771.0],
[1368818347111, "applications/index", 1707.0, 1103.0],
[1368818347313, "applications/index", 1297.0, 726.0],
[1368818347316, "mobile_applications/applications/index", 610.0, 358.0],
[1368818347436, "traced_errors/index", 1491.0, 352.0],
[1368818347439, "sessions/new", 831.0, 370.0],
[1368818347439, "public_access/charts/show", 215.0, 85.0],
[1368818347552, "public_access/charts/show", 3659.0, 227.0],
[1368818347622, "applications/show", 2259.0, 391.0],
[1368818347671, "infrastructure/hosts/show", 1157.0, 941.0],
[1368818347693, "public_access/charts/show", 188.0, 101.0],
[1368818347696, "applications/index", 912.0, 437.0],
[1368818347697, "public_access/charts/show", 409.0, 308.0],
[1368818347755, "public_access/charts/show", 455.0, 347.0],
[1368818347826, "applications/show", 1399.0, 691.0],
[1368818347977, "public_access/charts/show", 229.0, 119.0],
[1368818348041, "applications/show", 1963.0, 606.0],
[1368818348076, "applications/show", 1215.0, 711.0],
[1368818348169, "applications/show", 2843.0, 1911.0],
[1368818348190, "applications/index", 2727.0, 2149.0],
[1368818348193, "applications/show", 1833.0, 1007.0],
[1368818348193, "infrastructure/hosts/show", 1271.0, 518.0],
[1368818348214, "infrastructure/hosts/show", 1704.0, 1080.0],
[1368818348278, "applications/index", 1712.0, 1189.0],
[1368818348297, "applications/show", 2448.0, 1807.0],
[1368818348356, "applications/index", 862.0, 547.0],
[1368818348358, "public_access/charts/show", 189.0, 109.0],
[1368818348420, "applications/index", 1427.0, 377.0],
[1368818348422, "mobile_applications/applications/show", 1125.0, 628.0],
[1368818348465, "pages/signup_external", 680.0, 118.0],
[1368818348475, "applications/index", 777.0, 363.0],
[1368818348477, "infrastructure/hosts/show", 1268.0, 530.0],
[1368818348518, "applications/show", 1716.0, 573.0],
[1368818348534, "public_access/charts/show", 168.0, 117.0],
[1368818348566, "applications/show", 892.0, 415.0],
[1368818348586, "traced_errors/index", 2050.0, 1034.0],
[1368818348590, "public_access/charts/show", 152.0, 109.0],
[1368818348659, "sessions/new", 795.0, 93.0],
[1368818348691, "platform/plugin_pages/show", 1866.0, 1013.0],
[1368818348705, "applications/show", 2344.0, 993.0],
[1368818348710, "named_transactions/index", 2467.0, 1465.0],
[1368818348711, "infrastructure/hosts/index", 1650.0, 769.0],
[1368818348849, "public_access/charts/show", 161.0, 114.0],
[1368818348863, "help/index", 2309.0, 862.0],
[1368818348966, "applications/show", 1244.0, 919.0],
[1368818349055, "users/edit", 1642.0, 971.0],
[1368818349233, "infrastructure/hosts/index", 8543.0, 4466.0],
[1368818349238, "transactions/index", 2014.0, 134.0],
[1368818349238, "public_access/charts/show", 395.0, 262.0],
[1368818349242, "public_access/charts/show", 439.0, 253.0],
[1368818349307, "public_access/charts/show", 417.0, 298.0],
[1368818349307, "public_access/charts/show", 502.0, 376.0],
[1368818349308, "applications/index", 882.0, 360.0],
[1368818349308, "public_access/charts/show", 518.0, 356.0],
[1368818349309, "public_access/charts/show", 321.0, 250.0],
[1368818349314, "public_access/charts/show", 399.0, 257.0],
[1368818349322, "public_access/charts/show", 351.0, 253.0],
[1368818349322, "public_access/charts/show", 496.0, 264.0],
[1368818349323, "public_access/charts/show", 456.0, 258.0],
[1368818349340, "applications/show", 1369.0, 928.0],
[1368818349456, "traced_errors/index", 2444.0, 611.0],
[1368818349549, "infrastructure/hosts/show", 1547.0, 1027.0],
[1368818349550, "infrastructure/hosts/show", 1849.0, 818.0],
[1368818349725, "infrastructure/hosts/show", 3041.0, 1843.0],
[1368818349792, "infrastructure/hosts/show", 1965.0, 754.0],
[1368818350241, "applications/show", 4275.0, 2092.0],
[1368818350381, "applications/index", 1614.0, 477.0],
[1368818350532, "platform/plugin_pages/show", 4845.0, 2550.0],
[1368818350637, "traced_errors/index", 20710.0, 324.0],
[1368818350638, "public_access/charts/show", 751.0, 137.0],
[1368818350667, "infrastructure/hosts/show", 2411.0, 1354.0],
[1368818350698, "applications/show", 2652.0, 402.0],
[1368818350860, "public_access/charts/show", 825.0, 260.0],
[1368818351173, "infrastructure/hosts/index", 900.0, 429.0],
[1368818351207, "infrastructure/hosts/index", 1170.0, 691.0],
[1368818351221, "applications/show", 2137.0, 1592.0],
[1368818351374, "public_access/charts/show", 1222.0, 238.0],
[1368818351375, "applications/show", 3077.0, 2420.0],
[1368818351412, "traced_errors/index", 1758.0, 1067.0],
[1368818351421, "instances/index", 2338.0, 2010.0],
[1368818351462, "infrastructure/hosts/index", 1642.0, 709.0],
[1368818351542, "pages/about", 8506.0, 332.0],
[1368818351599, "applications/index", 1058.0, 422.0],
[1368818351677, "infrastructure/hosts/index", 3486.0, 2578.0],
[1368818351741, "infrastructure/hosts/show", 3201.0, 2513.0],
[1368818351742, "applications/index", 1336.0, 861.0],
[1368818351790, "applications/show", 1436.0, 705.0],
[1368818351970, "applications/show", 3006.0, 2431.0],
[1368818351975, "infrastructure/hosts/index", 3788.0, 2796.0],
[1368818351988, "applications/show", 1029.0, 349.0],
[1368818352184, "infrastructure/hosts/show", 2937.0, 1781.0],
[1368818352244, "sessions/new", 3064.0, 827.0],
[1368818352249, "applications/show", 2808.0, 2164.0],
[1368818352252, "applications/show", 1019.0, 408.0],
[1368818352268, "applications/show", 3939.0, 2429.0],
[1368818352310, "landing_pages/nlp_mobile_monitoring", 11408.0, 570.0],
[1368818352333, "platform/plugin_pages/show", 34296.0, 2922.0],
[1368818352466, "applications/index", 1343.0, 464.0],
[1368818352515, "applications/index", 4084.0, 2537.0],
[1368818352551, "platform/plugin_pages/show", 1228.0, 487.0],
[1368818352552, "applications/show", 3689.0, 2994.0],
[1368818352619, "platform/plugin_pages/show", 3963.0, 2560.0],
[1368818352642, "infrastructure/hosts/show", 1683.0, 685.0],
[1368818352779, "infrastructure/hosts/show", 2906.0, 1948.0],
[1368818352796, "infrastructure/hosts/index", 1335.0, 437.0],
[1368818352816, "applications/show", 1910.0, 554.0],
[1368818352874, "applications/index", 2022.0, 1345.0],
[1368818352884, "pages/signup_external", 327.0, 132.0],
[1368818352888, "applications/index", 3384.0, 2073.0],
[1368818352900, "infrastructure/hosts/show", 1505.0, 261.0],
[1368818352935, "applications/show", 1632.0, 560.0],
[1368818352958, "categories/search", 1107.0, 645.0],
[1368818353024, "sessions/new", 1157.0, 445.0],
[1368818353040, "public_access/charts/show", 317.0, 249.0],
[1368818353052, "infrastructure/hosts/index", 1308.0, 537.0],
[1368818353064, "public_access/charts/show", 402.0, 294.0],
[1368818353144, "applications/show", 2819.0, 901.0],
[1368818353165, "public_access/charts/show", 437.0, 282.0],
[1368818353167, "public_access/charts/show", 658.0, 521.0],
[1368818353184, "public_access/charts/show", 700.0, 438.0],
[1368818353190, "public_access/charts/show", 745.0, 501.0],
[1368818353206, "infrastructure/hosts/index", 3155.0, 556.0],
[1368818353218, "public_access/charts/show", 787.0, 432.0],
[1368818353276, "applications/show", 2969.0, 650.0],
[1368818353334, "public_access/charts/show", 689.0, 347.0],
[1368818353367, "infrastructure/hosts/get_started", 2492.0, 730.0],
[1368818353372, "public_access/charts/show", 419.0, 306.0],
[1368818353410, "applications/show", 1350.0, 650.0],
[1368818353453, "public_access/charts/show", 456.0, 335.0],
[1368818353455, "public_access/charts/show", 601.0, 403.0],
[1368818353455, "public_access/charts/show", 550.0, 338.0],
[1368818353478, "applications/show", 1089.0, 532.0],
[1368818353492, "public_access/charts/show", 749.0, 390.0],
[1368818353500, "applications/show", 1301.0, 611.0],
[1368818353545, "public_access/charts/show", 937.0, 370.0],
[1368818353588, "public_access/charts/show", 596.0, 259.0],
[1368818353610, "public_access/charts/show", 930.0, 424.0],
[1368818353613, "public_access/charts/show", 1155.0, 412.0],
[1368818353624, "public_access/charts/show", 1169.0, 432.0],
[1368818353624, "public_access/charts/show", 1131.0, 377.0],
[1368818353674, "infrastructure/hosts/index", 2261.0, 840.0],
[1368818353699, "public_access/charts/show", 941.0, 484.0],
[1368818353742, "applications/show", 3754.0, 2751.0],
[1368818353789, "public_access/charts/show", 1195.0, 818.0],
[1368818353791, "public_access/charts/show", 1156.0, 756.0],
[1368818353794, "public_access/charts/show", 1233.0, 778.0],
[1368818353805, "platform/plugin_pages/show", 2865.0, 557.0],
[1368818353820, "custom_views/show", 1628.0, 1017.0],
[1368818353829, "applications/index", 1242.0, 558.0],
[1368818353829, "public_access/charts/show", 1342.0, 373.0],
[1368818353847, "public_access/charts/show", 1371.0, 427.0],
[1368818353848, "applications/show", 1905.0, 1093.0],
[1368818353872, "applications/show", 902.0, 442.0],
[1368818353875, "infrastructure/hosts/index", 1212.0, 632.0],
[1368818353884, "public_access/charts/show", 1491.0, 675.0],
[1368818353884, "applications/index", 4033.0, 1340.0],
[1368818353891, "public_access/charts/show", 1546.0, 680.0],
[1368818353895, "public_access/charts/show", 1567.0, 746.0],
[1368818353897, "public_access/charts/show", 1606.0, 655.0],
[1368818353905, "public_access/charts/show", 15429.0, 3392.0],
[1368818353905, "public_access/charts/show", 15672.0, 3483.0],
[1368818353907, "public_access/charts/show", 12111.0, 3533.0],
[1368818353971, "applications/show", 1075.0, 278.0],
[1368818353991, "applications/index", 2816.0, 1572.0],
[1368818354000, "public_access/charts/show", 1356.0, 607.0],
[1368818354000, "public_access/charts/show", 1429.0, 670.0],
[1368818354001, "public_access/charts/show", 1352.0, 606.0],
[1368818354024, "infrastructure/hosts/index", 5027.0, 2625.0],
[1368818354047, "public_access/charts/show", 1361.0, 451.0],
[1368818354082, "public_access/charts/show", 1343.0, 657.0],
[1368818354091, "public_access/charts/show", 1348.0, 565.0],
[1368818354258, "public_access/charts/show", 2001.0, 656.0],
[1368818354264, "infrastructure/hosts/show", 1169.0, 673.0],
[1368818354273, "traced_errors/index", 1561.0, 871.0],
[1368818354308, "target_downtime_events/index", 1593.0, 866.0],
[1368818354320, "infrastructure/hosts/index", 1220.0, 797.0],
[1368818354328, "applications/index", 1311.0, 616.0],
[1368818354398, "applications/index", 1206.0, 829.0],
[1368818354418, "infrastructure/hosts/show", 4955.0, 1465.0],
[1368818354454, "traced_errors/index", 1095.0, 693.0],
[1368818354536, "applications/show", 1711.0, 461.0],
[1368818354646, "applications/index", 900.0, 582.0],
[1368818354723, "landing_pages/nlp_mobile_monitoring", 4680.0, 222.0],
[1368818354726, "infrastructure/hosts/index", 1924.0, 1163.0],
[1368818354743, "infrastructure/hosts/show", 4184.0, 2451.0],
[1368818354746, "applications/index", 2060.0, 946.0],
[1368818354751, "applications/index", 890.0, 361.0],
[1368818354753, "traced_errors/index", 2530.0, 1560.0],
[1368818354755, "public_access/charts/show", 372.0, 255.0],
[1368818354787, "infrastructure/hosts/index", 1069.0, 391.0],
[1368818354863, "applications/show", 1396.0, 753.0],
[1368818355153, "applications/index", 893.0, 561.0],
[1368818355158, "applications/show", 772.0, 335.0],
[1368818355162, "periscope/partners/show", 45.0, 1.0],
[1368818355247, "custom_views/show", 1381.0, 742.0],
[1368818355354, "landing_pages/nerdlife", 10719.0, 3340.0],
[1368818355516, "infrastructure/hosts/index", 1963.0, 664.0],
[1368818355523, "applications/index", 2024.0, 956.0],
[1368818355524, "transactions/index", 1593.0, 615.0],
[1368818355542, "applications/index", 2192.0, 1672.0],
[1368818355552, "transactions/index", 1694.0, 952.0],
[1368818355639, "applications/index", 675.0, 485.0],
[1368818355676, "public_access/charts/show", 3309.0, 691.0],
[1368818355679, "infrastructure/hosts/index", 1144.0, 640.0],
[1368818355703, "instances/index", 1969.0, 1407.0],
[1368818355764, "applications/index", 770.0, 310.0],
[1368818355824, "infrastructure/hosts/show", 4880.0, 2690.0],
[1368818355826, "sessions/new", 4878.0, 2462.0],
[1368818355842, "public_access/charts/show", 329.0, 160.0],
[1368818355900, "traced_errors/index", 1178.0, 312.0],
[1368818355933, "platform/plugin_pages/show", 2840.0, 1524.0],
[1368818355943, "infrastructure/hosts/index", 1184.0, 379.0],
[1368818355952, "applications/show", 2526.0, 653.0],
[1368818355962, "infrastructure/hosts/index", 924.0, 408.0],
[1368818355982, "pages/home_signup", 1782.0, 170.0],
[1368818355991, "applications/index", 4053.0, 2733.0],
[1368818356020, "applications/show", 5583.0, 2017.0],
[1368818356026, "applications/index", 1129.0, 625.0],
[1368818356028, "applications/show", 1605.0, 445.0],
[1368818356046, "custom_views/show", 2396.0, 1727.0],
[1368818356051, "applications/show", 3643.0, 626.0],
[1368818356283, "applications/index", 2053.0, 897.0],
[1368818356404, "applications/show", 4766.0, 559.0],
[1368818356483, "public_access/charts/show", 3303.0, 3228.0],
[1368818356536, "applications/show", 1110.0, 625.0],
[1368818356557, "applications/show", 991.0, 377.0],
[1368818356575, "applications/show", 3752.0, 1703.0],
[1368818356646, "applications/index", 1096.0, 627.0],
[1368818356662, "applications/index", 978.0, 502.0],
[1368818356666, "mobile_applications/applications/show", 3068.0, 804.0],
[1368818356673, "public_access/charts/show", 163.0, 114.0],
[1368818356704, "public_access/charts/show", 170.0, 117.0],
[1368818356831, "infrastructure/hosts/show", 1342.0, 605.0],
[1368818356858, "applications/index", 2574.0, 1669.0],
[1368818356860, "infrastructure/hosts/index", 2252.0, 1027.0],
[1368818356901, "infrastructure/hosts/show", 1541.0, 685.0],
[1368818356975, "applications/index", 1313.0, 472.0],
[1368818357109, "public_access/charts/show", 285.0, 187.0],
[1368818357136, "infrastructure/hosts/show", 2186.0, 1586.0],
[1368818357227, "sessions/new", 1946.0, 930.0],
[1368818357268, "applications/show", 10569.0, 9635.0],
[1368818357384, "applications/index", 1549.0, 970.0],
[1368818357439, "public_access/charts/show", 369.0, 229.0],
[1368818357459, "pages/home_signup", 16552.0, 5226.0],
[1368818357543, "public_access/charts/show", 457.0, 288.0],
[1368818357581, "applications/show", 1603.0, 441.0],
[1368818357601, "public_access/charts/show", 530.0, 332.0],
[1368818357620, "applications/index", 1290.0, 654.0],
[1368818357621, "public_access/charts/show", 604.0, 372.0],
[1368818357621, "applications/show", 2295.0, 584.0],
[1368818357632, "traced_errors/index", 13334.0, 13072.0],
[1368818357633, "sessions/new", 823.0, 227.0],
[1368818357646, "applications/show", 882.0, 356.0],
[1368818357683, "public_access/charts/show", 673.0, 412.0],
[1368818357834, "applications/index", 2103.0, 1047.0],
[1368818357897, "applications/index", 866.0, 376.0],
[1368818357956, "pages/signup_external", 457.0, 209.0],
[1368818358018, "applications/show", 1762.0, 124.0],
[1368818358143, "applications/show", 1507.0, 692.0],
[1368818358187, "applications/show", 982.0, 349.0],
[1368818358243, "infrastructure/hosts/index", 1735.0, 407.0],
[1368818358251, "sessions/new", 2013.0, 614.0],
[1368818358406, "applications/show", 1055.0, 574.0],
[1368818358431, "pages/signup_external", 1316.0, 216.0],
[1368818358673, "infrastructure/processes/index", 4658.0, 478.0],
[1368818358730, "applications/show", 1077.0, 463.0],
[1368818358882, "articles/show", 4275.0, 949.0],
[1368818358931, "applications/show", 3201.0, 772.0],
[1368818358941, "infrastructure/hosts/index", 1308.0, 380.0],
[1368818359061, "articles/show", 1941.0, 305.0],
[1368818359087, "applications/index", 970.0, 707.0],
[1368818359097, "applications/index", 3559.0, 699.0],
[1368818359155, "applications/index", 881.0, 476.0],
[1368818359208, "applications/index", 1263.0, 919.0],
[1368818359351, "applications/show", 1097.0, 596.0],
[1368818359417, "applications/show", 7457.0, 2989.0],
[1368818359606, "applications/show", 37892.0, 2070.0],
[1368818359886, "traced_errors/index", 1043.0, 429.0],
[1368818359996, "applications/show", 1604.0, 530.0],
[1368818360061, "applications/show", 1060.0, 614.0],
[1368818360075, "applications/show", 2213.0, 485.0],
[1368818360122, "sessions/new", 993.0, 221.0],
[1368818360136, "infrastructure/hosts/show", 6338.0, 3397.0],
[1368818360140, "applications/show", 1035.0, 474.0],
[1368818360177, "applications/index", 7339.0, 5665.0],
[1368818360186, "applications/show", 1185.0, 631.0],
[1368818360208, "applications/show", 1609.0, 375.0],
[1368818360245, "applications/show", 1278.0, 538.0],
[1368818360267, "public_access/charts/show", 327.0, 244.0],
[1368818360295, "public_access/charts/show", 400.0, 301.0],
[1368818360341, "traced_errors/index", 2425.0, 1775.0],
[1368818360473, "public_access/charts/show", 512.0, 293.0],
[1368818360483, "public_access/charts/show", 517.0, 286.0],
[1368818360548, "infrastructure/hosts/show", 2652.0, 2072.0],
[1368818360584, "pages/signup_external", 328.0, 228.0],
[1368818360616, "custom_views/show", 13940.0, 1321.0],
[1368818360626, "public_access/charts/show", 7277.0, 705.0],
[1368818360628, "public_access/charts/show", 7261.0, 717.0],
[1368818360628, "articles/show", 611.0, 202.0],
[1368818360741, "gadgets/dashboard", 979.0, 808.0],
[1368818360781, "applications/index", 808.0, 698.0],
[1368818360796, "infrastructure/hosts/show", 1542.0, 930.0],
[1368818360825, "applications/index", 728.0, 274.0],
[1368818360850, "public_access/charts/show", 1410.0, 111.0],
[1368818360941, "infrastructure/hosts/show", 1790.0, 1165.0],
[1368818360942, "public_access/charts/show", 1892.0, 106.0],
[1368818360945, "public_access/charts/show", 1760.0, 336.0],
[1368818360951, "public_access/charts/show", 1822.0, 343.0],
[1368818360960, "public_access/charts/show", 2024.0, 97.0],
[1368818360963, "public_access/charts/show", 1785.0, 346.0],
[1368818360970, "public_access/charts/show", 2024.0, 357.0],
[1368818360973, "public_access/charts/show", 2061.0, 471.0],
[1368818360974, "public_access/charts/show", 2142.0, 346.0],
[1368818360975, "infrastructure/hosts/show", 1561.0, 948.0],
[1368818361066, "public_access/charts/show", 2158.0, 96.0],
[1368818361148, "traced_errors/index", 1892.0, 1622.0],
[1368818361247, "infrastructure/hosts/index", 1744.0, 653.0],
[1368818361250, "applications/show", 1642.0, 877.0],
[1368818361253, "applications/show", 1887.0, 677.0],
[1368818361254, "pages/home_signup", 7688.0, 199.0],
[1368818361311, "applications/show", 859.0, 338.0],
[1368818361350, "applications/index", 2829.0, 2431.0],
[1368818361375, "applications/show", 1089.0, 542.0],
[1368818361559, "applications/index", 2248.0, 682.0],
[1368818361563, "applications/index", 2117.0, 433.0],
[1368818361621, "applications/show", 4356.0, 1047.0],
[1368818361792, "applications/show", 1260.0, 711.0],
[1368818361870, "infrastructure/hosts/index", 3672.0, 608.0],
[1368818361902, "public_access/charts/show", 485.0, 183.0],
[1368818361905, "applications/index", 1113.0, 569.0],
[1368818361948, "applications/show", 898.0, 430.0],
[1368818361982, "public_access/charts/show", 343.0, 183.0],
[1368818362051, "infrastructure/hosts/show", 1678.0, 832.0],
[1368818362074, "public_access/charts/show", 455.0, 290.0],
[1368818362121, "public_access/charts/show", 495.0, 218.0],
[1368818362127, "applications/show", 5640.0, 3355.0],
[1368818362128, "sessions/new", 2146.0, 1198.0],
[1368818362146, "infrastructure/hosts/index", 3364.0, 1913.0],
[1368818362183, "applications/show", 1530.0, 708.0],
[1368818362226, "applications/show", 936.0, 506.0],
[1368818362228, "public_access/charts/show", 605.0, 539.0],
[1368818362236, "infrastructure/hosts/index", 2486.0, 453.0],
[1368818362250, "public_access/charts/show", 653.0, 560.0],
[1368818362264, "sessions/new", 1086.0, 178.0],
[1368818362369, "applications/index", 901.0, 536.0],
[1368818362412, "platform/plugin_pages/show", 1481.0, 492.0],
[1368818362417, "applications/show", 1821.0, 853.0],
[1368818362440, "infrastructure/hosts/show", 6160.0, 908.0],
[1368818362522, "infrastructure/hosts/index", 915.0, 586.0],
[1368818362738, "infrastructure/hosts/show", 1318.0, 674.0],
[1368818362880, "applications/show", 20542.0, 19915.0],
[1368818362906, "infrastructure/hosts/show", 1418.0, 667.0],
[1368818362955, "infrastructure/hosts/show", 3839.0, 560.0],
[1368818362998, "infrastructure/hosts/show", 4460.0, 1356.0],
[1368818363130, "transactions/index", 1118.0, 725.0],
[1368818363133, "infrastructure/hosts/index", 1147.0, 427.0],
[1368818363136, "applications/show", 5397.0, 936.0],
[1368818363258, "applications/edit", 1263.0, 458.0],
[1368818363304, "infrastructure/hosts/show", 1307.0, 591.0],
[1368818363307, "applications/show", 1648.0, 698.0],
[1368818363322, "named_transactions/show", 3795.0, 1304.0],
[1368818363326, "applications/show", 4924.0, 401.0],
[1368818363330, "applications/index", 1623.0, 654.0],
[1368818363333, "applications/index", 837.0, 491.0],
[1368818363454, "applications/index", 1503.0, 516.0],
[1368818363475, "infrastructure/hosts/get_started", 1493.0, 305.0],
[1368818363482, "applications/show", 4900.0, 2481.0],
[1368818363491, "infrastructure/hosts/show", 2456.0, 591.0],
[1368818363499, "infrastructure/hosts/show", 2673.0, 709.0],
[1368818363551, "infrastructure/hosts/show", 2079.0, 1024.0],
[1368818363585, "applications/show", 940.0, 392.0],
[1368818363603, "pages/signup_external", 364.0, 80.0],
[1368818363605, "applications/show", 2107.0, 882.0],
[1368818363624, "help/index", 573.0, 1.0],
[1368818363706, "traced_errors/index", 1081.0, 587.0],
[1368818363738, "infrastructure/hosts/show", 1510.0, 924.0],
[1368818363773, "infrastructure/hosts/show", 5405.0, 1820.0],
[1368818363942, "traced_errors/index", 1642.0, 1253.0],
[1368818363943, "applications/edit_alerts", 1498.0, 748.0],
[1368818364022, "applications/index", 1667.0, 762.0],
[1368818364078, "applications/show", 1310.0, 786.0],
[1368818364092, "applications/index", 865.0, 417.0],
[1368818364235, "applications/index", 860.0, 387.0],
[1368818364326, "applications/setup", 5002.0, 1294.0],
[1368818364346, "infrastructure/hosts/index", 2739.0, 1575.0],
[1368818364351, "applications/show", 1274.0, 784.0],
[1368818364371, "accounts/(other)", 2742.0, 393.0],
[1368818364373, "traced_errors/index", 954.0, 458.0],
[1368818364400, "accounts/trackers", 2756.0, 683.0],
[1368818364475, "applications/index", 978.0, 488.0],
[1368818364524, "applications/map", 1664.0, 1140.0],
[1368818364591, "applications/show", 2895.0, 1319.0],
[1368818364594, "profiles/index", 2435.0, 467.0],
[1368818364596, "public_access/charts/show", 1200.0, 270.0],
[1368818364598, "public_access/charts/show", 1217.0, 427.0],
[1368818364601, "public_access/charts/show", 1177.0, 311.0],
[1368818364601, "public_access/charts/show", 1189.0, 320.0],
[1368818364602, "public_access/charts/show", 1155.0, 269.0],
[1368818364602, "public_access/charts/show", 1144.0, 269.0],
[1368818364654, "platform/plugin_pages/show", 1561.0, 888.0],
[1368818364670, "applications/show", 960.0, 514.0],
[1368818364670, "public_access/charts/show", 212.0, 154.0],
[1368818364677, "public_access/charts/show", 1110.0, 270.0],
[1368818364677, "public_access/charts/show", 1088.0, 271.0],
[1368818364678, "public_access/charts/show", 1132.0, 270.0],
[1368818364679, "public_access/charts/show", 1068.0, 275.0],
[1368818364681, "public_access/charts/show", 1099.0, 270.0],
[1368818364681, "public_access/charts/show", 1079.0, 275.0],
[1368818364781, "public_access/charts/show", 681.0, 355.0],
[1368818364783, "public_access/charts/show", 935.0, 352.0],
[1368818364783, "public_access/charts/show", 794.0, 375.0],
[1368818364785, "public_access/charts/show", 698.0, 366.0],
[1368818364786, "infrastructure/hosts/show", 2576.0, 1938.0],
[1368818364789, "public_access/charts/show", 940.0, 362.0],
[1368818364791, "public_access/charts/show", 970.0, 384.0],
[1368818364796, "platform/plugin_pages/show", 1533.0, 527.0],
[1368818364907, "applications/show", 4655.0, 725.0],
[1368818364937, "public_access/charts/show", 278.0, 155.0],
[1368818364976, "applications/show", 1479.0, 625.0],
[1368818365004, "applications/show", 5198.0, 4696.0],
[1368818365020, "articles/show", 456.0, 1.0],
[1368818365022, "pages/signup_external", 296.0, 88.0],
[1368818365032, "public_access/charts/show", 483.0, 298.0],
[1368818365056, "infrastructure/hosts/show", 1890.0, 599.0],
[1368818365103, "traced_errors/index", 1357.0, 841.0],
[1368818365106, "public_access/charts/show", 548.0, 298.0],
[1368818365111, "public_access/charts/show", 576.0, 300.0],
[1368818365135, "infrastructure/hosts/index", 1047.0, 443.0],
[1368818365188, "applications/index", 2823.0, 2280.0],
[1368818365214, "infrastructure/hosts/index", 1554.0, 567.0],
[1368818365261, "public_access/charts/show", 728.0, 303.0],
[1368818365281, "applications/index", 1772.0, 301.0],
[1368818365437, "public_access/charts/show", 939.0, 318.0],
[1368818365442, "applications/show", 2764.0, 605.0],
[1368818365671, "pages/signup_external", 2657.0, 389.0],
[1368818365739, "public_access/charts/show", 987.0, 307.0],
[1368818365859, "platform/plugin_pages/show", 1928.0, 599.0],
[1368818365871, "applications/index", 2980.0, 2688.0],
[1368818365956, "public_access/charts/show", 1452.0, 543.0],
[1368818365959, "mobile_applications/applications/show", 1074.0, 494.0],
[1368818365983, "infrastructure/hosts/index", 3317.0, 714.0],
[1368818366034, "applications/show", 49789.0, 2280.0],
[1368818366096, "public_access/charts/show", 1488.0, 554.0],
[1368818366098, "applications/show", 1993.0, 981.0],
[1368818366098, "public_access/charts/show", 1477.0, 563.0],
[1368818366168, "public_access/charts/show", 1511.0, 545.0],
[1368818366168, "public_access/charts/show", 1466.0, 572.0],
[1368818366169, "public_access/charts/show", 1500.0, 548.0],
[1368818366217, "applications/show", 2222.0, 1017.0],
[1368818366218, "public_access/charts/show", 778.0, 238.0],
[1368818366253, "public_access/charts/show", 799.0, 204.0],
[1368818366294, "applications/show", 2225.0, 420.0],
[1368818366304, "pages/signup_external", 370.0, 161.0],
[1368818366305, "help/index", 654.0, 59.0],
[1368818366313, "applications/show", 1743.0, 584.0],
[1368818366459, "public_access/charts/show", 1018.0, 161.0],
[1368818366460, "public_access/charts/show", 999.0, 185.0],
[1368818366461, "public_access/charts/show", 1059.0, 192.0],
[1368818366481, "public_access/charts/show", 1144.0, 181.0],
[1368818366485, "public_access/charts/show", 1989.0, 270.0],
[1368818366550, "infrastructure/hosts/index", 1072.0, 409.0],
[1368818366555, "applications/show", 1830.0, 882.0],
[1368818366573, "public_access/charts/show", 1162.0, 529.0],
[1368818366577, "infrastructure/hosts/show", 977.0, 462.0],
[1368818366608, "sessions/new", 1372.0, 661.0],
[1368818366839, "public_access/charts/show", 244.0, 126.0],
[1368818366909, "public_access/charts/show", 1358.0, 497.0],
[1368818366943, "applications/show", 5652.0, 574.0],
[1368818366945, "public_access/charts/show", 1369.0, 510.0],
[1368818366993, "applications/show", 2414.0, 628.0],
[1368818366996, "traced_errors/index", 1792.0, 571.0],
[1368818367008, "infrastructure/hosts/show", 929.0, 477.0],
[1368818367017, "public_access/charts/show", 507.0, 171.0],
[1368818367037, "public_access/charts/show", 130.0, 90.0],
[1368818367039, "mobile_applications/applications/index", 1047.0, 546.0],
[1368818367065, "applications/index", 1332.0, 882.0],
[1368818367115, "public_access/charts/show", 355.0, 330.0],
[1368818367119, "public_access/charts/show", 329.0, 306.0],
[1368818367223, "transactions/index", 12260.0, 2867.0],
[1368818367325, "applications/show", 975.0, 507.0],
[1368818367382, "public_access/charts/show", 419.0, 314.0],
[1368818367382, "infrastructure/hosts/index", 2962.0, 659.0],
[1368818367418, "users/edit", 4712.0, 1406.0],
[1368818367617, "pages/home_signup", 5507.0, 156.0],
[1368818367670, "traced_errors/index", 934.0, 462.0],
[1368818367690, "internal/customers/show", 1231.0, 727.0],
[1368818367700, "applications/show", 6979.0, 6154.0],
[1368818367713, "applications/index", 829.0, 430.0],
[1368818367757, "infrastructure/hosts/show", 1604.0, 833.0],
[1368818367813, "articles/show", 1475.0, 312.0],
[1368818367859, "traced_errors/index", 1769.0, 136.0],
[1368818368048, "applications/show", 1035.0, 542.0],
[1368818368264, "infrastructure/hosts/index", 2834.0, 461.0],
[1368818368342, "public_access/charts/show", 9057.0, 1719.0],
[1368818368519, "infrastructure/hosts/show", 2322.0, 552.0],
[1368818368538, "applications/show", 1299.0, 364.0],
[1368818368566, "applications/show", 1403.0, 504.0],
[1368818368580, "optimize/sla_report/index", 1587.0, 867.0],
[1368818368637, "ping_targets/index", 1078.0, 365.0],
[1368818368743, "applications/index", 1912.0, 767.0],
[1368818368767, "pages/signup_external", 285.0, 124.0],
[1368818368768, "articles/show", 593.0, 43.0],
[1368818368800, "mobile_applications/applications/show", 1064.0, 512.0],
[1368818368922, "applications/index", 41796.0, 1090.0],
[1368818368958, "applications/index", 1536.0, 548.0],
[1368818368998, "public_access/charts/show", 269.0, 183.0],
[1368818369001, "public_access/charts/show", 184.0, 129.0],
[1368818369003, "public_access/charts/show", 215.0, 150.0],
[1368818369004, "public_access/charts/show", 337.0, 211.0],
[1368818369062, "infrastructure/hosts/show", 1245.0, 652.0],
[1368818369077, "public_access/charts/show", 261.0, 171.0],
[1368818369186, "applications/index", 847.0, 390.0],
[1368818369220, "infrastructure/hosts/index", 3382.0, 956.0],
[1368818369224, "infrastructure/hosts/show", 1270.0, 599.0],
[1368818369274, "public_access/charts/show", 1779.0, 442.0],
[1368818369388, "applications/show", 1216.0, 441.0],
[1368818369407, "public_access/charts/show", 1498.0, 160.0],
[1368818369410, "infrastructure/hosts/show", 1298.0, 770.0],
[1368818369424, "mobile_applications/applications/show", 1006.0, 599.0],
[1368818369446, "applications/show", 4467.0, 1816.0],
[1368818369594, "applications/show", 4902.0, 1614.0],
[1368818369720, "applications/index", 2984.0, 1356.0],
[1368818369726, "traced_errors/index", 2329.0, 382.0],
[1368818369757, "applications/index", 1190.0, 702.0],
[1368818369758, "public_access/charts/show", 937.0, 265.0],
[1368818369795, "public_access/charts/show", 2123.0, 442.0],
[1368818369831, "applications/show", 2608.0, 685.0],
[1368818369847, "applications/index", 2023.0, 1364.0],
[1368818369854, "infrastructure/hosts/show", 886.0, 444.0],
[1368818369855, "applications/show", 1993.0, 607.0],
[1368818369855, "custom_views/show", 2593.0, 1677.0],
[1368818369979, "public_access/charts/show", 496.0, 167.0],
[1368818370004, "applications/show", 1465.0, 968.0],
[1368818370262, "public_access/charts/show", 2244.0, 264.0],
[1368818370271, "applications/show", 1271.0, 651.0],
[1368818370277, "public_access/charts/show", 2249.0, 263.0],
[1368818370289, "public_access/charts/show", 2267.0, 265.0],
[1368818370307, "public_access/charts/show", 2276.0, 263.0],
[1368818370333, "public_access/charts/show", 2292.0, 264.0],
[1368818370340, "public_access/charts/show", 308.0, 255.0],
[1368818370342, "public_access/charts/show", 336.0, 280.0],
[1368818370344, "public_access/charts/show", 2308.0, 264.0],
[1368818370345, "public_access/charts/show", 182.0, 84.0],
[1368818370348, "public_access/charts/show", 2322.0, 264.0],
[1368818370362, "public_access/charts/show", 2337.0, 265.0],
[1368818370371, "infrastructure/hosts/index", 1139.0, 487.0],
[1368818370375, "public_access/charts/show", 2240.0, 264.0],
[1368818370389, "public_access/charts/show", 2228.0, 264.0],
[1368818370404, "public_access/charts/show", 2217.0, 264.0],
[1368818370472, "public_access/charts/show", 476.0, 354.0],
[1368818370474, "public_access/charts/show", 430.0, 324.0],
[1368818370491, "pages/home_signup", 1608.0, 86.0],
[1368818370540, "public_access/charts/show", 563.0, 447.0],
[1368818370545, "applications/show", 3523.0, 1608.0],
[1368818370578, "infrastructure/hosts/index", 1154.0, 359.0],
[1368818370591, "public_access/charts/show", 1072.0, 271.0],
[1368818370724, "target_downtime_events/index", 761.0, 9.0],
[1368818370746, "platform/plugin_pages/show", 2174.0, 496.0],
[1368818370752, "infrastructure/hosts/index", 1151.0, 459.0],
[1368818370835, "users/edit", 2605.0, 1917.0],
[1368818370890, "pages/signup_external", 878.0, 334.0],
[1368818370895, "public_access/charts/show", 835.0, 423.0],
[1368818370898, "public_access/charts/show", 849.0, 425.0],
[1368818370901, "public_access/charts/show", 809.0, 430.0],
[1368818370955, "applications/show", 1114.0, 432.0],
[1368818371005, "public_access/charts/show", 832.0, 438.0],
[1368818371106, "applications/index", 3765.0, 682.0],
[1368818371118, "applications/show", 22897.0, 2382.0],
[1368818371125, "downloads/show", 2060.0, 925.0],
[1368818371224, "applications/index", 2149.0, 1333.0],
[1368818371247, "infrastructure/hosts/show", 1334.0, 761.0],
[1368818371252, "infrastructure/hosts/show", 2284.0, 1854.0],
[1368818371262, "applications/show", 1729.0, 669.0],
[1368818371305, "applications/index", 681.0, 421.0],
[1368818371327, "applications/show", 1133.0, 602.0],
[1368818371328, "public_access/charts/show", 1337.0, 232.0],
[1368818371363, "public_access/charts/show", 738.0, 199.0],
[1368818371414, "traced_errors/index", 965.0, 384.0],
[1368818371431, "applications/show", 918.0, 480.0],
[1368818371536, "public_access/charts/show", 752.0, 212.0],
[1368818371585, "alerts/incidents/show", 1201.0, 478.0],
[1368818371630, "public_access/charts/show", 634.0, 125.0],
[1368818371682, "traced_errors/index", 1419.0, 120.0],
[1368818371713, "public_access/charts/show", 976.0, 194.0],
[1368818371735, "traced_errors/index", 779.0, 276.0],
[1368818371774, "applications/show", 1255.0, 828.0],
[1368818371848, "applications/index", 2531.0, 515.0],
[1368818372017, "sessions/new", 22569.0, 3214.0],
[1368818372062, "applications/index", 1696.0, 1021.0],
[1368818372138, "infrastructure/hosts/index", 890.0, 468.0],
[1368818372141, "applications/show", 3256.0, 2601.0],
[1368818372174, "traced_errors/index", 898.0, 536.0],
[1368818372303, "applications/show", 948.0, 341.0],
[1368818372333, "infrastructure/hosts/show", 773.0, 527.0],
[1368818372422, "infrastructure/hosts/index", 888.0, 465.0],
[1368818372515, "applications/index", 1793.0, 776.0],
[1368818372594, "applications/show", 979.0, 448.0],
[1368818372605, "public_access/charts/show", 1065.0, 262.0],
[1368818372664, "applications/index", 749.0, 336.0],
[1368818372668, "applications/index", 4030.0, 1484.0],
[1368818372777, "applications/show", 1175.0, 479.0],
[1368818372914, "public_access/charts/show", 324.0, 248.0],
[1368818373013, "applications/show", 2863.0, 2147.0],
[1368818373063, "infrastructure/hosts/index", 2520.0, 711.0],
[1368818373137, "applications/show", 1562.0, 1093.0],
[1368818373252, "applications/show", 1086.0, 634.0],
[1368818373293, "applications/index", 794.0, 622.0],
[1368818373310, "infrastructure/hosts/show", 2316.0, 1377.0],
[1368818373325, "infrastructure/hosts/index", 1395.0, 345.0],
[1368818373425, "public_access/charts/show", 354.0, 271.0],
[1368818373441, "infrastructure/hosts/index", 1824.0, 541.0],
[1368818373452, "infrastructure/hosts/index", 1454.0, 642.0],
[1368818373535, "applications/show", 1113.0, 478.0],
[1368818373536, "infrastructure/hosts/show", 1525.0, 500.0],
[1368818373572, "public_access/charts/show", 328.0, 200.0],
[1368818373580, "public_access/charts/show", 396.0, 348.0],
[1368818373616, "infrastructure/hosts/show", 1412.0, 921.0],
[1368818373625, "applications/index", 1425.0, 389.0],
[1368818373703, "applications/show", 1617.0, 364.0],
[1368818373773, "applications/index", 1315.0, 711.0],
[1368818373896, "public_access/charts/show", 381.0, 290.0],
[1368818373901, "infrastructure/hosts/show", 1460.0, 915.0],
[1368818373921, "applications/show", 1332.0, 695.0],
[1368818373938, "applications/show", 939.0, 441.0],
[1368818373958, "mobile_applications/applications/index", 468.0, 255.0],
[1368818373963, "applications/show", 1194.0, 513.0],
[1368818374114, "infrastructure/hosts/show", 1633.0, 691.0],
[1368818374122, "public_access/charts/show", 616.0, 399.0],
[1368818374129, "applications/show", 2060.0, 1162.0],
[1368818374157, "applications/show", 993.0, 488.0],
[1368818374160, "public_access/charts/show", 310.0, 240.0],
[1368818374204, "public_access/charts/show", 627.0, 412.0],
[1368818374310, "applications/index", 1060.0, 557.0],
[1368818374334, "public_access/charts/show", 2781.0, 269.0],
[1368818374354, "applications/show", 1072.0, 486.0],
[1368818374393, "applications/show", 1174.0, 710.0],
[1368818374428, "public_access/charts/show", 371.0, 339.0],
[1368818374501, "public_access/charts/show", 365.0, 256.0],
[1368818374544, "custom_views/show", 58081.0, 28348.0],
[1368818374547, "applications/index", 1076.0, 722.0],
[1368818374615, "applications/show", 2177.0, 497.0],
[1368818374616, "public_access/charts/show", 360.0, 293.0],
[1368818374659, "traced_errors/index", 1023.0, 477.0],
[1368818374667, "mobile_applications/applications/show", 779.0, 674.0],
[1368818374691, "infrastructure/hosts/index", 1464.0, 999.0],
[1368818374707, "public_access/charts/show", 480.0, 138.0],
[1368818374786, "public_access/charts/show", 365.0, 335.0],
[1368818374802, "public_access/charts/show", 486.0, 156.0],
[1368818374830, "applications/show", 1119.0, 548.0],
[1368818374916, "public_access/charts/show", 618.0, 160.0],
[1368818374944, "public_access/charts/show", 664.0, 147.0],
[1368818374969, "custom_views/show", 1393.0, 547.0],
[1368818374993, "public_access/charts/show", 348.0, 259.0],
[1368818375098, "traced_errors/index", 2578.0, 448.0],
[1368818375108, "traced_errors/index", 2678.0, 1945.0],
[1368818375177, "public_access/charts/show", 447.0, 344.0],
[1368818375182, "applications/show", 1459.0, 579.0],
[1368818375251, "public_access/charts/show", 375.0, 246.0],
[1368818375273, "articles/show", 453.0, 109.0],
[1368818375281, "applications/index", 743.0, 315.0],
[1368818375384, "public_access/charts/show", 380.0, 347.0],
[1368818375527, "applications/index", 1221.0, 1152.0],
[1368818375569, "public_access/charts/show", 631.0, 253.0],
[1368818375593, "infrastructure/hosts/index", 1450.0, 516.0],
[1368818375612, "applications/map", 1332.0, 605.0],
[1368818375630, "infrastructure/hosts/show", 843.0, 370.0],
[1368818375655, "applications/index", 1927.0, 2.0],
[1368818375713, "applications/show", 1823.0, 722.0],
[1368818375778, "applications/show", 2428.0, 1421.0],
[1368818375888, "articles/show", 18918.0, 1573.0],
[1368818375898, "applications/index", 3212.0, 1581.0],
[1368818376071, "public_access/charts/show", 464.0, 199.0],
[1368818376085, "public_access/charts/show", 548.0, 209.0],
[1368818376145, "public_access/charts/show", 356.0, 73.0],
[1368818376147, "public_access/charts/show", 396.0, 363.0],
[1368818376173, "periscope/dashboard/index", 857.0, 584.0],
[1368818376184, "infrastructure/hosts/index", 1443.0, 507.0],
[1368818376185, "applications/show", 1018.0, 455.0],
[1368818376398, "applications/show", 1401.0, 577.0],
[1368818376482, "platform/plugin_pages/show", 1545.0, 1254.0],
[1368818376611, "infrastructure/hosts/show", 1849.0, 643.0],
[1368818376616, "applications/show", 1298.0, 719.0],
[1368818376644, "applications/index", 4332.0, 3452.0],
[1368818376645, "applications/index", 1014.0, 273.0],
[1368818376655, "applications/index", 1622.0, 811.0],
[1368818376776, "traced_errors/index", 1036.0, 475.0],
[1368818376779, "applications/show", 1155.0, 531.0],
[1368818376881, "applications/index", 1827.0, 1312.0],
[1368818376919, "infrastructure/hosts/index", 3556.0, 1405.0],
[1368818376926, "public_access/charts/show", 315.0, 205.0],
[1368818376943, "applications/index", 3334.0, 582.0],
[1368818376980, "pages/signup_external", 343.0, 203.0],
[1368818376992, "articles/show", 721.0, 205.0],
[1368818377022, "public_access/charts/show", 343.0, 261.0],
[1368818377032, "applications/index", 1979.0, 1471.0],
[1368818377151, "traced_errors/index", 1613.0, 921.0],
[1368818377163, "applications/show", 1264.0, 580.0],
[1368818377212, "applications/show", 1423.0, 598.0],
[1368818377240, "infrastructure/hosts/show", 1571.0, 933.0],
[1368818377286, "applications/index", 6300.0, 2554.0],
[1368818377298, "infrastructure/hosts/index", 1536.0, 914.0],
[1368818377300, "infrastructure/hosts/index", 903.0, 600.0],
[1368818377334, "traced_errors/index", 1230.0, 575.0],
[1368818377377, "infrastructure/hosts/index", 919.0, 393.0],
[1368818377404, "public_access/charts/show", 1240.0, 172.0],
[1368818377460, "applications/show", 958.0, 463.0],
[1368818377464, "traced_errors/index", 734.0, 310.0],
[1368818377506, "applications/show", 1269.0, 580.0],
[1368818377515, "public_access/charts/show", 1246.0, 239.0],
[1368818377518, "public_access/charts/show", 1240.0, 291.0],
[1368818377518, "public_access/charts/show", 1233.0, 304.0],
[1368818377531, "infrastructure/hosts/index", 2103.0, 675.0],
[1368818377612, "traced_errors/show", 9651.0, 9355.0],
[1368818377690, "public_access/charts/show", 1259.0, 165.0],
[1368818377692, "public_access/charts/show", 1251.0, 376.0],
[1368818377718, "public_access/charts/show", 1251.0, 185.0],
[1368818377718, "public_access/charts/show", 1251.0, 254.0],
[1368818377720, "platform/plugin_pages/show", 15303.0, 2526.0],
[1368818377727, "public_access/charts/show", 1041.0, 389.0],
[1368818377729, "platform/plugin_pages/show", 1129.0, 627.0],
[1368818377730, "applications/show", 1914.0, 627.0],
[1368818377756, "applications/show", 1096.0, 436.0],
[1368818377803, "applications/show", 1718.0, 439.0],
[1368818377810, "transactions/index", 1624.0, 1110.0],
[1368818377854, "public_access/charts/show", 1259.0, 277.0],
[1368818377857, "public_access/charts/show", 1267.0, 133.0],
[1368818377860, "public_access/charts/show", 1259.0, 367.0],
[1368818377861, "public_access/charts/show", 1268.0, 411.0],
[1368818377869, "public_access/charts/show", 1277.0, 195.0],
[1368818377885, "public_access/charts/show", 1277.0, 124.0],
[1368818377911, "admin/metric_explosion/show", 5166.0, 3191.0],
[1368818377919, "infrastructure/hosts/show", 1313.0, 555.0],
[1368818377927, "infrastructure/hosts/show", 1438.0, 467.0],
[1368818377947, "public_access/charts/show", 1340.0, 360.0],
[1368818377956, "public_access/charts/show", 1276.0, 404.0],
[1368818377974, "applications/show", 2040.0, 482.0],
[1368818378143, "applications/show", 2948.0, 468.0],
[1368818378236, "infrastructure/hosts/index", 1799.0, 605.0],
[1368818378269, "applications/index", 8462.0, 7442.0],
[1368818378364, "public_access/charts/show", 798.0, 153.0],
[1368818378374, "applications/show", 868.0, 335.0],
[1368818378522, "applications/show", 18343.0, 2610.0],
[1368818378546, "pages/home_signup", 1786.0, 329.0],
[1368818378617, "public_access/charts/show", 291.0, 238.0],
[1368818378630, "public_access/charts/show", 357.0, 245.0],
[1368818378631, "public_access/charts/show", 324.0, 242.0],
[1368818378632, "public_access/charts/show", 393.0, 260.0],
[1368818378636, "public_access/charts/show", 422.0, 265.0],
[1368818378636, "infrastructure/hosts/index", 1514.0, 589.0],
[1368818378686, "infrastructure/hosts/show", 1361.0, 858.0],
[1368818378706, "platform/plugin_pages/show", 1408.0, 808.0],
[1368818378736, "infrastructure/hosts/show", 2970.0, 442.0],
[1368818378819, "transactions/index", 1238.0, 418.0],
[1368818378853, "applications/show", 2048.0, 548.0],
[1368818378942, "applications/index", 1487.0, 523.0],
[1368818378993, "public_access/charts/show", 365.0, 204.0],
[1368818379254, "platform/plugin_pages/show", 1073.0, 477.0],
[1368818379261, "applications/index", 1031.0, 514.0],
[1368818379286, "applications/show", 1797.0, 1185.0],
[1368818379328, "applications/show", 1492.0, 992.0],
[1368818379399, "transactions/index", 3235.0, 870.0],
[1368818379418, "applications/show", 1256.0, 413.0],
[1368818379518, "infrastructure/hosts/show", 1911.0, 912.0],
[1368818379785, "applications/show", 883.0, 400.0],
[1368818379988, "platform/plugin_pages/edit", 4544.0, 2018.0],
[1368818380006, "applications/map", 1968.0, 1424.0],
[1368818380098, "applications/show", 1041.0, 516.0],
[1368818380186, "applications/show", 5343.0, 1142.0],
[1368818380395, "applications/index", 1244.0, 506.0],
[1368818380395, "platform/plugin_pages/show", 1353.0, 714.0],
[1368818380466, "applications/show", 1946.0, 542.0],
[1368818380610, "applications/show", 1069.0, 414.0],
[1368818380623, "applications/show", 2115.0, 1614.0],
[1368818380625, "applications/show", 984.0, 524.0],
[1368818380665, "traced_errors/index", 1597.0, 546.0],
[1368818380675, "applications/index", 1265.0, 854.0],
[1368818380724, "applications/edit", 3513.0, 737.0],
[1368818380807, "applications/index", 845.0, 321.0],
[1368818380861, "public_access/charts/show", 3469.0, 1047.0],
[1368818380887, "infrastructure/hosts/show", 1394.0, 721.0],
[1368818380927, "applications/show", 3832.0, 689.0],
[1368818380946, "traced_errors/show", 2459.0, 533.0],
[1368818380950, "infrastructure/hosts/get_started", 2019.0, 379.0],
[1368818380973, "applications/show", 1075.0, 305.0],
[1368818381020, "applications/index", 14637.0, 7029.0],
[1368818381092, "applications/show", 1283.0, 711.0],
[1368818381128, "infrastructure/hosts/index", 1652.0, 452.0],
[1368818381144, "public_access/charts/show", 278.0, 72.0],
[1368818381146, "public_access/charts/show", 285.0, 86.0],
[1368818381163, "applications/index", 1571.0, 908.0],
[1368818381180, "pages/about", 1152.0, 213.0],
[1368818381185, "public_access/charts/show", 329.0, 89.0],
[1368818381186, "externals/index", 3765.0, 3154.0],
[1368818381192, "applications/show", 991.0, 424.0],
[1368818381241, "applications/index", 1982.0, 563.0],
[1368818381268, "public_access/charts/show", 1087.0, 336.0],
[1368818381316, "public_access/charts/show", 1395.0, 311.0],
[1368818381317, "public_access/charts/show", 1121.0, 144.0],
[1368818381318, "public_access/charts/show", 1103.0, 308.0],
[1368818381322, "public_access/charts/show", 1094.0, 333.0],
[1368818381323, "public_access/charts/show", 1120.0, 282.0],
[1368818381323, "public_access/charts/show", 1107.0, 293.0],
[1368818381390, "applications/show", 945.0, 445.0],
[1368818381391, "applications/index", 1325.0, 981.0],
[1368818381392, "public_access/charts/show", 1136.0, 155.0],
[1368818381416, "public_access/charts/show", 386.0, 249.0],
[1368818381421, "public_access/charts/show", 1135.0, 428.0],
[1368818381425, "public_access/charts/show", 1147.0, 493.0],
[1368818381427, "public_access/charts/show", 1145.0, 166.0],
[1368818381427, "public_access/charts/show", 1153.0, 163.0],
[1368818381429, "public_access/charts/show", 1155.0, 447.0],
[1368818381437, "applications/show", 3523.0, 530.0],
[1368818381492, "public_access/charts/show", 1159.0, 468.0],
[1368818381498, "applications/show", 1617.0, 602.0],
[1368818381498, "traced_errors/index", 833.0, 634.0],
[1368818381520, "public_access/charts/show", 483.0, 333.0],
[1368818381524, "public_access/charts/show", 1166.0, 464.0],
[1368818381524, "public_access/charts/show", 1131.0, 181.0],
[1368818381576, "applications/show", 1249.0, 812.0],
[1368818381615, "platform/plugin_pages/show", 1061.0, 478.0],
[1368818381694, "public_access/charts/show", 4308.0, 1062.0],
[1368818381718, "public_access/charts/show", 690.0, 622.0],
[1368818381749, "applications/show", 829.0, 420.0],
[1368818381876, "traced_errors/index", 947.0, 601.0],
[1368818381905, "applications/index", 909.0, 561.0],
[1368818381940, "periscope/partners/index", 3020.0, 2960.0],
[1368818381956, "applications/show", 909.0, 443.0],
[1368818382036, "applications/index", 1756.0, 345.0],
[1368818382051, "infrastructure/hosts/show", 9416.0, 1313.0],
[1368818382056, "traced_errors/index", 1063.0, 662.0],
[1368818382175, "applications/index", 1691.0, 502.0],
[1368818382291, "applications/show", 5803.0, 686.0],
[1368818382395, "platform/plugin_pages/show", 1352.0, 409.0],
[1368818382398, "applications/index", 1377.0, 1078.0],
[1368818382415, "platform/plugin_pages/show", 3036.0, 1689.0],
[1368818382467, "public_access/charts/show", 4735.0, 1850.0],
[1368818382468, "public_access/charts/show", 4750.0, 1850.0],
[1368818382533, "applications/index", 1276.0, 596.0],
[1368818382567, "infrastructure/hosts/show", 7897.0, 469.0],
[1368818382636, "infrastructure/hosts/show", 1449.0, 369.0],
[1368818382743, "applications/index", 2401.0, 511.0],
[1368818382786, "public_access/charts/show", 1300.0, 296.0],
[1368818382807, "public_access/charts/show", 2673.0, 312.0],
[1368818382810, "traced_errors/index", 1263.0, 677.0],
[1368818382856, "externals/index", 1005.0, 696.0],
[1368818382973, "infrastructure/hosts/index", 3114.0, 613.0],
[1368818382974, "transactions/index", 1035.0, 580.0],
[1368818382975, "optimize/optimizations/index", 748.0, 1.0],
[1368818383061, "pages/signup_external", 574.0, 155.0],
[1368818383065, "categories/search", 780.0, 2.0],
[1368818383241, "applications/index", 1488.0, 846.0],
[1368818383252, "applications/show", 1750.0, 565.0],
[1368818383294, "applications/index", 1578.0, 878.0],
[1368818383296, "applications/show", 6073.0, 1199.0],
[1368818383524, "infrastructure/hosts/index", 2597.0, 679.0],
[1368818383579, "infrastructure/hosts/show", 1333.0, 613.0],
[1368818383625, "traced_errors/index", 1390.0, 685.0],
[1368818383667, "press/index", 889.0, 229.0],
[1368818383683, "applications/index", 742.0, 360.0],
[1368818383813, "applications/show", 1742.0, 607.0],
[1368818383951, "platform/plugin_pages/show", 5449.0, 568.0],
[1368818383967, "applications/show", 1224.0, 527.0],
[1368818384006, "public_access/charts/show", 1025.0, 259.0],
[1368818384009, "public_access/charts/show", 1038.0, 253.0],
[1368818384010, "public_access/charts/show", 1056.0, 256.0],
[1368818384012, "public_access/charts/show", 1102.0, 305.0],
[1368818384017, "public_access/charts/show", 1116.0, 277.0],
[1368818384020, "traced_errors/index", 883.0, 498.0],
[1368818384027, "applications/show", 1377.0, 683.0],
[1368818384032, "applications/show", 616.0, 293.0],
[1368818384108, "applications/show", 1073.0, 554.0],
[1368818384112, "infrastructure/hosts/index", 1717.0, 1013.0],
[1368818384141, "custom_views/show", 717.0, 332.0],
[1368818384190, "applications/show", 980.0, 438.0],
[1368818384370, "applications/show", 1412.0, 997.0],
[1368818384389, "public_access/charts/show", 391.0, 117.0],
[1368818384395, "public_access/charts/show", 389.0, 126.0],
[1368818384527, "traced_errors/index", 2093.0, 1104.0],
[1368818384991, "applications/index", 1791.0, 967.0],
[1368818384993, "applications/index", 945.0, 471.0],
[1368818385013, "applications/index", 1479.0, 802.0],
[1368818385034, "infrastructure/hosts/index", 919.0, 442.0],
[1368818385038, "applications/index", 3140.0, 757.0],
[1368818385040, "applications/show", 2461.0, 493.0],
[1368818385054, "applications/index", 826.0, 294.0],
[1368818385215, "infrastructure/hosts/index", 1532.0, 618.0],
[1368818385282, "applications/show", 4746.0, 712.0],
[1368818385300, "infrastructure/hosts/index", 2583.0, 567.0],
[1368818385303, "applications/show", 2101.0, 676.0],
[1368818385344, "applications/index", 4421.0, 3420.0],
[1368818385351, "traced_errors/index", 1436.0, 1037.0],
[1368818385427, "applications/index", 2272.0, 819.0],
[1368818385476, "applications/index", 2004.0, 316.0],
[1368818385575, "platform/plugin_pages/show", 3712.0, 2769.0],
[1368818385598, "applications/index", 719.0, 325.0],
[1368818385682, "applications/show", 1678.0, 1088.0],
[1368818385698, "applications/show", 1577.0, 606.0],
[1368818385772, "applications/show", 1741.0, 881.0],
[1368818385865, "traced_errors/index", 770.0, 349.0],
[1368818385891, "public_access/charts/show", 1395.0, 1284.0],
[1368818385989, "applications/show", 4861.0, 3839.0],
[1368818386037, "sessions/new", 2965.0, 372.0],
[1368818386043, "applications/show", 2799.0, 490.0],
[1368818386086, "public_access/charts/show", 1439.0, 1042.0],
[1368818386126, "applications/index", 3970.0, 1691.0],
[1368818386144, "applications/show", 2288.0, 553.0],
[1368818386223, "infrastructure/hosts/show", 2452.0, 1654.0],
[1368818386245, "platform/plugin_pages/show", 980.0, 423.0],
[1368818386292, "transactions/index", 1341.0, 816.0],
[1368818386300, "traced_errors/index", 2334.0, 1967.0],
[1368818386377, "applications/show", 1549.0, 939.0],
[1368818386378, "platform/plugin_pages/show", 2513.0, 1257.0],
[1368818386410, "applications/index", 3004.0, 1514.0],
[1368818386485, "accounts/show", 816.0, 401.0],
[1368818386494, "applications/index", 1253.0, 539.0],
[1368818386494, "applications/show", 817.0, 343.0],
[1368818386602, "infrastructure/hosts/index", 777.0, 358.0],
[1368818386635, "traced_errors/index", 785.0, 383.0],
[1368818386702, "public_access/charts/show", 412.0, 265.0],
[1368818386711, "pages/home_signup", 4281.0, 436.0],
[1368818386725, "applications/index", 1600.0, 1173.0],
[1368818386747, "traced_errors/index", 1803.0, 549.0],
[1368818386752, "applications/index", 999.0, 482.0],
[1368818386943, "applications/show", 1807.0, 497.0],
[1368818386949, "applications/index", 1273.0, 685.0],
[1368818386969, "applications/index", 8098.0, 2585.0],
[1368818387003, "applications/show", 950.0, 461.0],
[1368818387042, "applications/show", 999.0, 426.0],
[1368818387056, "sessions/new", 1860.0, 1481.0],
[1368818387080, "applications/index", 2771.0, 2340.0],
[1368818387091, "public_access/charts/show", 748.0, 298.0],
[1368818387164, "applications/index", 1087.0, 801.0],
[1368818387183, "public_access/charts/show", 794.0, 281.0],
[1368818387184, "public_access/charts/show", 779.0, 280.0],
[1368818387185, "public_access/charts/show", 805.0, 277.0],
[1368818387185, "public_access/charts/show", 768.0, 284.0],
[1368818387336, "applications/show", 3290.0, 1065.0],
[1368818387386, "applications/show", 1250.0, 706.0],
[1368818387422, "applications/show", 3094.0, 630.0],
[1368818387615, "applications/show", 1257.0, 899.0],
[1368818387726, "applications/index", 748.0, 376.0],
[1368818387746, "applications/show", 1114.0, 471.0],
[1368818387752, "applications/show", 1773.0, 1259.0],
[1368818387830, "public_access/charts/show", 1649.0, 538.0],
[1368818387840, "categories/search", 933.0, 630.0],
[1368818387842, "pages/signup_external", 236.0, 71.0],
[1368818387904, "public_access/charts/show", 355.0, 324.0],
[1368818387928, "applications/index", 1205.0, 403.0],
[1368818387948, "gadgets/dashboard", 909.0, 337.0],
[1368818387950, "public_access/charts/show", 341.0, 319.0],
[1368818388066, "public_access/charts/show", 1754.0, 554.0],
[1368818388071, "public_access/charts/show", 1743.0, 562.0],
[1368818388071, "public_access/charts/show", 1731.0, 564.0],
[1368818388072, "public_access/charts/show", 1765.0, 551.0],
[1368818388072, "public_access/charts/show", 1777.0, 541.0],
[1368818388078, "ping_targets/index", 1876.0, 838.0],
[1368818388082, "infrastructure/hosts/index", 1303.0, 651.0],
[1368818388197, "traced_errors/index", 872.0, 414.0],
[1368818388313, "public_access/charts/show", 415.0, 301.0],
[1368818388368, "transactions/index", 1486.0, 799.0],
[1368818388374, "applications/show", 1196.0, 360.0],
[1368818388383, "public_access/charts/show", 427.0, 352.0],
[1368818388488, "public_access/charts/show", 392.0, 353.0],
[1368818388488, "applications/show", 774.0, 284.0],
[1368818388539, "applications/index", 1496.0, 878.0],
[1368818388544, "applications/map", 1854.0, 842.0],
[1368818388654, "infrastructure/hosts/index", 4292.0, 745.0],
[1368818388656, "applications/index", 829.0, 450.0],
[1368818388732, "applications/show", 1096.0, 652.0],
[1368818388782, "mobile_applications/applications/index", 732.0, 337.0],
[1368818388799, "applications/show", 1123.0, 603.0],
[1368818388801, "infrastructure/hosts/index", 1037.0, 445.0],
[1368818388963, "applications/index", 1116.0, 430.0],
[1368818388975, "applications/show", 918.0, 362.0],
[1368818388979, "infrastructure/hosts/index", 1422.0, 574.0],
[1368818389068, "infrastructure/hosts/index", 1310.0, 579.0],
[1368818389245, "platform/plugin_pages/show", 1917.0, 562.0],
[1368818389388, "applications/show", 6389.0, 1238.0],
[1368818389391, "infrastructure/hosts/index", 1018.0, 470.0],
[1368818389392, "applications/index", 904.0, 523.0],
[1368818389480, "applications/show", 1105.0, 406.0],
[1368818389648, "infrastructure/hosts/index", 2220.0, 565.0],
[1368818389705, "applications/show", 1161.0, 480.0],
[1368818389710, "applications/index", 1229.0, 481.0],
[1368818389764, "infrastructure/hosts/show", 3559.0, 681.0],
[1368818389784, "traced_errors/show", 807.0, 639.0],
[1368818389835, "applications/index", 3406.0, 1104.0],
[1368818389839, "applications/index", 7384.0, 5729.0],
[1368818389842, "infrastructure/hosts/index", 1373.0, 957.0],
[1368818389966, "applications/index", 504.0, 1.0],
[1368818389986, "applications/show", 4230.0, 544.0],
[1368818390027, "infrastructure/hosts/index", 9752.0, 838.0],
[1368818390061, "alerts/incidents/index", 556.0, 308.0],
[1368818390112, "applications/show", 1056.0, 685.0],
[1368818390122, "infrastructure/hosts/show", 12112.0, 1170.0],
[1368818390225, "applications/show", 3077.0, 2513.0],
[1368818390232, "optimize/database_report/index", 1923.0, 963.0],
[1368818390278, "applications/index", 1249.0, 629.0],
[1368818390293, "applications/index", 825.0, 421.0],
[1368818390340, "applications/show", 3647.0, 503.0],
[1368818390419, "applications/index", 779.0, 385.0],
[1368818390423, "infrastructure/hosts/index", 944.0, 486.0],
[1368818390493, "gadgets/dashboard", 3443.0, 2996.0],
[1368818390574, "infrastructure/hosts/index", 735.0, 331.0],
[1368818390575, "public_access/charts/show", 313.0, 282.0],
[1368818390583, "public_access/charts/show", 183.0, 123.0],
[1368818390600, "public_access/charts/show", 682.0, 115.0],
[1368818390626, "applications/index", 688.0, 410.0],
[1368818390646, "public_access/charts/show", 476.0, 148.0],
[1368818390647, "public_access/charts/show", 392.0, 339.0],
[1368818390667, "applications/show", 1206.0, 726.0],
[1368818390672, "traced_errors/index", 1329.0, 518.0],
[1368818390789, "infrastructure/hosts/index", 1289.0, 774.0],
[1368818390828, "infrastructure/hosts/show", 1304.0, 555.0],
[1368818390896, "applications/show", 1248.0, 462.0],
[1368818390966, "applications/show", 1857.0, 1417.0],
[1368818390989, "applications/show", 1909.0, 442.0],
[1368818391065, "applications/show", 2982.0, 687.0],
[1368818391120, "applications/show", 977.0, 470.0],
[1368818391149, "applications/index", 1537.0, 534.0],
[1368818391153, "applications/index", 776.0, 245.0],
[1368818391174, "infrastructure/hosts/index", 1402.0, 683.0],
[1368818391182, "public_access/charts/show", 931.0, 175.0],
[1368818391224, "applications/show", 864.0, 348.0],
[1368818391261, "public_access/charts/show", 969.0, 204.0],
[1368818391265, "public_access/charts/show", 948.0, 192.0],
[1368818391278, "public_access/charts/show", 978.0, 222.0],
[1368818391303, "public_access/charts/show", 964.0, 178.0],
[1368818391304, "public_access/charts/show", 994.0, 349.0],
[1368818391308, "applications/show", 1591.0, 811.0],
[1368818391408, "traced_errors/index", 1366.0, 798.0],
[1368818391409, "public_access/charts/show", 1006.0, 340.0],
[1368818391495, "public_access/charts/show", 1009.0, 328.0],
[1368818391540, "applications/index", 1069.0, 547.0],
[1368818391544, "applications/show", 1459.0, 426.0],
[1368818391612, "public_access/charts/show", 1334.0, 174.0],
[1368818391613, "infrastructure/hosts/index", 1116.0, 444.0],
[1368818391669, "applications/show", 3520.0, 426.0],
[1368818391736, "traced_errors/index", 1235.0, 642.0],
[1368818391872, "applications/show", 1068.0, 579.0],
[1368818391908, "platform/plugin_pages/show", 3207.0, 786.0],
[1368818392034, "public_access/charts/show", 200.0, 113.0],
[1368818392035, "public_access/charts/show", 236.0, 156.0],
[1368818392133, "infrastructure/hosts/show", 1110.0, 507.0],
[1368818392165, "infrastructure/hosts/index", 1508.0, 540.0],
[1368818392249, "public_access/charts/show", 345.0, 243.0],
[1368818392254, "public_access/charts/show", 302.0, 195.0],
[1368818392320, "applications/index", 2205.0, 1435.0],
[1368818392356, "applications/show", 2238.0, 738.0],
[1368818392411, "traced_errors/index", 910.0, 387.0],
[1368818392419, "infrastructure/hosts/show", 1350.0, 786.0],
[1368818392433, "categories/search", 431.0, 1.0],
[1368818392458, "sessions/new", 803.0, 232.0],
[1368818392468, "applications/show", 1315.0, 721.0],
[1368818392486, "applications/index", 961.0, 512.0],
[1368818392526, "applications/index", 1518.0, 573.0],
[1368818392526, "pages/signup_external", 381.0, 126.0],
[1368818392550, "applications/show", 948.0, 381.0],
[1368818392581, "infrastructure/hosts/index", 1258.0, 503.0],
[1368818392706, "infrastructure/hosts/show", 879.0, 555.0],
[1368818392707, "traced_errors/show", 1241.0, 1024.0],
[1368818392727, "applications/show", 1219.0, 669.0],
[1368818392755, "applications/show", 925.0, 415.0],
[1368818392852, "traced_errors/index", 1336.0, 901.0],
[1368818392857, "applications/show", 2647.0, 1115.0],
[1368818392899, "applications/show", 2924.0, 607.0],
[1368818392981, "traced_errors/index", 1463.0, 681.0],
[1368818393006, "applications/index", 1179.0, 341.0],
[1368818393008, "sessions/new", 1923.0, 296.0],
[1368818393009, "infrastructure/hosts/index", 2330.0, 958.0],
[1368818393022, "applications/show", 9910.0, 2468.0],
[1368818393130, "pages/signup_external", 397.0, 158.0],
[1368818393131, "public_access/charts/show", 606.0, 144.0],
[1368818393152, "pages/web_monitoring", 14726.0, 472.0],
[1368818393179, "applications/index", 1071.0, 407.0],
[1368818393180, "applications/show", 2060.0, 378.0],
[1368818393291, "help/index", 573.0, 1.0],
[1368818393318, "traced_errors/index", 2232.0, 1034.0],
[1368818393369, "applications/index", 1091.0, 402.0],
[1368818393568, "applications/show", 855.0, 571.0],
[1368818393703, "infrastructure/hosts/show", 1128.0, 698.0],
[1368818393711, "applications/index", 880.0, 372.0],
[1368818393740, "articles/show", 620.0, 340.0],
[1368818393819, "mobile_applications/applications/index", 1285.0, 877.0],
[1368818393937, "applications/show", 1030.0, 445.0],
[1368818393977, "public_access/charts/show", 349.0, 269.0],
[1368818394035, "applications/show", 4713.0, 813.0],
[1368818394048, "infrastructure/hosts/index", 1287.0, 457.0],
[1368818394072, "pages/signup_external", 226.0, 31.0],
[1368818394110, "applications/index", 2189.0, 1569.0],
[1368818394160, "internal/customers/show", 1590.0, 1208.0],
[1368818394167, "sessions/create", 709.0, 315.0],
[1368818394247, "public_access/charts/show", 407.0, 317.0],
[1368818394305, "infrastructure/hosts/index", 2072.0, 401.0],
[1368818394306, "public_access/charts/show", 445.0, 378.0],
[1368818394311, "infrastructure/hosts/index", 1515.0, 1028.0],
[1368818394354, "help/index", 679.0, 1.0],
[1368818394356, "traced_errors/index", 1056.0, 521.0],
[1368818394357, "custom_views/show", 3283.0, 940.0],
[1368818394360, "applications/show", 1594.0, 845.0],
[1368818394362, "applications/index", 1132.0, 755.0],
[1368818394396, "applications/show", 3505.0, 1006.0],
[1368818394476, "traced_errors/index", 1954.0, 1206.0],
[1368818394546, "applications/show", 1910.0, 1371.0],
[1368818394594, "applications/show", 1140.0, 456.0],
[1368818394605, "public_access/charts/show", 1016.0, 265.0],
[1368818394607, "public_access/charts/show", 1025.0, 264.0],
[1368818394609, "public_access/charts/show", 1029.0, 257.0],
[1368818394610, "public_access/charts/show", 1050.0, 280.0],
[1368818394653, "public_access/charts/show", 1059.0, 281.0],
[1368818394670, "applications/show", 1044.0, 514.0],
[1368818394703, "applications/show", 745.0, 1.0],
[1368818394708, "public_access/charts/show", 216.0, 108.0],
[1368818394826, "named_transactions/show", 1492.0, 579.0],
[1368818394960, "infrastructure/hosts/index", 771.0, 479.0],
[1368818395028, "public_access/charts/show", 253.0, 72.0],
[1368818395175, "public_access/charts/show", 405.0, 218.0],
[1368818395177, "public_access/charts/show", 494.0, 226.0],
[1368818395189, "public_access/charts/show", 334.0, 166.0],
[1368818395191, "public_access/charts/show", 642.0, 300.0],
[1368818395191, "public_access/charts/show", 562.0, 301.0],
[1368818395234, "applications/show", 2066.0, 1622.0],
[1368818395260, "applications/index", 1631.0, 957.0],
[1368818395327, "gadgets/dashboard", 304.0, 192.0],
[1368818395335, "applications/show", 1977.0, 1575.0],
[1368818395336, "public_access/charts/show", 694.0, 256.0],
[1368818395350, "public_access/charts/show", 430.0, 315.0],
[1368818395432, "infrastructure/hosts/index", 915.0, 485.0],
[1368818395439, "infrastructure/hosts/index", 1421.0, 761.0],
[1368818395492, "traced_errors/index", 1358.0, 734.0],
[1368818395511, "externals/index", 882.0, 549.0],
[1368818395536, "public_access/charts/show", 246.0, 149.0],
[1368818395539, "infrastructure/hosts/index", 958.0, 562.0],
[1368818395550, "applications/show", 2351.0, 538.0],
[1368818395583, "public_access/charts/show", 324.0, 294.0],
[1368818395630, "public_access/charts/show", 310.0, 196.0],
[1368818395630, "applications/show", 997.0, 437.0],
[1368818395637, "public_access/charts/show", 317.0, 181.0],
[1368818395645, "mobile_applications/applications/index", 1308.0, 501.0],
[1368818395657, "public_access/charts/show", 305.0, 189.0],
[1368818395658, "public_access/charts/show", 376.0, 349.0],
[1368818395723, "public_access/charts/show", 406.0, 244.0],
[1368818395786, "platform/plugin_pages/show", 1199.0, 690.0],
[1368818395814, "public_access/charts/show", 796.0, 194.0],
[1368818395824, "public_access/charts/show", 1155.0, 263.0],
[1368818395864, "instances/index", 1112.0, 620.0],
[1368818395884, "public_access/charts/show", 1150.0, 267.0],
[1368818395923, "public_access/charts/show", 1070.0, 265.0],
[1368818395985, "public_access/charts/show", 1093.0, 264.0],
[1368818395985, "public_access/charts/show", 1082.0, 264.0],
[1368818395987, "public_access/charts/show", 1059.0, 266.0],
[1368818396009, "public_access/charts/show", 381.0, 279.0],
[1368818396014, "public_access/charts/show", 1047.0, 266.0],
[1368818396016, "public_access/charts/show", 686.0, 369.0],
[1368818396017, "public_access/charts/show", 799.0, 423.0],
[1368818396017, "public_access/charts/show", 889.0, 416.0],
[1368818396017, "applications/show", 1868.0, 465.0],
[1368818396020, "public_access/charts/show", 283.0, 189.0],
[1368818396025, "public_access/charts/show", 1025.0, 267.0],
[1368818396085, "applications/index", 1266.0, 359.0],
[1368818396093, "public_access/charts/show", 1014.0, 268.0],
[1368818396101, "public_access/charts/show", 1002.0, 268.0],
[1368818396101, "public_access/charts/show", 990.0, 269.0],
[1368818396102, "public_access/charts/show", 979.0, 269.0],
[1368818396102, "infrastructure/hosts/index", 1078.0, 581.0],
[1368818396150, "applications/index", 2739.0, 2292.0],
[1368818396153, "infrastructure/hosts/show", 1262.0, 491.0],
[1368818396160, "applications/show", 1299.0, 427.0],
[1368818396209, "mobile_applications/applications/index", 900.0, 437.0],
[1368818396251, "infrastructure/hosts/index", 3557.0, 1092.0],
[1368818396308, "applications/show", 1994.0, 1374.0],
[1368818396330, "pages/pricing", 3308.0, 167.0],
[1368818396387, "applications/index", 2709.0, 1047.0],
[1368818396417, "public_access/charts/show", 1789.0, 302.0],
[1368818396543, "public_access/charts/show", 250.0, 172.0],
[1368818396602, "applications/index", 824.0, 428.0],
[1368818396636, "pages/signup_external", 321.0, 87.0],
[1368818396640, "articles/show", 468.0, 1.0],
[1368818396651, "applications/show", 967.0, 582.0],
[1368818396708, "public_access/charts/show", 2067.0, 292.0],
[1368818396820, "applications/show", 1441.0, 827.0],
[1368818396852, "traced_errors/index", 1268.0, 723.0],
[1368818397148, "periscope/partners/index", 2942.0, 2890.0],
[1368818397238, "pages/home_signup", 2796.0, 186.0],
[1368818397249, "infrastructure/hosts/show", 1318.0, 773.0],
[1368818397254, "applications/index", 1561.0, 768.0],
[1368818397280, "applications/index", 1499.0, 678.0],
[1368818397299, "public_access/charts/show", 251.0, 145.0],
[1368818397366, "applications/index", 2189.0, 315.0],
[1368818397405, "applications/index", 1244.0, 590.0],
[1368818397407, "applications/show", 1805.0, 923.0],
[1368818397590, "traced_errors/index", 1260.0, 688.0],
[1368818397606, "applications/index", 999.0, 623.0],
[1368818397609, "externals/index", 2281.0, 472.0],
[1368818397611, "applications/show", 2347.0, 1758.0],
[1368818397686, "applications/show", 1842.0, 1284.0],
[1368818397795, "applications/index", 2173.0, 604.0],
[1368818397835, "applications/index", 1706.0, 733.0],
[1368818397968, "traced_errors/index", 2734.0, 1588.0],
[1368818398002, "applications/show", 3496.0, 510.0],
[1368818398003, "public_access/charts/show", 1192.0, 244.0],
[1368818398011, "public_access/charts/show", 1223.0, 254.0],
[1368818398016, "public_access/charts/show", 1226.0, 244.0],
[1368818398073, "public_access/charts/show", 1240.0, 263.0],
[1368818398082, "public_access/charts/show", 1309.0, 251.0],
[1368818398082, "public_access/charts/show", 1304.0, 252.0],
[1368818398098, "public_access/charts/show", 241.0, 166.0],
[1368818398114, "admin/metric_explosion/show", 2455.0, 927.0],
[1368818398176, "named_transactions/show", 2192.0, 847.0],
[1368818398176, "infrastructure/hosts/show", 1318.0, 399.0],
[1368818398246, "notes/index", 634.0, 374.0],
[1368818398276, "infrastructure/hosts/show", 2005.0, 960.0],
[1368818398282, "databases/index", 1309.0, 664.0],
[1368818398342, "traced_errors/index", 1900.0, 620.0],
[1368818398345, "public_access/charts/show", 184.0, 92.0],
[1368818398349, "infrastructure/hosts/index", 3978.0, 889.0],
[1368818398349, "applications/index", 878.0, 450.0],
[1368818398368, "public_access/charts/show", 829.0, 607.0],
[1368818398383, "infrastructure/hosts/index", 2019.0, 801.0],
[1368818398389, "applications/index", 1740.0, 424.0],
[1368818398489, "public_access/charts/show", 148.0, 105.0],
[1368818398533, "public_access/charts/show", 297.0, 273.0],
[1368818398547, "public_access/charts/show", 209.0, 187.0],
[1368818398594, "applications/show", 1129.0, 474.0],
[1368818398678, "public_access/charts/show", 195.0, 134.0],
[1368818398708, "public_access/charts/show", 245.0, 163.0],
[1368818398747, "infrastructure/hosts/index", 3215.0, 1971.0],
[1368818398781, "public_access/charts/show", 249.0, 163.0],
[1368818398861, "traced_errors/index", 3415.0, 2464.0],
[1368818398874, "public_access/charts/show", 279.0, 186.0],
[1368818398905, "public_access/charts/show", 149.0, 98.0],
[1368818398909, "applications/show", 2004.0, 412.0],
[1368818399044, "sessions/create", 683.0, 304.0],
[1368818399090, "public_access/charts/show", 144.0, 95.0],
[1368818399094, "gadgets/dashboard", 712.0, 498.0],
[1368818399097, "public_access/charts/show", 960.0, 797.0],
[1368818399097, "public_access/charts/show", 962.0, 795.0],
[1368818399108, "applications/show", 3084.0, 636.0],
[1368818399128, "applications/show", 1804.0, 794.0],
[1368818399161, "applications/index", 2128.0, 912.0],
[1368818399260, "applications/index", 1423.0, 898.0],
[1368818399266, "applications/index", 1487.0, 1061.0],
[1368818399270, "public_access/charts/show", 153.0, 93.0],
[1368818399279, "infrastructure/hosts/get_started", 2850.0, 377.0],
[1368818399294, "public_access/charts/show", 425.0, 312.0],
[1368818399296, "infrastructure/hosts/show", 1951.0, 761.0],
[1368818399296, "public_access/charts/show", 975.0, 797.0],
[1368818399472, "applications/index", 13959.0, 775.0],
[1368818399501, "public_access/charts/show", 154.0, 103.0],
[1368818399514, "public_access/charts/show", 230.0, 149.0],
[1368818399514, "applications/index", 2845.0, 840.0],
[1368818399561, "public_access/charts/show", 187.0, 114.0],
[1368818399586, "pages/signup_external", 367.0, 213.0],
[1368818399590, "help/index", 757.0, 39.0],
[1368818399590, "infrastructure/hosts/index", 2553.0, 525.0],
[1368818399606, "externals/index", 1348.0, 939.0],
[1368818399753, "infrastructure/hosts/index", 3097.0, 506.0],
[1368818399805, "public_access/charts/show", 228.0, 164.0],
[1368818399887, "public_access/charts/show", 217.0, 142.0],
[1368818399965, "applications/index", 1060.0, 518.0],
[1368818399976, "applications/show", 1407.0, 865.0],
[1368818400088, "custom_views/show", 2137.0, 900.0],
[1368818400094, "applications/show", 1464.0, 725.0],
[1368818400151, "infrastructure/hosts/show", 1402.0, 366.0],
[1368818400158, "public_access/charts/show", 200.0, 147.0],
[1368818400267, "traced_errors/index", 1298.0, 688.0],
[1368818400287, "public_access/charts/show", 372.0, 330.0],
[1368818400316, "public_access/charts/show", 4471.0, 4434.0],
[1368818400316, "public_access/charts/show", 363.0, 327.0],
[1368818400323, "public_access/charts/show", 359.0, 321.0],
[1368818400360, "applications/show", 2508.0, 856.0],
[1368818400513, "public_access/charts/show", 188.0, 164.0],
[1368818400513, "public_access/charts/show", 208.0, 182.0],
[1368818400588, "infrastructure/hosts/show", 1260.0, 544.0],
[1368818400652, "public_access/charts/show", 151.0, 126.0],
[1368818400690, "infrastructure/hosts/index", 725.0, 315.0],
[1368818400757, "public_access/charts/show", 162.0, 60.0],
[1368818400758, "applications/show", 1214.0, 601.0],
[1368818400846, "applications/index", 542.0, 0.0],
[1368818400873, "public_access/charts/show", 142.0, 85.0],
[1368818400874, "public_access/charts/show", 401.0, 154.0],
[1368818400897, "traced_errors/index", 1901.0, 574.0],
[1368818400963, "public_access/charts/show", 405.0, 147.0],
[1368818400981, "traced_errors/index", 3055.0, 1703.0],
[1368818401035, "applications/show", 938.0, 485.0],
[1368818401038, "infrastructure/hosts/index", 871.0, 382.0],
[1368818401196, "public_access/charts/show", 582.0, 154.0],
[1368818401220, "public_access/charts/show", 558.0, 126.0],
[1368818401258, "public_access/charts/show", 108.0, 57.0],
[1368818401290, "applications/show", 1722.0, 493.0],
[1368818401444, "applications/index", 1169.0, 629.0],
[1368818401485, "applications/show", 1243.0, 584.0],
[1368818401595, "applications/show", 2571.0, 715.0],
[1368818401608, "infrastructure/hosts/index", 995.0, 406.0],
[1368818401627, "applications/index", 1280.0, 736.0],
[1368818401723, "applications/show", 1474.0, 513.0],
[1368818401801, "applications/show", 2662.0, 762.0],
[1368818401843, "infrastructure/hosts/index", 8510.0, 497.0],
[1368818401989, "applications/show", 1694.0, 701.0],
[1368818402081, "applications/index", 1359.0, 550.0],
[1368818402127, "gadgets/dashboard", 572.0, 243.0],
[1368818402142, "infrastructure/hosts/show", 1647.0, 1078.0],
[1368818402273, "platform/plugin_pages/show", 1651.0, 494.0],
[1368818402327, "applications/index", 1835.0, 580.0],
[1368818402424, "infrastructure/hosts/show", 2011.0, 182.0],
[1368818402516, "applications/show", 995.0, 392.0],
[1368818402518, "optimize/database_report/index", 1960.0, 465.0],
[1368818402525, "infrastructure/hosts/show", 1428.0, 556.0],
[1368818402526, "infrastructure/hosts/index", 4758.0, 2703.0],
[1368818402531, "sessions/create", 709.0, 241.0],
[1368818402602, "public_access/charts/show", 3439.0, 2885.0],
[1368818402677, "transactions/index", 1270.0, 626.0],
[1368818402697, "applications/show", 784.0, 311.0],
[1368818402747, "applications/show", 1299.0, 753.0],
[1368818402802, "infrastructure/hosts/index", 5456.0, 540.0],
[1368818402802, "applications/show", 5201.0, 759.0],
[1368818402862, "applications/show", 1211.0, 355.0],
[1368818402913, "applications/index", 5690.0, 775.0],
[1368818402913, "public_access/charts/show", 1116.0, 271.0],
[1368818402961, "public_access/charts/show", 2563.0, 269.0],
[1368818402971, "public_access/charts/show", 2574.0, 270.0],
[1368818403010, "public_access/charts/show", 2595.0, 265.0],
[1368818403019, "public_access/charts/show", 2587.0, 265.0],
[1368818403029, "public_access/charts/show", 2609.0, 267.0],
[1368818403044, "public_access/charts/show", 2611.0, 263.0],
[1368818403048, "public_access/charts/show", 2561.0, 268.0],
[1368818403077, "applications/show", 862.0, 581.0],
[1368818403126, "public_access/charts/show", 2551.0, 266.0],
[1368818403133, "public_access/charts/show", 2539.0, 264.0],
[1368818403142, "public_access/charts/show", 2533.0, 264.0],
[1368818403151, "infrastructure/hosts/index", 1443.0, 1031.0],
[1368818403175, "applications/index", 1497.0, 855.0],
[1368818403245, "public_access/charts/show", 2586.0, 271.0],
[1368818403257, "traced_errors/index", 725.0, 504.0],
[1368818403310, "applications/show", 1097.0, 694.0],
[1368818403388, "applications/index", 1480.0, 919.0],
[1368818403427, "infrastructure/hosts/index", 3020.0, 616.0],
[1368818403431, "applications/show", 1247.0, 597.0],
[1368818403594, "infrastructure/hosts/index", 854.0, 389.0],
[1368818403801, "applications/index", 1439.0, 1050.0],
[1368818403814, "applications/index", 1462.0, 1042.0],
[1368818403849, "applications/show", 1548.0, 750.0],
[1368818403913, "applications/index", 2959.0, 410.0],
[1368818403998, "applications/show", 4443.0, 528.0],
[1368818404013, "traced_errors/index", 1120.0, 548.0],
[1368818404026, "pages/home_signup", 3681.0, 514.0],
[1368818404057, "applications/show", 1119.0, 398.0],
[1368818404094, "applications/show", 1381.0, 821.0],
[1368818404148, "applications/show", 1233.0, 560.0],
[1368818404213, "gadgets/dashboard", 561.0, 302.0],
[1368818404315, "infrastructure/hosts/show", 871.0, 417.0],
[1368818404374, "applications/show", 2752.0, 1144.0],
[1368818404421, "platform/plugin_pages/dashboard", 1148.0, 837.0],
[1368818404526, "traced_errors/index", 1210.0, 710.0],
[1368818404546, "infrastructure/hosts/show", 4783.0, 522.0],
[1368818404619, "infrastructure/hosts/index", 1310.0, 942.0],
[1368818404681, "infrastructure/hosts/show", 1556.0, 637.0],
[1368818404701, "applications/show", 1567.0, 606.0],
[1368818404716, "applications/index", 1390.0, 862.0],
[1368818404761, "applications/show", 1055.0, 707.0],
[1368818404807, "internal/customers/show", 1815.0, 1177.0],
[1368818404849, "infrastructure/hosts/show", 1440.0, 618.0],
[1368818404858, "infrastructure/hosts/index", 1453.0, 550.0],
[1368818404859, "public_access/charts/show", 316.0, 97.0],
[1368818404874, "transactions/index", 1649.0, 760.0],
[1368818404918, "applications/show", 1421.0, 625.0],
[1368818405049, "applications/show", 1147.0, 404.0],
[1368818405138, "applications/show", 2495.0, 588.0],
[1368818405154, "applications/show", 1333.0, 626.0],
[1368818405166, "infrastructure/hosts/show", 1544.0, 738.0],
[1368818405209, "gadgets/dashboard", 933.0, 727.0],
[1368818405224, "traced_errors/index", 2773.0, 674.0],
[1368818405287, "infrastructure/hosts/show", 5426.0, 1462.0],
[1368818405289, "applications/show", 879.0, 521.0],
[1368818405334, "traced_errors/index", 1184.0, 690.0],
[1368818405359, "platform/plugin_pages/show", 1924.0, 718.0],
[1368818405412, "embedded_charts/index", 660.0, 392.0],
[1368818405456, "applications/show", 1087.0, 634.0],
[1368818405471, "applications/show", 1185.0, 666.0],
[1368818405568, "applications/show", 2041.0, 1140.0],
[1368818405590, "applications/show", 1745.0, 546.0],
[1368818405702, "applications/show", 13416.0, 721.0],
[1368818405829, "infrastructure/hosts/index", 1683.0, 661.0],
[1368818405857, "applications/show", 1861.0, 466.0],
[1368818405997, "infrastructure/hosts/index", 3116.0, 1298.0],
[1368818406011, "traced_errors/index", 5606.0, 3788.0],
[1368818406097, "sessions/create", 661.0, 267.0],
[1368818406157, "applications/index", 3189.0, 835.0],
[1368818406172, "applications/index", 813.0, 411.0],
[1368818406228, "applications/index", 1019.0, 542.0],
[1368818406376, "applications/show", 2255.0, 1217.0],
[1368818406377, "applications/show", 1102.0, 803.0],
[1368818406392, "infrastructure/network/index", 3415.0, 635.0],
[1368818406551, "public_access/charts/show", 453.0, 73.0],
[1368818406555, "public_access/charts/show", 458.0, 76.0],
[1368818406558, "public_access/charts/show", 489.0, 89.0],
[1368818406602, "applications/show", 1920.0, 564.0],
[1368818406830, "infrastructure/hosts/index", 2613.0, 1130.0],
[1368818406831, "applications/show", 1666.0, 974.0],
[1368818406839, "infrastructure/hosts/show", 1625.0, 911.0],
[1368818406840, "applications/show", 949.0, 420.0],
[1368818406907, "public_access/charts/show", 1234.0, 188.0],
[1368818406935, "public_access/charts/show", 1237.0, 226.0],
[1368818406936, "public_access/charts/show", 1242.0, 233.0],
[1368818406940, "public_access/charts/show", 1240.0, 249.0],
[1368818406967, "public_access/charts/show", 1253.0, 125.0],
[1368818406968, "public_access/charts/show", 1260.0, 125.0],
[1368818406984, "traced_errors/index", 1003.0, 395.0],
[1368818406985, "infrastructure/hosts/index", 1543.0, 603.0],
[1368818406998, "public_access/charts/show", 1262.0, 119.0],
[1368818406999, "public_access/charts/show", 511.0, 82.0],
[1368818407000, "databases/index", 1157.0, 765.0],
[1368818407033, "public_access/charts/show", 1261.0, 272.0],
[1368818407041, "public_access/charts/show", 1269.0, 102.0],
[1368818407041, "public_access/charts/show", 1266.0, 216.0],
[1368818407049, "public_access/charts/show", 1273.0, 230.0],
[1368818407063, "public_access/charts/show", 1281.0, 143.0],
[1368818407069, "public_access/charts/show", 1277.0, 337.0],
[1368818407070, "applications/index", 839.0, 551.0],
[1368818407103, "traced_errors/index", 1601.0, 638.0],
[1368818407111, "public_access/charts/show", 1279.0, 331.0],
[1368818407117, "public_access/charts/show", 1326.0, 130.0],
[1368818407117, "traced_errors/index", 1070.0, 607.0],
[1368818407118, "public_access/charts/show", 1282.0, 329.0],
[1368818407171, "infrastructure/hosts/show", 980.0, 610.0],
[1368818407297, "platform/plugin_pages/dashboard", 1666.0, 985.0],
[1368818407413, "applications/show", 1416.0, 686.0],
[1368818407425, "public_access/charts/show", 1831.0, 374.0],
[1368818407479, "applications/index", 2134.0, 986.0],
[1368818407607, "infrastructure/hosts/index", 914.0, 360.0],
[1368818407626, "public_access/charts/show", 305.0, 198.0],
[1368818407724, "applications/show", 1020.0, 482.0],
[1368818407870, "public_access/charts/show", 5011.0, 0.0],
[1368818408000, "applications/show", 1375.0, 583.0],
[1368818408034, "applications/index", 795.0, 534.0],
[1368818408119, "applications/show", 2432.0, 1228.0],
[1368818408222, "mobile_applications/applications/index", 893.0, 656.0],
[1368818408354, "infrastructure/hosts/index", 892.0, 475.0],
[1368818408420, "applications/index", 1136.0, 686.0],
[1368818408454, "infrastructure/hosts/show", 1210.0, 551.0],
[1368818408473, "applications/show", 1687.0, 377.0],
[1368818408501, "public_access/charts/show", 333.0, 303.0],
[1368818408507, "public_access/charts/show", 350.0, 327.0],
[1368818408580, "x_rays/index", 2712.0, 834.0],
[1368818408804, "applications/index", 1133.0, 867.0],
[1368818408818, "public_access/charts/show", 2843.0, 377.0],
[1368818408826, "applications/index", 2538.0, 1608.0],
[1368818408829, "public_access/charts/show", 697.0, 261.0],
[1368818408829, "public_access/charts/show", 726.0, 276.0],
[1368818408829, "public_access/charts/show", 738.0, 268.0],
[1368818408829, "public_access/charts/show", 751.0, 268.0],
[1368818408830, "public_access/charts/show", 712.0, 277.0],
[1368818408830, "public_access/charts/show", 761.0, 264.0],
[1368818408862, "sessions/new", 952.0, 78.0],
[1368818408898, "applications/show", 2526.0, 1890.0],
[1368818408983, "custom_views/show", 3834.0, 1172.0],
[1368818408995, "applications/show", 3116.0, 1810.0],
[1368818409093, "public_access/charts/show", 312.0, 249.0],
[1368818409278, "public_access/charts/show", 351.0, 251.0],
[1368818409287, "public_access/charts/show", 400.0, 262.0],
[1368818409288, "public_access/charts/show", 454.0, 274.0],
[1368818409369, "public_access/charts/show", 493.0, 273.0],
[1368818409402, "public_access/charts/show", 903.0, 816.0],
[1368818409403, "public_access/charts/show", 369.0, 263.0],
[1368818409404, "public_access/charts/show", 322.0, 255.0],
[1368818409404, "public_access/charts/show", 373.0, 239.0],
[1368818409404, "public_access/charts/show", 552.0, 323.0],
[1368818409405, "applications/show", 1274.0, 756.0],
[1368818409405, "public_access/charts/show", 545.0, 337.0],
[1368818409406, "applications/index", 857.0, 532.0],
[1368818409418, "applications/show", 4778.0, 559.0],
[1368818409433, "infrastructure/hosts/index", 1364.0, 611.0],
[1368818409451, "applications/show", 911.0, 469.0],
[1368818409454, "applications/show", 2156.0, 265.0],
[1368818409526, "traced_errors/index", 1223.0, 959.0],
[1368818409583, "infrastructure/hosts/show", 1276.0, 759.0],
[1368818409627, "public_access/charts/show", 3490.0, 543.0],
[1368818409659, "applications/index", 1746.0, 1293.0],
[1368818409692, "infrastructure/hosts/index", 2983.0, 2354.0],
[1368818409716, "mobile_applications/applications/show", 1091.0, 577.0],
[1368818409756, "applications/show", 4414.0, 3767.0],
[1368818409797, "public_access/charts/show", 1290.0, 819.0],
[1368818409812, "infrastructure/hosts/index", 2860.0, 1301.0],
[1368818409814, "public_access/charts/show", 1558.0, 840.0],
[1368818409818, "public_access/charts/show", 1569.0, 837.0],
[1368818409821, "public_access/charts/show", 1580.0, 820.0],
[1368818409822, "public_access/charts/show", 1591.0, 819.0],
[1368818409865, "custom_views/show", 2420.0, 1272.0],
[1368818409865, "applications/index", 1504.0, 1092.0],
[1368818409895, "applications/show", 1543.0, 1011.0],
[1368818409897, "infrastructure/hosts/index", 1494.0, 706.0],
[1368818410049, "traced_errors/index", 1379.0, 850.0],
[1368818410062, "applications/edit", 4287.0, 609.0],
[1368818410101, "applications/show", 5010.0, 3985.0],
[1368818410184, "applications/index", 1052.0, 525.0],
[1368818410215, "users/edit", 1373.0, 853.0],
[1368818410234, "infrastructure/hosts/show", 1004.0, 484.0],
[1368818410236, "applications/show", 1159.0, 634.0],
[1368818410291, "infrastructure/hosts/show", 1315.0, 519.0],
[1368818410310, "periscope/partners/index", 2468.0, 2416.0],
[1368818410470, "transactions/index", 1713.0, 726.0],
[1368818410610, "applications/index", 980.0, 413.0],
[1368818410618, "applications/show", 1731.0, 707.0],
[1368818410712, "applications/show", 1758.0, 726.0],
[1368818410810, "applications/show", 2992.0, 2221.0],
[1368818410905, "infrastructure/hosts/index", 929.0, 496.0],
[1368818410940, "applications/index", 10590.0, 4148.0],
[1368818410949, "applications/index", 1876.0, 1149.0],
[1368818411019, "mobile_applications/applications/show", 1161.0, 631.0],
[1368818411024, "applications/index", 3105.0, 1104.0],
[1368818411057, "enterprise/time_to_value", 1650.0, 206.0],
[1368818411179, "applications/show", 1940.0, 577.0],
[1368818411242, "applications/index", 1182.0, 510.0],
[1368818411274, "applications/show", 1832.0, 698.0],
[1368818411325, "applications/index", 1422.0, 853.0],
[1368818411398, "platform/plugin_pages/show", 2198.0, 1440.0],
[1368818411617, "applications/index", 1322.0, 598.0],
[1368818411620, "public_access/charts/show", 676.0, 153.0],
[1368818411742, "platform/plugin_pages/show", 2608.0, 1293.0],
[1368818411754, "x_rays/index", 1412.0, 945.0],
[1368818411815, "applications/show", 1297.0, 393.0],
[1368818411948, "traced_errors/index", 637.0, 379.0],
[1368818412029, "infrastructure/hosts/show", 3276.0, 1453.0],
[1368818412058, "applications/show", 1442.0, 434.0],
[1368818412086, "infrastructure/hosts/index", 6496.0, 2042.0],
[1368818412129, "applications/show", 735.0, 457.0],
[1368818412199, "applications/show", 921.0, 365.0],
[1368818412222, "landing_pages/nlp_mobile_monitoring", 9411.0, 206.0],
[1368818412256, "sessions/new", 972.0, 608.0],
[1368818412331, "public_access/charts/show", 189.0, 141.0],
[1368818412348, "applications/show", 3141.0, 625.0],
[1368818412384, "public_access/charts/show", 266.0, 113.0],
[1368818412386, "public_access/charts/show", 259.0, 125.0],
[1368818412463, "applications/show", 7279.0, 1205.0],
[1368818412484, "public_access/charts/show", 496.0, 267.0],
[1368818412519, "public_access/charts/show", 394.0, 118.0],
[1368818412520, "public_access/charts/show", 500.0, 266.0],
[1368818412520, "applications/index", 1254.0, 742.0],
[1368818412532, "public_access/charts/show", 605.0, 295.0],
[1368818412541, "applications/show", 1534.0, 546.0],
[1368818412619, "infrastructure/hosts/index", 877.0, 454.0],
[1368818412634, "applications/show", 1000.0, 526.0],
[1368818412697, "infrastructure/processes/index", 6230.0, 783.0],
[1368818412745, "applications/show", 1490.0, 486.0],
[1368818412809, "applications/index", 1719.0, 1155.0],
[1368818412884, "databases/index", 2420.0, 569.0],
[1368818412893, "applications/index", 3044.0, 1222.0],
[1368818412937, "traced_errors/index", 1122.0, 716.0],
[1368818412954, "infrastructure/hosts/show", 1215.0, 592.0],
[1368818412980, "public_access/charts/show", 242.0, 154.0],
[1368818413018, "infrastructure/hosts/show", 1276.0, 802.0],
[1368818413020, "traced_errors/index", 1890.0, 598.0],
[1368818413033, "applications/show", 14773.0, 477.0],
[1368818413076, "public_access/charts/show", 305.0, 260.0],
[1368818413085, "public_access/charts/show", 361.0, 287.0],
[1368818413090, "infrastructure/hosts/show", 1581.0, 870.0],
[1368818413130, "applications/show", 4956.0, 1399.0],
[1368818413154, "platform/plugin_pages/show", 895.0, 493.0],
[1368818413200, "applications/show", 2649.0, 919.0],
[1368818413200, "infrastructure/hosts/index", 2604.0, 652.0],
[1368818413249, "applications/index", 1138.0, 648.0],
[1368818413259, "public_access/charts/show", 386.0, 317.0],
[1368818413310, "public_access/charts/show", 804.0, 548.0],
[1368818413337, "public_access/charts/show", 489.0, 402.0],
[1368818413345, "public_access/charts/show", 462.0, 334.0],
[1368818413366, "public_access/charts/show", 511.0, 375.0],
[1368818413367, "public_access/charts/show", 588.0, 425.0],
[1368818413367, "transactions/index", 2693.0, 898.0],
[1368818413457, "applications/show", 1643.0, 340.0],
[1368818413519, "applications/show", 1260.0, 371.0],
[1368818413578, "platform/plugin_pages/show", 1296.0, 584.0],
[1368818413586, "infrastructure/hosts/show", 1164.0, 563.0],
[1368818413605, "applications/show", 1316.0, 562.0],
[1368818413657, "public_access/charts/show", 772.0, 312.0],
[1368818413685, "applications/index", 3458.0, 1190.0],
[1368818413699, "pages/pricing", 5553.0, 468.0],
[1368818413719, "applications/show", 1159.0, 495.0],
[1368818413782, "applications/setup", 2970.0, 665.0],
[1368818413796, "public_access/charts/show", 776.0, 304.0],
[1368818413797, "public_access/charts/show", 780.0, 283.0],
[1368818413872, "public_access/charts/show", 570.0, 383.0],
[1368818414152, "applications/index", 1115.0, 538.0],
[1368818414231, "infrastructure/hosts/index", 1641.0, 989.0],
[1368818414243, "applications/show", 861.0, 429.0],
[1368818414275, "applications/index", 1244.0, 425.0],
[1368818414351, "applications/index", 1813.0, 1291.0],
[1368818414403, "periscope/partners/show", 552.0, 510.0],
[1368818414408, "infrastructure/hosts/index", 1330.0, 494.0],
[1368818414447, "infrastructure/hosts/show", 1250.0, 755.0],
[1368818414455, "infrastructure/hosts/show", 2403.0, 922.0],
[1368818414470, "pages/about", 11868.0, 238.0],
[1368818414483, "public_access/charts/show", 1059.0, 382.0],
[1368818414485, "public_access/charts/show", 1048.0, 380.0],
[1368818414518, "public_access/charts/show", 1147.0, 402.0],
[1368818414538, "public_access/charts/show", 1158.0, 415.0],
[1368818414539, "public_access/charts/show", 1180.0, 398.0],
[1368818414590, "public_access/charts/show", 309.0, 82.0],
[1368818414612, "applications/show", 2334.0, 868.0],
[1368818414659, "infrastructure/hosts/show", 1261.0, 775.0],
[1368818414717, "peer_groups/index", 1229.0, 634.0],
[1368818414734, "applications/show", 1882.0, 880.0],
[1368818414857, "applications/setup", 8108.0, 1191.0],
[1368818415014, "applications/show", 2214.0, 725.0],
[1368818415047, "public_access/charts/show", 226.0, 86.0],
[1368818415061, "transactions/index", 1555.0, 856.0],
[1368818415073, "applications/show", 1125.0, 671.0],
[1368818415111, "public_access/charts/show", 229.0, 71.0],
[1368818415189, "internal/customers/show", 2687.0, 828.0],
[1368818415191, "public_access/charts/show", 325.0, 87.0],
[1368818415192, "infrastructure/hosts/index", 2077.0, 546.0],
[1368818415280, "public_access/charts/show", 1494.0, 163.0],
[1368818415403, "public_access/charts/show", 159.0, 88.0],
[1368818415464, "applications/show", 1446.0, 596.0],
[1368818415557, "traced_errors/index", 4732.0, 4375.0],
[1368818415558, "infrastructure/hosts/show", 2214.0, 807.0],
[1368818415576, "applications/show", 2031.0, 1046.0],
[1368818415576, "applications/index", 3427.0, 1680.0],
[1368818415597, "public_access/charts/show", 136.0, 99.0],
[1368818415600, "infrastructure/hosts/show", 3356.0, 2464.0],
[1368818415616, "x_rays/show", 1067.0, 840.0],
[1368818415660, "public_access/charts/show", 151.0, 100.0],
[1368818415676, "applications/index", 1534.0, 767.0],
[1368818415733, "public_access/charts/show", 471.0, 315.0],
[1368818415734, "public_access/charts/show", 484.0, 321.0],
[1368818415760, "traced_errors/index", 2007.0, 1407.0],
[1368818415777, "pages/home_signup", 1323.0, 289.0],
[1368818415900, "public_access/charts/show", 127.0, 93.0],
[1368818415950, "applications/show", 4182.0, 631.0],
[1368818415976, "applications/index", 1820.0, 686.0],
[1368818416131, "public_access/charts/show", 941.0, 173.0],
[1368818416183, "public_access/charts/show", 121.0, 86.0],
[1368818416195, "applications/show", 3005.0, 744.0],
[1368818416197, "public_access/charts/show", 1349.0, 193.0],
[1368818416248, "applications/index", 2025.0, 1166.0],
[1368818416249, "sessions/new", 734.0, 328.0],
[1368818416264, "platform/plugin_pages/show", 1625.0, 476.0],
[1368818416298, "public_access/charts/show", 433.0, 243.0],
[1368818416326, "public_access/charts/show", 961.0, 164.0],
[1368818416329, "public_access/charts/show", 136.0, 105.0],
[1368818416330, "public_access/charts/show", 966.0, 317.0],
[1368818416368, "public_access/charts/show", 459.0, 321.0],
[1368818416497, "sessions/new", 1295.0, 938.0],
[1368818416532, "public_access/charts/show", 115.0, 85.0],
[1368818416551, "articles/show", 8460.0, 4676.0],
[1368818416579, "infrastructure/hosts/show", 4916.0, 1462.0],
[1368818416589, "platform/plugin_pages/show", 1375.0, 906.0],
[1368818416700, "applications/show", 2437.0, 714.0],
[1368818416701, "applications/index", 747.0, 260.0],
[1368818416705, "public_access/charts/show", 960.0, 327.0],
[1368818416784, "public_access/charts/show", 126.0, 94.0],
[1368818416796, "pages/signup_external", 2245.0, 697.0],
[1368818416800, "public_access/charts/show", 988.0, 180.0],
[1368818416824, "public_access/charts/show", 1043.0, 187.0],
[1368818416824, "public_access/charts/show", 990.0, 176.0],
[1368818416824, "public_access/charts/show", 1022.0, 333.0],
[1368818416839, "public_access/charts/show", 1228.0, 168.0],
[1368818416853, "infrastructure/hosts/index", 954.0, 409.0],
[1368818417058, "public_access/charts/show", 124.0, 90.0],
[1368818417060, "public_access/charts/show", 269.0, 183.0],
[1368818417061, "infrastructure/hosts/show", 854.0, 342.0],
[1368818417066, "applications/index", 803.0, 420.0],
[1368818417102, "applications/show", 1006.0, 430.0],
[1368818417102, "applications/show", 2397.0, 489.0],
[1368818417194, "public_access/charts/show", 352.0, 226.0],
[1368818417216, "named_transactions/index", 4703.0, 1523.0],
[1368818417219, "infrastructure/hosts/show", 1046.0, 476.0],
[1368818417390, "applications/index", 939.0, 394.0],
[1368818417393, "public_access/charts/show", 408.0, 268.0],
[1368818417394, "public_access/charts/show", 490.0, 300.0],
[1368818417412, "infrastructure/hosts/index", 2075.0, 643.0],
[1368818417470, "infrastructure/hosts/index", 3999.0, 929.0],
[1368818417498, "public_access/charts/show", 633.0, 375.0],
[1368818417498, "public_access/charts/show", 577.0, 349.0],
[1368818417540, "applications/index", 1259.0, 419.0],
[1368818417652, "applications/index", 3839.0, 1461.0],
[1368818417769, "public_access/charts/show", 824.0, 247.0],
[1368818417898, "sessions/new", 1389.0, 578.0],
[1368818417935, "traced_errors/index", 1343.0, 582.0],
[1368818417959, "infrastructure/hosts/index", 775.0, 426.0],
[1368818418033, "applications/index", 799.0, 423.0],
[1368818418054, "applications/show", 1012.0, 483.0],
[1368818418112, "traced_errors/index", 1067.0, 546.0],
[1368818418155, "public_access/charts/show", 738.0, 130.0],
[1368818418160, "traced_errors/index", 833.0, 394.0],
[1368818418185, "infrastructure/hosts/index", 1034.0, 643.0],
[1368818418231, "applications/index", 1948.0, 1021.0],
[1368818418369, "public_access/charts/show", 837.0, 240.0],
[1368818418446, "applications/show", 921.0, 387.0],
[1368818418464, "public_access/charts/show", 950.0, 130.0],
[1368818418505, "public_access/charts/show", 654.0, 232.0],
[1368818418523, "traced_errors/index", 843.0, 434.0],
[1368818418555, "applications/index", 690.0, 375.0],
[1368818418627, "public_access/charts/show", 973.0, 144.0],
[1368818418628, "public_access/charts/show", 766.0, 159.0],
[1368818418735, "applications/show", 889.0, 687.0],
[1368818418746, "applications/show", 1051.0, 473.0],
[1368818418764, "infrastructure/hosts/show", 1404.0, 922.0],
[1368818418910, "applications/show", 1614.0, 449.0],
[1368818418934, "infrastructure/hosts/show", 3234.0, 614.0],
[1368818418947, "applications/index", 768.0, 326.0],
[1368818419002, "applications/show", 6226.0, 630.0],
[1368818419062, "applications/show", 2774.0, 723.0],
[1368818419123, "public_access/charts/show", 811.0, 139.0],
[1368818419123, "applications/index", 1344.0, 744.0],
[1368818419148, "applications/index", 911.0, 447.0],
[1368818419166, "applications/show", 1589.0, 960.0],
[1368818419238, "custom_views/show", 1010.0, 464.0],
[1368818419248, "applications/show", 4321.0, 546.0],
[1368818419255, "infrastructure/hosts/show", 3156.0, 2228.0],
[1368818419270, "public_access/charts/show", 817.0, 137.0],
[1368818419281, "applications/show", 1903.0, 464.0],
[1368818419404, "platform/plugin_pages/show", 1414.0, 545.0],
[1368818419463, "public_access/charts/show", 245.0, 157.0],
[1368818419470, "applications/show", 1084.0, 616.0],
[1368818419532, "public_access/charts/show", 873.0, 115.0],
[1368818419544, "applications/show", 996.0, 569.0],
[1368818419579, "infrastructure/hosts/index", 5413.0, 3565.0],
[1368818419626, "applications/show", 1728.0, 422.0],
[1368818419665, "traced_errors/index", 1234.0, 488.0],
[1368818419667, "transactions/index", 5514.0, 555.0],
[1368818419671, "applications/index", 1778.0, 1289.0],
[1368818419703, "applications/show", 1204.0, 342.0],
[1368818419739, "public_access/charts/show", 890.0, 131.0],
[1368818419742, "pages/pricing", 2274.0, 1156.0],
[1368818419793, "public_access/charts/show", 2835.0, 255.0],
[1368818419906, "applications/show", 1760.0, 1074.0],
[1368818419913, "platform/plugin_pages/show", 1746.0, 601.0],
[1368818419923, "traced_errors/index", 856.0, 365.0],
[1368818419948, "infrastructure/hosts/show", 1177.0, 715.0],
[1368818419991, "infrastructure/hosts/index", 1425.0, 531.0],
[1368818420067, "traced_errors/index", 1258.0, 969.0],
[1368818420079, "applications/index", 833.0, 448.0],
[1368818420130, "public_access/charts/show", 234.0, 154.0],
[1368818420135, "applications/show", 3438.0, 579.0],
[1368818420197, "applications/index", 986.0, 635.0],
[1368818420284, "infrastructure/hosts/show", 1390.0, 903.0],
[1368818420358, "applications/show", 10580.0, 2140.0],
[1368818420360, "infrastructure/hosts/index", 1185.0, 536.0],
[1368818420376, "infrastructure/hosts/show", 1231.0, 436.0],
[1368818420422, "public_access/charts/show", 394.0, 369.0],
[1368818420446, "infrastructure/hosts/show", 1397.0, 779.0],
[1368818420529, "public_access/charts/show", 176.0, 140.0],
[1368818420568, "applications/show", 2469.0, 343.0],
[1368818420631, "applications/show", 3178.0, 808.0],
[1368818420632, "platform/plugin_pages/show", 14216.0, 3283.0],
[1368818420636, "public_access/charts/show", 151.0, 125.0],
[1368818420654, "infrastructure/network/index", 1522.0, 619.0],
[1368818420709, "applications/show", 1229.0, 682.0],
[1368818420777, "public_access/charts/show", 191.0, 162.0],
[1368818420841, "applications/index", 1194.0, 643.0],
[1368818420859, "applications/show", 3493.0, 2439.0],
[1368818420886, "applications/show", 950.0, 398.0],
[1368818420894, "public_access/charts/show", 376.0, 310.0],
[1368818420940, "public_access/charts/show", 424.0, 391.0],
[1368818421012, "public_access/charts/show", 1151.0, 265.0],
[1368818421020, "public_access/charts/show", 160.0, 135.0],
[1368818421052, "traced_errors/index", 1680.0, 1196.0],
[1368818421052, "public_access/charts/show", 5881.0, 759.0],
[1368818421053, "infrastructure/hosts/index", 3985.0, 1067.0],
[1368818421103, "public_access/charts/show", 242.0, 191.0],
[1368818421112, "applications/show", 845.0, 333.0],
[1368818421173, "applications/index", 951.0, 617.0],
[1368818421182, "infrastructure/hosts/show", 1506.0, 1333.0],
[1368818421242, "periscope/partners/index", 2420.0, 2362.0],
[1368818421306, "public_access/charts/show", 167.0, 141.0],
[1368818421334, "articles/show", 686.0, 39.0],
[1368818421334, "pages/signup_external", 386.0, 185.0],
[1368818421390, "public_access/charts/show", 202.0, 153.0],
[1368818421498, "traced_errors/index", 1976.0, 1120.0],
[1368818421517, "infrastructure/hosts/index", 2072.0, 864.0],
[1368818421531, "public_access/charts/show", 389.0, 160.0],
[1368818421542, "applications/index", 1783.0, 500.0],
[1368818421603, "public_access/charts/show", 393.0, 151.0],
[1368818421760, "applications/show", 4358.0, 1673.0],
[1368818421772, "infrastructure/hosts/show", 1310.0, 1095.0],
[1368818421780, "public_access/charts/show", 485.0, 133.0],
[1368818421783, "infrastructure/hosts/index", 929.0, 435.0],
[1368818421811, "infrastructure/hosts/index", 1383.0, 489.0],
[1368818421826, "public_access/charts/show", 1214.0, 275.0],
[1368818421829, "traced_errors/index", 764.0, 380.0],
[1368818421881, "traced_errors/index", 1874.0, 1236.0],
[1368818421937, "infrastructure/hosts/show", 1007.0, 427.0],
[1368818422036, "gadgets/dashboard", 1318.0, 1134.0],
[1368818422048, "public_access/charts/show", 5898.0, 748.0],
[1368818422063, "infrastructure/hosts/show", 1910.0, 1105.0],
[1368818422131, "applications/show", 1495.0, 958.0],
[1368818422140, "traced_errors/index", 1448.0, 670.0],
[1368818422203, "public_access/charts/show", 789.0, 381.0],
[1368818422252, "applications/index", 1773.0, 968.0],
[1368818422358, "infrastructure/hosts/index", 1981.0, 453.0],
[1368818422540, "applications/show", 2743.0, 1095.0],
[1368818422566, "databases/index", 1859.0, 968.0],
[1368818422590, "applications/index", 1162.0, 701.0],
[1368818422742, "applications/show", 1414.0, 323.0],
[1368818422793, "applications/index", 2671.0, 1984.0],
[1368818423073, "applications/show", 1879.0, 593.0],
[1368818423115, "infrastructure/hosts/index", 1054.0, 567.0],
[1368818423184, "infrastructure/hosts/show", 1364.0, 599.0],
[1368818423320, "applications/show", 3427.0, 1906.0],
[1368818423343, "applications/index", 1399.0, 874.0],
[1368818423345, "applications/index", 2150.0, 1055.0],
[1368818423347, "public_access/charts/show", 439.0, 333.0],
[1368818423509, "ping_targets/index", 1319.0, 721.0],
[1368818423631, "applications/show", 2853.0, 374.0],
[1368818423724, "applications/show", 1621.0, 679.0],
[1368818423742, "applications/show", 4539.0, 795.0],
[1368818423766, "applications/index", 1700.0, 1002.0],
[1368818423767, "pages/signup_external", 317.0, 129.0],
[1368818423769, "help/index", 630.0, 35.0],
[1368818423909, "infrastructure/hosts/index", 995.0, 583.0],
[1368818423945, "public_access/charts/show", 619.0, 220.0],
[1368818423984, "applications/show", 3488.0, 1027.0],
[1368818423984, "applications/index", 1113.0, 633.0],
[1368818424023, "infrastructure/hosts/show", 1076.0, 534.0],
[1368818424073, "infrastructure/hosts/show", 1106.0, 536.0],
[1368818424089, "public_access/charts/show", 621.0, 163.0],
[1368818424090, "public_access/charts/show", 623.0, 181.0],
[1368818424091, "public_access/charts/show", 631.0, 166.0],
[1368818424092, "public_access/charts/show", 633.0, 213.0],
[1368818424104, "applications/show", 1313.0, 587.0],
[1368818424115, "applications/show", 774.0, 404.0],
[1368818424196, "traced_errors/show", 926.0, 444.0],
[1368818424237, "applications/show", 4752.0, 644.0],
[1368818424238, "infrastructure/hosts/show", 2169.0, 1081.0],
[1368818424259, "public_access/charts/show", 839.0, 272.0],
[1368818424300, "applications/show", 1231.0, 774.0],
[1368818424358, "applications/edit_alerts", 1354.0, 631.0],
[1368818424495, "public_access/charts/show", 467.0, 341.0],
[1368818424620, "applications/index", 831.0, 553.0],
[1368818424633, "infrastructure/hosts/show", 1694.0, 576.0],
[1368818424796, "applications/index", 2820.0, 708.0],
[1368818424909, "public_access/charts/show", 245.0, 185.0],
[1368818424910, "applications/index", 1472.0, 457.0],
[1368818424911, "applications/index", 1641.0, 647.0],
[1368818424979, "public_access/charts/show", 308.0, 254.0],
[1368818425023, "public_access/charts/show", 291.0, 153.0],
[1368818425074, "applications/show", 7981.0, 5455.0],
[1368818425107, "applications/show", 1363.0, 466.0],
[1368818425126, "public_access/charts/show", 7972.0, 774.0],
[1368818425128, "custom_views/show", 14659.0, 1024.0],
[1368818425197, "applications/show", 2713.0, 2017.0],
[1368818425219, "infrastructure/hosts/index", 955.0, 539.0],
[1368818425305, "public_access/charts/show", 1071.0, 429.0],
[1368818425306, "public_access/charts/show", 1071.0, 422.0],
[1368818425306, "public_access/charts/show", 935.0, 355.0],
[1368818425315, "public_access/charts/show", 1190.0, 443.0],
[1368818425448, "public_access/charts/show", 436.0, 365.0],
[1368818425457, "infrastructure/hosts/index", 1751.0, 877.0],
[1368818425501, "applications/index", 1146.0, 629.0],
[1368818425501, "public_access/charts/show", 486.0, 414.0],
[1368818425526, "public_access/charts/show", 1265.0, 454.0],
[1368818425628, "applications/index", 2123.0, 364.0],
[1368818425665, "infrastructure/hosts/index", 2149.0, 1217.0],
[1368818425674, "applications/index", 2183.0, 726.0],
[1368818425708, "public_access/charts/show", 2631.0, 478.0],
[1368818425819, "applications/show", 902.0, 474.0],
[1368818425841, "public_access/charts/show", 3071.0, 582.0],
[1368818425842, "public_access/charts/show", 3052.0, 150.0],
[1368818425858, "public_access/charts/show", 3160.0, 160.0],
[1368818425889, "public_access/charts/show", 2764.0, 163.0],
[1368818425890, "public_access/charts/show", 3017.0, 476.0],
[1368818425890, "public_access/charts/show", 3104.0, 153.0],
[1368818425890, "public_access/charts/show", 3039.0, 161.0],
[1368818425890, "public_access/charts/show", 3163.0, 148.0],
[1368818425891, "public_access/charts/show", 3079.0, 691.0],
[1368818425901, "traced_errors/index", 1840.0, 936.0],
[1368818425946, "infrastructure/hosts/index", 1417.0, 867.0],
[1368818426077, "applications/index", 10691.0, 5587.0],
[1368818426097, "public_access/charts/show", 635.0, 223.0],
[1368818426164, "applications/index", 1390.0, 974.0],
[1368818426218, "applications/index", 1226.0, 412.0],
[1368818426270, "traced_errors/index", 964.0, 580.0],
[1368818426311, "applications/show", 20024.0, 572.0],
[1368818426333, "applications/show", 2231.0, 1545.0],
[1368818426467, "public_access/charts/show", 242.0, 126.0],
[1368818426498, "applications/show", 1639.0, 939.0],
[1368818426508, "public_access/charts/show", 768.0, 670.0],
[1368818426532, "infrastructure/hosts/index", 1026.0, 0.0],
[1368818426754, "applications/show", 1827.0, 1213.0],
[1368818426765, "applications/show", 2214.0, 931.0],
[1368818426990, "applications/show", 1800.0, 716.0],
[1368818427004, "platform/plugin_pages/show", 2635.0, 1965.0],
[1368818427162, "public_access/charts/show", 469.0, 260.0],
[1368818427170, "applications/show", 1690.0, 1021.0],
[1368818427249, "infrastructure/hosts/index", 7305.0, 1060.0],
[1368818427378, "applications/show", 1118.0, 615.0],
[1368818427458, "public_access/charts/show", 354.0, 237.0],
[1368818427541, "infrastructure/hosts/index", 3179.0, 1734.0],
[1368818427594, "infrastructure/hosts/show", 1515.0, 677.0],
[1368818427667, "infrastructure/hosts/index", 3107.0, 587.0],
[1368818427713, "public_access/charts/show", 248.0, 142.0],
[1368818427822, "infrastructure/hosts/show", 1053.0, 489.0],
[1368818427842, "traced_errors/index", 1110.0, 526.0],
[1368818427843, "public_access/charts/show", 854.0, 273.0],
[1368818427852, "optimize/optimizations/index", 1408.0, 779.0],
[1368818427937, "transactions/index", 2843.0, 1157.0],
[1368818427983, "public_access/charts/show", 2169.0, 284.0],
[1368818428012, "public_access/charts/show", 2191.0, 285.0],
[1368818428014, "public_access/charts/show", 2202.0, 286.0],
[1368818428014, "public_access/charts/show", 2180.0, 284.0],
[1368818428026, "infrastructure/hosts/show", 1422.0, 1069.0],
[1368818428027, "public_access/charts/show", 2213.0, 275.0],
[1368818428036, "public_access/charts/show", 2224.0, 273.0],
[1368818428037, "applications/index", 6564.0, 828.0],
[1368818428050, "public_access/charts/show", 2167.0, 283.0],
[1368818428053, "public_access/charts/show", 2159.0, 283.0],
[1368818428057, "public_access/charts/show", 2151.0, 282.0],
[1368818428060, "public_access/charts/show", 2142.0, 281.0],
[1368818428122, "public_access/charts/show", 241.0, 124.0],
[1368818428122, "infrastructure/hosts/index", 3832.0, 678.0],
[1368818428124, "periscope/partners/index", 1974.0, 1922.0],
[1368818428147, "applications/index", 878.0, 491.0],
[1368818428212, "infrastructure/hosts/index", 2893.0, 528.0],
[1368818428233, "applications/show", 2574.0, 446.0],
[1368818428237, "infrastructure/hosts/index", 2405.0, 1214.0],
[1368818428295, "applications/index", 1726.0, 853.0],
[1368818428309, "infrastructure/hosts/show", 1003.0, 524.0],
[1368818428325, "applications/show", 6450.0, 756.0],
[1368818428389, "applications/index", 1168.0, 789.0],
[1368818428393, "infrastructure/hosts/index", 4369.0, 627.0],
[1368818428444, "applications/show", 2777.0, 1067.0],
[1368818428598, "optimize/database_report/index", 922.0, 1.0],
[1368818428642, "sessions/new", 999.0, 671.0],
[1368818428670, "applications/index", 1681.0, 1263.0],
[1368818428679, "applications/index", 1581.0, 1088.0],
[1368818428682, "sessions/new", 749.0, 94.0],
[1368818428743, "public_access/charts/show", 282.0, 163.0],
[1368818428748, "traced_errors/index", 1380.0, 752.0],
[1368818428851, "applications/edit_alerts", 1267.0, 558.0],
[1368818428890, "public_access/charts/show", 2917.0, 2253.0],
[1368818428932, "infrastructure/hosts/index", 9517.0, 3042.0],
[1368818429016, "applications/show", 1835.0, 1036.0],
[1368818429029, "platform/plugin_pages/show", 1690.0, 1392.0],
[1368818429113, "applications/show", 1468.0, 741.0],
[1368818429151, "public_access/charts/show", 9048.0, 1630.0],
[1368818429341, "public_access/charts/show", 385.0, 295.0],
[1368818429348, "public_access/charts/show", 608.0, 174.0],
[1368818429386, "public_access/charts/show", 602.0, 479.0],
[1368818429394, "infrastructure/hosts/index", 3360.0, 4.0],
[1368818429395, "infrastructure/disks/index", 1193.0, 521.0],
[1368818429463, "public_access/charts/show", 464.0, 298.0],
[1368818429464, "public_access/charts/show", 588.0, 311.0],
[1368818429483, "infrastructure/hosts/index", 2391.0, 1254.0],
[1368818429619, "applications/show", 2151.0, 878.0],
[1368818429658, "infrastructure/hosts/index", 2538.0, 1631.0],
[1368818429726, "mobile_applications/applications/show", 1027.0, 571.0],
[1368818429726, "public_access/charts/show", 569.0, 545.0],
[1368818429751, "public_access/charts/show", 342.0, 312.0],
[1368818429864, "applications/index", 2606.0, 990.0],
[1368818429974, "infrastructure/hosts/show", 1146.0, 958.0],
[1368818429977, "applications/index", 801.0, 368.0],
[1368818430015, "public_access/charts/show", 363.0, 333.0],
[1368818430112, "platform/plugin_pages/show", 3436.0, 888.0],
[1368818430192, "public_access/charts/show", 572.0, 541.0],
[1368818430201, "periscope/partners/show", 404.0, 358.0],
[1368818430276, "public_access/charts/show", 307.0, 256.0],
[1368818430402, "infrastructure/hosts/index", 3173.0, 1118.0],
[1368818430414, "mobile_applications/applications/show", 998.0, 675.0],
[1368818430462, "applications/show", 1099.0, 626.0],
[1368818430465, "public_access/charts/show", 358.0, 282.0],
[1368818430466, "public_access/charts/show", 427.0, 332.0],
[1368818430476, "public_access/charts/show", 403.0, 283.0],
[1368818430480, "infrastructure/hosts/show", 1589.0, 1128.0],
[1368818430621, "applications/show", 1477.0, 797.0],
[1368818430680, "public_access/charts/show", 502.0, 160.0],
[1368818430683, "applications/index", 1476.0, 980.0],
[1368818430723, "public_access/charts/show", 622.0, 563.0],
[1368818430872, "infrastructure/hosts/show", 1513.0, 452.0],
[1368818430884, "public_access/charts/show", 312.0, 201.0],
[1368818430962, "public_access/charts/show", 684.0, 253.0],
[1368818431064, "public_access/charts/show", 702.0, 340.0],
[1368818431066, "public_access/charts/show", 716.0, 288.0],
[1368818431067, "public_access/charts/show", 726.0, 286.0],
[1368818431067, "public_access/charts/show", 738.0, 286.0],
[1368818431085, "mobile_applications/applications/index", 1144.0, 968.0],
[1368818431237, "applications/show", 1299.0, 656.0],
[1368818431256, "applications/index", 1397.0, 817.0],
[1368818431393, "applications/show", 1118.0, 544.0],
[1368818431510, "pages/home_signup", 1904.0, 3.0],
[1368818431565, "applications/index", 1766.0, 1356.0],
[1368818431773, "infrastructure/hosts/show", 1903.0, 1522.0],
[1368818431822, "infrastructure/hosts/index", 2219.0, 825.0],
[1368818431831, "public_access/charts/show", 1505.0, 549.0],
[1368818431914, "public_access/charts/show", 163.0, 88.0],
[1368818431958, "public_access/charts/show", 192.0, 139.0],
[1368818431983, "public_access/charts/show", 1631.0, 556.0],
[1368818431988, "public_access/charts/show", 1620.0, 556.0],
[1368818431989, "public_access/charts/show", 1607.0, 487.0],
[1368818431990, "public_access/charts/show", 1643.0, 551.0],
[1368818432003, "applications/show", 1661.0, 791.0],
[1368818432110, "public_access/charts/show", 2075.0, 752.0],
[1368818432112, "applications/show", 1091.0, 436.0],
[1368818432176, "public_access/charts/show", 2094.0, 1030.0],
[1368818432213, "public_access/charts/show", 168.0, 137.0],
[1368818432273, "public_access/charts/show", 770.0, 383.0],
[1368818432278, "public_access/charts/show", 757.0, 385.0],
[1368818432284, "public_access/charts/show", 748.0, 396.0],
[1368818432295, "public_access/charts/show", 843.0, 509.0],
[1368818432303, "public_access/charts/show", 234.0, 169.0],
[1368818432303, "public_access/charts/show", 190.0, 151.0],
[1368818432345, "applications/index", 869.0, 501.0],
[1368818432349, "applications/show", 960.0, 523.0],
[1368818432628, "infrastructure/hosts/index", 31938.0, 1793.0],
[1368818432674, "applications/index", 1409.0, 1004.0],
[1368818432746, "traced_errors/index", 1028.0, 577.0],
[1368818432751, "public_access/charts/show", 582.0, 191.0],
[1368818432751, "infrastructure/hosts/index", 1576.0, 741.0],
[1368818432816, "applications/show", 1526.0, 1023.0],
[1368818432847, "applications/index", 1059.0, 727.0],
[1368818432863, "infrastructure/hosts/index", 2003.0, 899.0],
[1368818432902, "infrastructure/hosts/show", 785.0, 273.0],
[1368818432907, "applications/index", 1857.0, 1008.0],
[1368818432938, "public_access/charts/show", 749.0, 0.0],
[1368818432961, "applications/show", 6130.0, 1310.0],
[1368818433011, "traced_errors/show", 1782.0, 1079.0],
[1368818433060, "public_access/charts/show", 346.0, 268.0],
[1368818433134, "accounts/show", 1487.0, 520.0],
[1368818433144, "public_access/charts/show", 419.0, 342.0],
[1368818433167, "traced_errors/index", 1146.0, 386.0],
[1368818433168, "infrastructure/hosts/show", 3110.0, 1051.0],
[1368818433245, "applications/show", 4464.0, 870.0],
[1368818433250, "infrastructure/hosts/show", 3878.0, 1980.0],
[1368818433268, "api/v1/data/multi_app_data", 5080.0, 1034.0],
[1368818433332, "public_access/charts/show", 530.0, 388.0],
[1368818433349, "applications/index", 866.0, 442.0],
[1368818433354, "platform/plugin_pages/show", 7060.0, 3052.0],
[1368818433414, "infrastructure/hosts/show", 875.0, 381.0],
[1368818433544, "applications/index", 1156.0, 732.0],
[1368818433565, "applications/show", 1242.0, 606.0],
[1368818433591, "infrastructure/hosts/index", 2091.0, 1263.0],
[1368818433616, "applications/index", 1460.0, 854.0],
[1368818433649, "sessions/new", 6416.0, 810.0],
[1368818433699, "public_access/charts/show", 614.0, 490.0],
[1368818433717, "traced_errors/index", 1387.0, 720.0],
[1368818434045, "applications/show", 3071.0, 1204.0],
[1368818434134, "applications/show", 3046.0, 673.0],
[1368818434163, "applications/show", 3208.0, 1687.0],
[1368818434180, "applications/index", 1581.0, 744.0],
[1368818434214, "public_access/charts/show", 1080.0, 296.0],
[1368818434260, "infrastructure/hosts/show", 2271.0, 1806.0],
[1368818434329, "applications/index", 1203.0, 437.0],
[1368818434428, "public_access/charts/show", 1074.0, 338.0],
[1368818434437, "public_access/charts/show", 1055.0, 328.0],
[1368818434442, "public_access/charts/show", 1039.0, 324.0],
[1368818434472, "applications/show", 1469.0, 281.0],
[1368818434508, "public_access/charts/show", 1064.0, 332.0],
[1368818434513, "public_access/charts/show", 1025.0, 269.0],
[1368818434522, "public_access/charts/show", 1015.0, 271.0],
[1368818434570, "infrastructure/hosts/show", 1747.0, 983.0],
[1368818434603, "public_access/charts/show", 1755.0, 1707.0],
[1368818434614, "public_access/charts/show", 1004.0, 272.0],
[1368818434651, "applications/index", 1055.0, 670.0],
[1368818434695, "public_access/charts/show", 979.0, 361.0],
[1368818434700, "public_access/charts/show", 1389.0, 273.0],
[1368818434716, "applications/show", 1500.0, 1031.0],
[1368818434731, "traced_errors/index", 1570.0, 864.0],
[1368818434780, "infrastructure/hosts/index", 1071.0, 515.0],
[1368818434830, "applications/show", 2559.0, 1903.0],
[1368818434871, "applications/index", 1392.0, 442.0],
[1368818434893, "applications/show", 1200.0, 785.0],
[1368818434936, "applications/show", 1633.0, 547.0],
[1368818434966, "public_access/charts/show", 1534.0, 544.0],
[1368818435016, "applications/show", 1323.0, 602.0],
[1368818435020, "infrastructure/hosts/index", 2198.0, 1115.0],
[1368818435027, "applications/index", 1759.0, 849.0],
[1368818435090, "infrastructure/hosts/index", 4785.0, 281.0],
[1368818435113, "mobile_applications/applications/index", 932.0, 723.0],
[1368818435143, "applications/index", 3055.0, 1248.0],
[1368818435147, "applications/show", 2847.0, 608.0],
[1368818435181, "applications/index", 1326.0, 601.0],
[1368818435377, "infrastructure/hosts/show", 5476.0, 1108.0],
[1368818435415, "public_access/charts/show", 2240.0, 1534.0],
[1368818435633, "infrastructure/hosts/index", 2372.0, 848.0],
[1368818435861, "infrastructure/hosts/show", 1824.0, 832.0],
[1368818435922, "applications/show", 3179.0, 2015.0],
[1368818436041, "applications/index", 1089.0, 677.0],
[1368818436098, "periscope/partners/edit", 568.0, 520.0],
[1368818436102, "public_access/charts/show", 1070.0, 451.0],
[1368818436232, "mobile_applications/applications/show", 1095.0, 729.0],
[1368818436269, "custom_views/show", 1493.0, 917.0],
[1368818436285, "applications/index", 3247.0, 500.0],
[1368818436305, "applications/show", 7590.0, 3341.0],
[1368818436338, "applications/show", 1459.0, 673.0],
[1368818436380, "applications/index", 3650.0, 2719.0],
[1368818436430, "applications/index", 3767.0, 1703.0],
[1368818436538, "applications/index", 1689.0, 723.0],
[1368818437176, "traced_errors/index", 4106.0, 2466.0],
[1368818437206, "internal/customers/show", 538.0, 1.0],
[1368818437239, "infrastructure/hosts/index", 1882.0, 1034.0],
[1368818437362, "public_access/charts/show", 869.0, 752.0],
[1368818437393, "optimize/optimizations/index", 743.0, 0.0],
[1368818437452, "applications/index", 5557.0, 4559.0],
[1368818437481, "infrastructure/hosts/show", 1520.0, 972.0],
[1368818437549, "public_access/charts/show", 1010.0, 931.0],
[1368818438180, "applications/show", 18855.0, 15343.0],
[1368818438211, "infrastructure/hosts/index", 3577.0, 2597.0],
[1368818438295, "public_access/charts/show", 1466.0, 1416.0],
[1368818438297, "public_access/charts/show", 1556.0, 1467.0],
[1368818438297, "public_access/charts/show", 1382.0, 1251.0],
[1368818438456, "applications/show", 4254.0, 2445.0],
[1368818438465, "infrastructure/hosts/show", 1893.0, 1356.0],
[1368818438471, "infrastructure/hosts/show", 1936.0, 960.0],
[1368818438562, "infrastructure/hosts/index", 2404.0, 1806.0],
[1368818438727, "infrastructure/hosts/show", 1864.0, 1261.0],
[1368818438760, "infrastructure/hosts/index", 2733.0, 1306.0],
[1368818438882, "public_access/charts/show", 1410.0, 1347.0],
[1368818438954, "applications/show", 3495.0, 1947.0],
[1368818439260, "public_access/charts/show", 1212.0, 1173.0],
[1368818439364, "public_access/charts/show", 1893.0, 1855.0],
[1368818439372, "custom_views/show", 3419.0, 2138.0],
[1368818439490, "mobile_applications/applications/index", 2350.0, 1376.0],
[1368818439552, "public_access/charts/show", 1418.0, 1385.0],
[1368818439611, "public_access/charts/show", 1477.0, 1414.0],
[1368818439644, "uptime/index", 1556.0, 423.0],
[1368818439701, "applications/show", 3462.0, 1049.0],
[1368818439772, "applications/show", 2140.0, 1224.0],
[1368818439823, "public_access/charts/show", 1290.0, 1180.0],
[1368818440149, "infrastructure/hosts/index", 2701.0, 1661.0],
[1368818440203, "infrastructure/hosts/index", 2393.0, 1836.0],
[1368818440463, "applications/show", 2190.0, 1445.0],
[1368818440564, "public_access/charts/show", 1573.0, 1518.0],
[1368818440992, "applications/index", 2246.0, 1883.0],
[1368818441074, "applications/show", 2461.0, 1823.0],
[1368818441223, "public_access/charts/show", 3168.0, 3125.0],
[1368818441293, "infrastructure/disks/index", 4324.0, 3667.0],
[1368818441398, "platform/plugin_pages/show", 2084.0, 478.0],
[1368818441545, "applications/show", 3037.0, 2339.0],
[1368818441623, "applications/show", 2571.0, 2030.0],
[1368818441741, "landing_pages/nlp_mobile_monitoring", 7108.0, 481.0],
[1368818441786, "public_access/charts/show", 1451.0, 1388.0],
[1368818441792, "applications/show", 1904.0, 1337.0],
[1368818441805, "applications/show", 4231.0, 2811.0],
[1368818441961, "public_access/charts/show", 1884.0, 1575.0],
[1368818442043, "public_access/charts/show", 1946.0, 1614.0],
[1368818442064, "public_access/charts/show", 1961.0, 1631.0],
[1368818442157, "public_access/charts/show", 1993.0, 1606.0],
[1368818442164, "public_access/charts/show", 2009.0, 1310.0],
[1368818442303, "applications/show", 3975.0, 3297.0],
[1368818442323, "applications/index", 3063.0, 2135.0],
[1368818442360, "optimize/sla_report/index", 1842.0, 1570.0],
[1368818442587, "public_access/charts/show", 3549.0, 3479.0],
[1368818442587, "applications/index", 2089.0, 1563.0],
[1368818442618, "applications/show", 6780.0, 6572.0],
[1368818442676, "public_access/charts/show", 6750.0, 6692.0],
[1368818442913, "public_access/charts/show", 2859.0, 1603.0],
[1368818443069, "public_access/charts/show", 2957.0, 1604.0],
[1368818443173, "pages/home_signup", 5644.0, 126.0],
[1368818443305, "infrastructure/hosts/index", 3842.0, 2894.0],
[1368818443485, "applications/show", 5243.0, 3348.0],
[1368818443561, "landing_pages/nerdlife", 10472.0, 5123.0],
[1368818443565, "traced_errors/index", 3084.0, 1912.0],
[1368818443613, "traced_errors/index", 2449.0, 2014.0],
[1368818443617, "applications/show", 2861.0, 2003.0],
[1368818443636, "applications/show", 2684.0, 1724.0],
[1368818443676, "custom_views/show", 3084.0, 2923.0],
[1368818443812, "applications/show", 4422.0, 1975.0],
[1368818443863, "applications/show", 2597.0, 2218.0],
[1368818444073, "applications/show", 4845.0, 2433.0],
[1368818444116, "public_access/charts/show", 4052.0, 3679.0],
[1368818444206, "applications/show", 3152.0, 2714.0],
[1368818444266, "applications/index", 1728.0, 1501.0],
[1368818444450, "applications/show", 4495.0, 3837.0],
[1368818444575, "applications/show", 3311.0, 2152.0],
[1368818444761, "platform/plugin_pages/show", 3517.0, 2413.0],
[1368818444807, "applications/index", 14402.0, 784.0],
[1368818444954, "applications/index", 3123.0, 2418.0],
[1368818445053, "public_access/charts/show", 3184.0, 3115.0],
[1368818445107, "periscope/partners/show", 940.0, 863.0],
[1368818445115, "applications/index", 18529.0, 6636.0],
[1368818445186, "public_access/charts/show", 2964.0, 2711.0],
[1368818445232, "public_access/charts/show", 4538.0, 3919.0],
[1368818445317, "public_access/charts/show", 5249.0, 3357.0],
[1368818445525, "public_access/charts/show", 5376.0, 3556.0],
[1368818445641, "named_transactions/show", 26526.0, 26312.0],
[1368818445959, "platform/plugin_pages/show", 4860.0, 3899.0],
[1368818446037, "applications/show", 3590.0, 2860.0],
[1368818446040, "traced_errors/index", 4069.0, 3487.0],
[1368818446061, "public_access/charts/show", 8439.0, 8389.0],
[1368818446136, "public_access/charts/show", 6058.0, 5241.0],
[1368818446204, "public_access/charts/show", 8112.0, 8079.0],
[1368818446204, "traced_errors/index", 3557.0, 3155.0],
[1368818446315, "applications/show", 4229.0, 3749.0],
[1368818446452, "public_access/charts/show", 1002.0, 899.0],
[1368818446527, "public_access/charts/show", 2138.0, 2079.0],
[1368818446539, "mobile_applications/applications/index", 9933.0, 9650.0],
[1368818446654, "applications/show", 4976.0, 4103.0],
[1368818446705, "applications/show", 4664.0, 2231.0],
[1368818446707, "applications/show", 4939.0, 4732.0],
[1368818446756, "applications/show", 6306.0, 1905.0],
[1368818446782, "traced_errors/index", 3047.0, 2562.0],
[1368818446831, "traced_errors/index", 9789.0, 9004.0],
[1368818446867, "infrastructure/hosts/show", 27019.0, 25992.0],
[1368818446884, "public_access/charts/show", 4230.0, 4067.0],
[1368818446917, "applications/show", 4172.0, 3356.0],
[1368818447147, "applications/index", 8702.0, 7677.0],
[1368818447163, "infrastructure/hosts/index", 4367.0, 4106.0],
[1368818447208, "applications/index", 27345.0, 26488.0],
[1368818447215, "applications/index", 2432.0, 2065.0],
[1368818447224, "accounts/index", 3285.0, 3002.0],
[1368818447227, "applications/index", 1579.0, 1205.0],
[1368818447337, "applications/show", 26833.0, 26594.0],
[1368818447382, "public_access/charts/show", 1689.0, 1609.0],
[1368818447424, "public_access/charts/show", 4756.0, 4594.0],
[1368818447573, "applications/show", 1800.0, 1498.0],
[1368818447627, "infrastructure/hosts/show", 31986.0, 16349.0],
[1368818447828, "applications/index", 4810.0, 4421.0],
[1368818447866, "applications/index", 4550.0, 3422.0],
[1368818447887, "applications/index", 13989.0, 13488.0],
[1368818447917, "applications/show", 10875.0, 10541.0],
[1368818447948, "applications/show", 2631.0, 1395.0],
[1368818447956, "public_access/charts/show", 1701.0, 1535.0],
[1368818448028, "traced_errors/index", 2221.0, 1748.0],
[1368818448073, "applications/show", 12027.0, 10850.0],
[1368818448094, "infrastructure/hosts/index", 4712.0, 3561.0],
[1368818448108, "applications/show", 6282.0, 2563.0],
[1368818448110, "applications/index", 3857.0, 2989.0],
[1368818448147, "traced_errors/index", 1532.0, 1097.0],
[1368818448164, "applications/index", 3940.0, 2909.0],
[1368818448232, "applications/show", 1457.0, 4.0],
[1368818448301, "traced_errors/index", 10816.0, 10060.0],
[1368818448301, "applications/index", 3823.0, 2097.0],
[1368818448342, "traced_errors/index", 5144.0, 4602.0],
[1368818448412, "applications/show", 4853.0, 2980.0],
[1368818448414, "pages/home_signup", 1043.0, 75.0],
[1368818448624, "applications/show", 26999.0, 26415.0],
[1368818448653, "applications/show", 2262.0, 1502.0],
[1368818448681, "named_transactions/show", 2679.0, 2316.0],
[1368818448742, "infrastructure/hosts/index", 4534.0, 3414.0],
[1368818448988, "infrastructure/hosts/index", 1873.0, 1313.0],
[1368818448992, "platform/plugin_pages/show", 2795.0, 2323.0],
[1368818449073, "applications/show", 2983.0, 1553.0],
[1368818449159, "applications/show", 2125.0, 1565.0],
[1368818449178, "pages/signup_external", 247.0, 72.0],
[1368818449180, "infrastructure/hosts/show", 3166.0, 2400.0],
[1368818449183, "admin/url_rules/list", 7093.0, 3992.0],
[1368818449191, "applications/show", 5063.0, 2981.0],
[1368818449234, "help/index", 669.0, 6.0],
[1368818449234, "traced_errors/index", 6947.0, 6218.0],
[1368818449255, "infrastructure/hosts/show", 2991.0, 2251.0],
[1368818449257, "public_access/charts/show", 5361.0, 5268.0],
[1368818449259, "public_access/charts/show", 3776.0, 3712.0],
[1368818449262, "applications/show", 3086.0, 1880.0],
[1368818449267, "applications/index", 2464.0, 1961.0],
[1368818449355, "applications/show", 2211.0, 1602.0],
[1368818449420, "applications/show", 3117.0, 2664.0],
[1368818449445, "infrastructure/hosts/show", 2188.0, 1406.0],
[1368818449478, "public_access/charts/show", 6320.0, 3929.0],
[1368818449484, "infrastructure/hosts/show", 2774.0, 2162.0],
[1368818449510, "public_access/charts/show", 6329.0, 2389.0],
[1368818449510, "public_access/charts/show", 6340.0, 5214.0],
[1368818449513, "public_access/charts/show", 6341.0, 2849.0],
[1368818449517, "public_access/charts/show", 6340.0, 5026.0],
[1368818449518, "public_access/charts/show", 6344.0, 4914.0],
[1368818449519, "applications/show", 2553.0, 1331.0],
[1368818449519, "applications/index", 9668.0, 9293.0],
[1368818449524, "infrastructure/hosts/show", 8855.0, 8369.0],
[1368818449546, "infrastructure/hosts/index", 8685.0, 7464.0],
[1368818449547, "applications/index", 6620.0, 3055.0],
[1368818449574, "public_access/charts/show", 6352.0, 6038.0],
[1368818449605, "applications/show", 2219.0, 1498.0],
[1368818449612, "public_access/charts/show", 6388.0, 4206.0],
[1368818449613, "public_access/charts/show", 6388.0, 4990.0],
[1368818449652, "public_access/charts/show", 6404.0, 3809.0],
[1368818449655, "public_access/charts/show", 6402.0, 4063.0],
[1368818449656, "public_access/charts/show", 6427.0, 5831.0],
[1368818449665, "applications/index", 1690.0, 1292.0],
[1368818449668, "public_access/charts/show", 6432.0, 5839.0],
[1368818449670, "applications/show", 2178.0, 1340.0],
[1368818449676, "infrastructure/hosts/show", 2081.0, 1484.0],
[1368818449809, "gadgets/dashboard", 1866.0, 1506.0],
[1368818449821, "applications/show", 2163.0, 1370.0],
[1368818449870, "applications/index", 9094.0, 7848.0],
[1368818449890, "platform/plugin_pages/dashboard", 3495.0, 3169.0],
[1368818450030, "applications/show", 2055.0, 1561.0],
[1368818450055, "applications/index", 1642.0, 1309.0],
[1368818450152, "pages/about", 2316.0, 93.0],
[1368818450189, "public_access/charts/show", 7100.0, 2843.0],
[1368818450200, "infrastructure/hosts/index", 1674.0, 1033.0],
[1368818450218, "applications/show", 4286.0, 3883.0],
[1368818450244, "applications/show", 2820.0, 2193.0],
[1368818450263, "public_access/charts/show", 849.0, 823.0],
[1368818450264, "public_access/charts/show", 854.0, 812.0],
[1368818450282, "applications/index", 5671.0, 4224.0],
[1368818450323, "applications/index", 1978.0, 1513.0],
[1368818450330, "infrastructure/hosts/show", 2191.0, 1667.0],
[1368818450341, "infrastructure/hosts/index", 3452.0, 2873.0],
[1368818450377, "infrastructure/hosts/show", 28254.0, 27354.0],
[1368818450390, "applications/index", 2875.0, 2318.0],
[1368818450520, "public_access/charts/show", 354.0, 326.0],
[1368818450530, "applications/index", 1563.0, 943.0],
[1368818450545, "public_access/charts/show", 7899.0, 7765.0],
[1368818450630, "applications/show", 5339.0, 3031.0],
[1368818450732, "applications/show", 2752.0, 1772.0],
[1368818450737, "applications/index", 3179.0, 2784.0],
[1368818450774, "applications/show", 16069.0, 14384.0],
[1368818450841, "applications/index", 2077.0, 1469.0],
[1368818450868, "pages/signup_external", 341.0, 94.0],
[1368818450870, "articles/show", 477.0, 6.0],
[1368818450918, "applications/show", 4420.0, 4271.0],
[1368818450929, "applications/show", 2942.0, 1785.0],
[1368818450940, "named_transactions/index", 2990.0, 2115.0],
[1368818450975, "applications/show", 1997.0, 1269.0],
[1368818451081, "traced_errors/index", 3244.0, 2204.0],
[1368818451135, "public_access/charts/show", 713.0, 652.0],
[1368818451159, "public_access/charts/show", 8491.0, 8354.0],
[1368818451202, "mobile_applications/applications/index", 1913.0, 1509.0],
[1368818451245, "applications/show", 4743.0, 2626.0],
[1368818451393, "public_access/charts/show", 325.0, 302.0],
[1368818451403, "applications/index", 2915.0, 2365.0],
[1368818451410, "pages/home_signup", 3894.0, 349.0],
[1368818451482, "applications/index", 5315.0, 4042.0],
[1368818451526, "applications/show", 2872.0, 2255.0],
[1368818451557, "infrastructure/hosts/index", 3348.0, 1459.0],
[1368818451599, "applications/show", 2865.0, 1967.0],
[1368818451639, "platform/plugin_pages/show", 2868.0, 1282.0],
[1368818451647, "public_access/charts/show", 701.0, 595.0],
[1368818451703, "applications/show", 5211.0, 2941.0],
[1368818451740, "public_access/charts/show", 714.0, 529.0],
[1368818451747, "applications/show", 9342.0, 8810.0],
[1368818451841, "platform/plugin_pages/show", 5342.0, 3886.0],
[1368818451867, "infrastructure/hosts/index", 2011.0, 1618.0],
[1368818451915, "traced_errors/index", 8405.0, 8004.0],
[1368818452010, "applications/index", 1318.0, 938.0],
[1368818452021, "public_access/charts/show", 10524.0, 10148.0],
[1368818452028, "infrastructure/hosts/index", 2825.0, 1593.0],
[1368818452099, "applications/show", 3207.0, 1179.0],
[1368818452112, "applications/show", 1859.0, 1118.0],
[1368818452131, "applications/show", 1944.0, 991.0],
[1368818452145, "public_access/charts/show", 897.0, 547.0],
[1368818452164, "applications/show", 4801.0, 3059.0],
[1368818452189, "public_access/charts/show", 763.0, 581.0],
[1368818452245, "public_access/charts/show", 453.0, 366.0],
[1368818452248, "platform/plugin_pages/show", 2236.0, 1376.0],
[1368818452297, "applications/show", 11019.0, 4739.0],
[1368818452391, "applications/show", 3640.0, 1252.0],
[1368818452424, "applications/index", 3271.0, 2777.0],
[1368818452427, "public_access/charts/show", 635.0, 599.0],
[1368818452446, "infrastructure/hosts/show", 2590.0, 1988.0],
[1368818452503, "public_access/charts/show", 702.0, 655.0],
[1368818452514, "applications/show", 2765.0, 1639.0],
[1368818452521, "public_access/charts/show", 822.0, 657.0],
[1368818452527, "public_access/charts/show", 1090.0, 690.0],
[1368818452555, "applications/index", 2730.0, 2003.0],
[1368818452563, "public_access/charts/show", 9849.0, 9691.0],
[1368818452607, "public_access/charts/show", 880.0, 555.0],
[1368818452653, "public_access/charts/show", 791.0, 756.0],
[1368818452653, "applications/show", 3305.0, 1379.0],
[1368818452668, "applications/index", 3472.0, 2837.0],
[1368818452828, "applications/index", 1989.0, 1302.0],
[1368818452857, "applications/index", 3758.0, 3194.0],
[1368818452885, "applications/show", 2319.0, 1907.0],
[1368818452907, "infrastructure/hosts/index", 2049.0, 1340.0],
[1368818453017, "optimize/sla_report/index", 1780.0, 1411.0],
[1368818453034, "landing_pages/lang_php", 6026.0, 217.0],
[1368818453036, "applications/show", 2419.0, 1852.0],
[1368818453057, "public_access/charts/show", 9805.0, 6575.0],
[1368818453058, "public_access/charts/show", 613.0, 506.0],
[1368818453073, "traced_errors/index", 1014.0, 672.0],
[1368818453086, "platform/plugin_pages/show", 3936.0, 2511.0],
[1368818453178, "infrastructure/hosts/index", 6507.0, 3094.0],
[1368818453229, "applications/show", 2293.0, 1750.0],
[1368818453283, "public_access/charts/show", 853.0, 517.0],
[1368818453314, "infrastructure/hosts/index", 2615.0, 1236.0],
[1368818453315, "applications/index", 3089.0, 1727.0],
[1368818453327, "applications/index", 8889.0, 8398.0],
[1368818453333, "applications/show", 2093.0, 1157.0],
[1368818453335, "applications/show", 11130.0, 10394.0],
[1368818453350, "public_access/charts/show", 10274.0, 9304.0],
[1368818453397, "transactions/index", 9876.0, 5926.0],
[1368818453424, "applications/show", 2149.0, 1117.0],
[1368818453445, "applications/index", 26835.0, 26492.0],
[1368818453448, "infrastructure/hosts/show", 1849.0, 1502.0],
[1368818453461, "infrastructure/hosts/index", 2199.0, 1438.0],
[1368818453461, "infrastructure/hosts/index", 1435.0, 954.0],
[1368818453463, "public_access/charts/show", 947.0, 561.0],
[1368818453464, "public_access/charts/show", 957.0, 520.0],
[1368818453482, "applications/show", 2071.0, 857.0],
[1368818453515, "applications/show", 1221.0, 790.0],
[1368818453534, "public_access/charts/show", 1153.0, 606.0],
[1368818453534, "applications/index", 1594.0, 1043.0],
[1368818453539, "applications/show", 1448.0, 975.0],
[1368818453567, "custom_views/show", 7710.0, 7349.0],
[1368818453610, "traced_errors/index", 2695.0, 953.0],
[1368818453654, "public_access/charts/show", 2580.0, 2539.0],
[1368818453659, "applications/show", 1543.0, 1232.0],
[1368818453663, "applications/index", 1838.0, 1184.0],
[1368818453709, "public_access/charts/show", 673.0, 349.0],
[1368818453750, "infrastructure/hosts/index", 1934.0, 1199.0],
[1368818453758, "applications/index", 1533.0, 1069.0],
[1368818453823, "applications/show", 27277.0, 26649.0],
[1368818453830, "infrastructure/hosts/index", 2561.0, 1312.0],
[1368818453843, "platform/plugin_pages/show", 3638.0, 2132.0],
[1368818453847, "infrastructure/hosts/show", 1156.0, 615.0],
[1368818453872, "gadgets/dashboard", 3386.0, 2904.0],
[1368818453881, "pages/jobs", 1475.0, 382.0],
[1368818453900, "public_access/charts/show", 651.0, 554.0],
[1368818453919, "applications/index", 1479.0, 965.0],
[1368818453942, "infrastructure/hosts/show", 2802.0, 1935.0],
[1368818453944, "public_access/charts/show", 1285.0, 727.0],
[1368818453951, "public_access/charts/show", 911.0, 366.0],
[1368818453960, "public_access/charts/show", 1132.0, 383.0],
[1368818453971, "public_access/charts/show", 431.0, 340.0],
[1368818453980, "public_access/charts/show", 403.0, 255.0],
[1368818453980, "public_access/charts/show", 381.0, 259.0],
[1368818453982, "public_access/charts/show", 435.0, 354.0],
[1368818454004, "public_access/charts/show", 472.0, 446.0],
[1368818454026, "public_access/charts/show", 473.0, 446.0],
[1368818454048, "applications/show", 1687.0, 1313.0],
[1368818454052, "public_access/charts/show", 1669.0, 902.0],
[1368818454080, "public_access/charts/show", 1385.0, 578.0],
[1368818454081, "infrastructure/hosts/show", 2039.0, 1393.0],
[1368818454082, "public_access/charts/show", 1390.0, 505.0],
[1368818454100, "public_access/charts/show", 496.0, 331.0],
[1368818454177, "applications/show", 922.0, 435.0],
[1368818454205, "applications/show", 27197.0, 26418.0],
[1368818454211, "public_access/charts/show", 529.0, 499.0],
[1368818454216, "public_access/charts/show", 473.0, 303.0],
[1368818454220, "public_access/charts/show", 506.0, 483.0],
[1368818454226, "public_access/charts/show", 655.0, 618.0],
[1368818454254, "public_access/charts/show", 857.0, 140.0],
[1368818454294, "applications/index", 3342.0, 1853.0],
[1368818454374, "public_access/charts/show", 1004.0, 798.0],
[1368818454395, "public_access/charts/show", 1708.0, 932.0],
[1368818454415, "public_access/charts/show", 1697.0, 1012.0],
[1368818454417, "public_access/charts/show", 1720.0, 903.0],
[1368818454461, "infrastructure/hosts/index", 3242.0, 2637.0],
[1368818454497, "public_access/charts/show", 837.0, 780.0],
[1368818454501, "applications/show", 1530.0, 576.0],
[1368818454504, "applications/index", 1745.0, 782.0],
[1368818454515, "infrastructure/hosts/index", 2653.0, 1092.0],
[1368818454525, "public_access/charts/show", 1776.0, 1053.0],
[1368818454525, "public_access/charts/show", 1787.0, 1051.0],
[1368818454529, "applications/index", 5408.0, 3657.0],
[1368818454617, "pages/signup_external", 209.0, 37.0],
[1368818454649, "public_access/charts/show", 41502.0, 0.0],
[1368818454659, "help/index", 510.0, 1.0],
[1368818454670, "public_access/charts/show", 236.0, 135.0],
[1368818454684, "infrastructure/hosts/show", 1380.0, 778.0],
[1368818454685, "public_access/charts/show", 280.0, 175.0],
[1368818454686, "public_access/charts/show", 428.0, 265.0],
[1368818454736, "applications/index", 1178.0, 476.0],
[1368818454803, "public_access/charts/show", 417.0, 220.0],
[1368818454806, "applications/show", 2544.0, 902.0],
[1368818454834, "applications/index", 1727.0, 1240.0],
[1368818454850, "infrastructure/hosts/show", 1660.0, 865.0],
[1368818454851, "applications/show", 9781.0, 9272.0],
[1368818454851, "applications/show", 2257.0, 1166.0],
[1368818454903, "public_access/charts/show", 331.0, 171.0],
[1368818454905, "public_access/charts/show", 418.0, 227.0],
[1368818454913, "infrastructure/hosts/index", 3666.0, 1915.0],
[1368818454943, "custom_views/show", 3127.0, 1249.0],
[1368818454958, "applications/index", 16717.0, 16012.0],
[1368818454961, "applications/show", 2914.0, 685.0],
[1368818455027, "public_access/charts/show", 405.0, 243.0],
[1368818455044, "transactions/index", 16167.0, 3278.0],
[1368818455057, "applications/show", 12439.0, 10408.0],
[1368818455073, "transactions/index", 1031.0, 770.0],
[1368818455086, "traced_errors/index", 1046.0, 706.0],
[1368818455127, "applications/index", 1367.0, 765.0],
[1368818455132, "applications/index", 1098.0, 611.0],
[1368818455153, "applications/index", 857.0, 555.0],
[1368818455159, "users/edit", 6355.0, 2936.0],
[1368818455182, "applications/show", 2515.0, 893.0],
[1368818455239, "public_access/charts/show", 509.0, 311.0],
[1368818455241, "public_access/charts/show", 558.0, 316.0],
[1368818455243, "public_access/charts/show", 667.0, 430.0],
[1368818455313, "public_access/charts/show", 276.0, 154.0],
[1368818455317, "applications/index", 2765.0, 2105.0],
[1368818455337, "applications/index", 951.0, 698.0],
[1368818455384, "public_access/charts/show", 505.0, 346.0],
[1368818455400, "applications/map", 2381.0, 1879.0],
[1368818455411, "applications/show", 990.0, 580.0],
[1368818455412, "traced_errors/index", 1854.0, 903.0],
[1368818455450, "applications/show", 1460.0, 1031.0],
[1368818455465, "public_access/charts/show", 581.0, 393.0],
[1368818455538, "public_access/charts/show", 270.0, 188.0],
[1368818455591, "mobile_applications/applications/setup", 2530.0, 899.0],
[1368818455611, "transactions/index", 16249.0, 2718.0],
[1368818455693, "applications/index", 1380.0, 729.0],
[1368818455701, "custom_views/show", 8391.0, 3282.0],
[1368818455704, "gadgets/dashboard", 357.0, 248.0],
[1368818455732, "applications/show", 1677.0, 707.0],
[1368818455753, "public_access/charts/show", 418.0, 284.0],
[1368818455759, "platform/plugin_pages/dashboard", 1279.0, 931.0],
[1368818455767, "public_access/charts/show", 422.0, 257.0],
[1368818455769, "public_access/charts/show", 395.0, 266.0],
[1368818455863, "applications/index", 1250.0, 878.0],
[1368818455920, "applications/show", 3270.0, 1716.0],
[1368818455956, "public_access/charts/show", 263.0, 95.0],
[1368818455961, "infrastructure/hosts/index", 948.0, 738.0],
[1368818455968, "applications/map", 2089.0, 925.0],
[1368818455997, "traced_errors/index", 1916.0, 1246.0],
[1368818456043, "public_access/charts/show", 574.0, 319.0],
[1368818456045, "public_access/charts/show", 941.0, 569.0],
[1368818456046, "public_access/charts/show", 494.0, 242.0],
[1368818456143, "landing_pages/slowresponsetime", 5490.0, 217.0],
[1368818456206, "platform/plugin_pages/show", 1015.0, 486.0],
[1368818456207, "applications/index", 906.0, 504.0],
[1368818456358, "platform/plugin_pages/show", 1456.0, 908.0],
[1368818456404, "applications/show", 3986.0, 1175.0],
[1368818456545, "infrastructure/hosts/show", 1699.0, 1448.0],
[1368818456604, "infrastructure/hosts/index", 1331.0, 860.0],
[1368818456791, "applications/index", 1151.0, 716.0],
[1368818456817, "applications/index", 1044.0, 662.0],
[1368818456941, "public_access/charts/show", 370.0, 228.0],
[1368818456944, "public_access/charts/show", 375.0, 221.0],
[1368818456947, "applications/index", 1846.0, 598.0],
[1368818456952, "applications/show", 1674.0, 491.0],
[1368818456978, "mobile_applications/applications/index", 806.0, 365.0],
[1368818457048, "applications/show", 1503.0, 563.0],
[1368818457069, "infrastructure/hosts/index", 2544.0, 1314.0],
[1368818457092, "public_access/charts/show", 503.0, 167.0],
[1368818457099, "platform/plugin_pages/show", 5291.0, 2342.0],
[1368818457159, "applications/show", 3170.0, 1977.0],
[1368818457160, "traced_errors/index", 1220.0, 563.0],
[1368818457183, "applications/show", 1350.0, 801.0],
[1368818457198, "applications/index", 2022.0, 1084.0],
[1368818457294, "platform/plugin_pages/show", 1915.0, 880.0],
[1368818457316, "applications/show", 1456.0, 760.0],
[1368818457331, "applications/index", 1930.0, 1222.0],
[1368818457338, "applications/index", 2232.0, 345.0],
[1368818457340, "applications/show", 27770.0, 26542.0],
[1368818457405, "infrastructure/hosts/show", 11154.0, 9949.0],
[1368818457444, "applications/show", 816.0, 476.0],
[1368818457485, "traced_errors/index", 871.0, 531.0],
[1368818457506, "infrastructure/hosts/show", 754.0, 542.0],
[1368818457519, "applications/show", 1480.0, 615.0],
[1368818457547, "applications/show", 3626.0, 937.0],
[1368818457574, "applications/show", 1219.0, 539.0],
[1368818457649, "public_access/charts/show", 2351.0, 595.0],
[1368818457671, "applications/show", 1489.0, 712.0],
[1368818457676, "traced_errors/index", 2293.0, 382.0],
[1368818457758, "applications/show", 2265.0, 1755.0],
[1368818457759, "applications/show", 2484.0, 682.0],
[1368818457775, "public_access/charts/show", 434.0, 314.0],
[1368818457879, "public_access/charts/show", 372.0, 275.0],
[1368818457987, "named_transactions/show", 2508.0, 1663.0],
[1368818457998, "infrastructure/hosts/index", 928.0, 273.0],
[1368818458011, "applications/show", 2855.0, 1028.0],
[1368818458020, "platform/plugin_pages/show", 1143.0, 720.0],
[1368818458069, "applications/show", 1992.0, 593.0],
[1368818458081, "applications/index", 991.0, 405.0],
[1368818458096, "applications/index", 1697.0, 370.0],
[1368818458221, "applications/index", 1894.0, 1165.0],
[1368818458233, "public_access/charts/show", 11077.0, 3775.0],
[1368818458252, "traced_errors/index", 2432.0, 1102.0],
[1368818458294, "applications/index", 1876.0, 628.0],
[1368818458297, "applications/show", 1664.0, 823.0],
[1368818458358, "applications/index", 26961.0, 26438.0],
[1368818458366, "applications/index", 2986.0, 2247.0],
[1368818458397, "internal/customers/show", 1191.0, 898.0],
[1368818458460, "infrastructure/hosts/index", 5217.0, 602.0],
[1368818458575, "infrastructure/hosts/index", 1259.0, 451.0],
[1368818458601, "traced_errors/index", 1541.0, 576.0],
[1368818458700, "applications/index", 5079.0, 857.0],
[1368818458715, "applications/show", 5966.0, 1724.0],
[1368818458723, "applications/show", 852.0, 470.0],
[1368818458759, "public_access/charts/show", 757.0, 327.0],
[1368818458880, "public_access/charts/show", 763.0, 327.0],
[1368818458881, "public_access/charts/show", 770.0, 327.0],
[1368818458940, "public_access/charts/show", 4637.0, 4589.0],
[1368818459032, "infrastructure/hosts/index", 1104.0, 473.0],
[1368818459040, "traced_errors/index", 5194.0, 3134.0],
[1368818459065, "traced_errors/index", 1292.0, 521.0],
[1368818459154, "infrastructure/hosts/index", 1244.0, 463.0],
[1368818459155, "infrastructure/hosts/show", 4383.0, 3346.0],
[1368818459168, "platform/plugin_pages/show", 2627.0, 912.0],
[1368818459399, "applications/index", 1044.0, 407.0],
[1368818459457, "platform/plugin_pages/show", 4566.0, 901.0],
[1368818459566, "infrastructure/hosts/index", 857.0, 372.0],
[1368818459627, "pages/pricing", 1602.0, 54.0],
[1368818459629, "applications/show", 6665.0, 3014.0],
[1368818459732, "platform/plugin_pages/show", 849.0, 590.0],
[1368818459766, "public_access/charts/show", 904.0, 270.0],
[1368818459780, "traced_errors/index", 1226.0, 842.0],
[1368818459784, "public_access/charts/show", 875.0, 269.0],
[1368818459785, "public_access/charts/show", 886.0, 268.0],
[1368818459787, "public_access/charts/show", 852.0, 270.0],
[1368818459788, "public_access/charts/show", 863.0, 269.0],
[1368818459789, "public_access/charts/show", 840.0, 270.0],
[1368818459807, "public_access/charts/show", 829.0, 271.0],
[1368818459838, "public_access/charts/show", 803.0, 272.0],
[1368818459838, "public_access/charts/show", 816.0, 271.0],
[1368818459839, "public_access/charts/show", 777.0, 273.0],
[1368818459840, "public_access/charts/show", 790.0, 273.0],
[1368818459961, "applications/show", 7319.0, 975.0],
[1368818459993, "applications/index", 1290.0, 649.0],
[1368818460137, "gadgets/dashboard", 1054.0, 440.0],
[1368818460173, "public_access/charts/show", 11719.0, 4232.0],
[1368818460250, "applications/index", 737.0, 358.0],
[1368818460410, "platform/plugin_pages/show", 4801.0, 3313.0],
[1368818460439, "sessions/new", 1863.0, 196.0],
[1368818460594, "applications/show", 952.0, 522.0],
[1368818460602, "sessions/new", 496.0, 87.0],
[1368818460625, "infrastructure/hosts/index", 2220.0, 937.0],
[1368818460655, "public_access/charts/show", 1754.0, 1031.0],
[1368818460657, "applications/show", 1028.0, 347.0],
[1368818460699, "infrastructure/hosts/index", 1194.0, 684.0],
[1368818460735, "applications/show", 1067.0, 324.0],
[1368818460928, "public_access/charts/show", 363.0, 326.0],
[1368818460929, "public_access/charts/show", 360.0, 318.0],
[1368818460972, "public_access/charts/show", 375.0, 329.0],
[1368818461093, "applications/index", 1333.0, 477.0],
[1368818461113, "infrastructure/hosts/index", 2269.0, 870.0],
[1368818461120, "infrastructure/hosts/index", 925.0, 488.0],
[1368818461126, "infrastructure/hosts/index", 1079.0, 386.0],
[1368818461160, "applications/show", 1422.0, 785.0],
[1368818461192, "applications/show", 4402.0, 499.0],
[1368818461240, "pages/home_signup", 2111.0, 893.0],
[1368818461289, "applications/show", 2256.0, 781.0],
[1368818461333, "applications/index", 2871.0, 350.0],
[1368818461336, "background_tasks/index", 2092.0, 1427.0],
[1368818461432, "applications/show", 914.0, 629.0],
[1368818461467, "applications/index", 861.0, 484.0],
[1368818461576, "applications/show", 3828.0, 692.0],
[1368818461610, "public_access/charts/show", 140.0, 91.0],
[1368818461715, "public_access/charts/show", 354.0, 80.0],
[1368818461750, "public_access/charts/show", 106.0, 80.0],
[1368818461766, "mobile_applications/applications/index", 976.0, 524.0],
[1368818461773, "applications/index", 1130.0, 393.0],
[1368818461896, "public_access/charts/show", 98.0, 76.0],
[1368818461898, "applications/index", 989.0, 481.0],
[1368818461924, "traced_errors/index", 1735.0, 495.0],
[1368818462035, "public_access/charts/show", 96.0, 73.0],
[1368818462074, "applications/index", 803.0, 723.0],
[1368818462097, "infrastructure/hosts/show", 1935.0, 905.0],
[1368818462097, "applications/index", 1151.0, 601.0],
[1368818462134, "sessions/new", 2401.0, 205.0],
[1368818462153, "traced_errors/index", 1242.0, 573.0],
[1368818462168, "public_access/charts/show", 11965.0, 3685.0],
[1368818462169, "public_access/charts/show", 4958.0, 4920.0],
[1368818462187, "infrastructure/hosts/index", 1072.0, 554.0],
[1368818462196, "applications/index", 1627.0, 672.0],
[1368818462220, "applications/show", 2683.0, 848.0],
[1368818462291, "applications/index", 1290.0, 524.0],
[1368818462321, "sessions/new", 1871.0, 486.0],
[1368818462337, "infrastructure/hosts/index", 4557.0, 2646.0],
[1368818462450, "platform/plugin_pages/show", 1835.0, 545.0],
[1368818462616, "applications/index", 689.0, 299.0],
[1368818462648, "applications/index", 1133.0, 625.0],
[1368818462718, "applications/show", 1866.0, 669.0],
[1368818462720, "gadgets/dashboard", 591.0, 262.0],
[1368818462731, "applications/show", 1903.0, 653.0],
[1368818462783, "applications/index", 1280.0, 758.0],
[1368818462839, "applications/show", 9316.0, 1142.0],
[1368818462846, "applications/show", 2957.0, 608.0],
[1368818462877, "applications/show", 1132.0, 606.0],
[1368818463112, "infrastructure/hosts/index", 1007.0, 670.0],
[1368818463112, "applications/show", 1453.0, 515.0],
[1368818463117, "infrastructure/hosts/index", 1129.0, 827.0],
[1368818463194, "platform/plugin_pages/show", 1012.0, 569.0],
[1368818463196, "applications/show", 1513.0, 187.0],
[1368818463329, "traced_errors/index", 1883.0, 1213.0],
[1368818463342, "applications/show", 3445.0, 492.0],
[1368818463434, "infrastructure/hosts/index", 1297.0, 392.0],
[1368818463437, "infrastructure/hosts/index", 983.0, 507.0],
[1368818463544, "applications/index", 1229.0, 761.0],
[1368818463544, "infrastructure/hosts/show", 1630.0, 845.0],
[1368818463637, "pages/signup_external", 738.0, 389.0],
[1368818463641, "traced_errors/index", 1589.0, 1047.0],
[1368818463708, "infrastructure/hosts/show", 1677.0, 1297.0],
[1368818463711, "traced_errors/index", 2451.0, 907.0],
[1368818463740, "applications/show", 702.0, 409.0],
[1368818463758, "applications/show", 869.0, 418.0],
[1368818463761, "applications/index", 881.0, 360.0],
[1368818463840, "public_access/charts/show", 534.0, 135.0],
[1368818463850, "applications/show", 2222.0, 699.0],
[1368818463858, "applications/index", 1399.0, 764.0],
[1368818463873, "infrastructure/hosts/index", 1790.0, 788.0],
[1368818463887, "traced_errors/index", 1598.0, 1209.0],
[1368818463908, "applications/index", 1222.0, 785.0],
[1368818463921, "infrastructure/hosts/show", 1844.0, 1245.0],
[1368818463937, "public_access/charts/show", 361.0, 280.0],
[1368818463988, "infrastructure/processes/index", 686.0, 484.0],
[1368818464054, "public_access/charts/show", 652.0, 297.0],
[1368818464076, "applications/index", 2184.0, 583.0],
[1368818464081, "applications/index", 852.0, 498.0],
[1368818464142, "applications/show", 1220.0, 497.0],
[1368818464152, "applications/index", 1092.0, 672.0],
[1368818464193, "applications/show", 1274.0, 838.0],
[1368818464249, "applications/index", 1167.0, 459.0],
[1368818464502, "applications/index", 1060.0, 714.0],
[1368818464642, "public_access/charts/show", 351.0, 168.0],
[1368818464648, "public_access/charts/show", 359.0, 171.0],
[1368818464649, "public_access/charts/show", 340.0, 153.0],
[1368818464650, "public_access/charts/show", 346.0, 165.0],
[1368818464652, "public_access/charts/show", 330.0, 149.0],
[1368818464777, "gadgets/dashboard", 535.0, 238.0],
[1368818464777, "public_access/charts/show", 1331.0, 283.0],
[1368818464778, "traced_errors/index", 1928.0, 1311.0],
[1368818464791, "applications/show", 1485.0, 711.0],
[1368818464815, "applications/show", 3348.0, 620.0],
[1368818464920, "public_access/charts/show", 20802.0, 8256.0],
[1368818464942, "custom_views/show", 1398.0, 763.0],
[1368818464945, "infrastructure/hosts/show", 1218.0, 951.0],
[1368818465035, "applications/show", 4449.0, 463.0],
[1368818465133, "traced_errors/index", 1240.0, 809.0],
[1368818465133, "traced_errors/index", 1030.0, 411.0],
[1368818465134, "applications/show", 878.0, 693.0],
[1368818465144, "public_access/charts/show", 270.0, 239.0],
[1368818465175, "infrastructure/hosts/index", 1681.0, 439.0],
[1368818465177, "infrastructure/hosts/show", 4246.0, 2555.0],
[1368818465179, "applications/index", 745.0, 405.0],
[1368818465187, "public_access/charts/show", 1156.0, 446.0],
[1368818465268, "applications/show", 837.0, 702.0],
[1368818465344, "applications/show", 874.0, 376.0],
[1368818465387, "applications/index", 3011.0, 1919.0],
[1368818465423, "infrastructure/hosts/index", 871.0, 454.0],
[1368818465450, "applications/index", 1530.0, 937.0],
[1368818465544, "applications/index", 1625.0, 548.0],
[1368818465699, "traced_errors/index", 1427.0, 610.0],
[1368818465705, "pages/signup_external", 899.0, 675.0],
[1368818465735, "categories/index", 1967.0, 978.0],
[1368818465751, "applications/index", 1048.0, 575.0],
[1368818465767, "applications/show", 2190.0, 707.0],
[1368818465777, "applications/index", 1712.0, 776.0],
[1368818465823, "gadgets/dashboard", 627.0, 430.0],
[1368818465880, "applications/index", 1574.0, 971.0],
[1368818465945, "applications/index", 871.0, 498.0],
[1368818465993, "applications/index", 3702.0, 2331.0],
[1368818466091, "applications/index", 1609.0, 801.0],
[1368818466122, "traced_errors/index", 1159.0, 337.0],
[1368818466171, "infrastructure/hosts/show", 1185.0, 543.0],
[1368818466204, "applications/index", 770.0, 462.0],
[1368818466214, "infrastructure/hosts/show", 1897.0, 448.0],
[1368818466222, "public_access/charts/show", 848.0, 245.0],
[1368818466224, "public_access/charts/show", 909.0, 176.0],
[1368818466228, "public_access/charts/show", 875.0, 244.0],
[1368818466233, "public_access/charts/show", 862.0, 244.0],
[1368818466234, "public_access/charts/show", 889.0, 243.0],
[1368818466235, "infrastructure/hosts/show", 1345.0, 615.0],
[1368818466235, "applications/show", 1034.0, 431.0],
[1368818466242, "infrastructure/network/index", 3324.0, 624.0],
[1368818466247, "public_access/charts/show", 903.0, 243.0],
[1368818466345, "public_access/charts/show", 1009.0, 246.0],
[1368818466362, "public_access/charts/show", 1016.0, 242.0],
[1368818466368, "public_access/charts/show", 927.0, 175.0],
[1368818466376, "public_access/charts/show", 940.0, 196.0],
[1368818466376, "public_access/charts/show", 964.0, 187.0],
[1368818466377, "public_access/charts/show", 988.0, 167.0],
[1368818466380, "public_access/charts/show", 835.0, 246.0],
[1368818466381, "public_access/charts/show", 824.0, 247.0],
[1368818466383, "applications/show", 1539.0, 753.0],
[1368818466384, "public_access/charts/show", 812.0, 248.0],
[1368818466387, "public_access/charts/show", 801.0, 249.0],
[1368818466389, "public_access/charts/show", 790.0, 250.0],
[1368818466513, "platform/plugin_pages/show", 4130.0, 2664.0],
[1368818466635, "applications/show", 1483.0, 857.0],
[1368818466648, "infrastructure/hosts/show", 3647.0, 2685.0],
[1368818466674, "applications/show", 1769.0, 1066.0],
[1368818466721, "public_access/charts/show", 1018.0, 445.0],
[1368818466781, "public_access/charts/show", 1040.0, 545.0],
[1368818466858, "public_access/charts/show", 1227.0, 417.0],
[1368818466872, "public_access/charts/show", 1626.0, 163.0],
[1368818466922, "applications/show", 1131.0, 420.0],
[1368818466925, "infrastructure/hosts/index", 2286.0, 847.0],
[1368818466935, "custom_views/show", 1901.0, 1024.0],
[1368818467025, "applications/index", 1228.0, 678.0],
[1368818467028, "applications/show", 1362.0, 717.0],
[1368818467131, "applications/index", 2102.0, 1758.0],
[1368818467169, "platform/plugin_pages/show", 900.0, 681.0],
[1368818467177, "applications/show", 2433.0, 606.0],
[1368818467204, "applications/show", 2060.0, 1138.0],
[1368818467257, "traced_errors/index", 2775.0, 1763.0],
[1368818467327, "public_access/charts/show", 515.0, 278.0],
[1368818467368, "applications/index", 999.0, 475.0],
[1368818467385, "traced_errors/index", 1009.0, 638.0],
[1368818467393, "pages/signup_external", 622.0, 431.0],
[1368818467431, "public_access/charts/show", 748.0, 478.0],
[1368818467446, "applications/show", 1624.0, 1072.0],
[1368818467451, "applications/index", 1067.0, 527.0],
[1368818467525, "applications/show", 896.0, 511.0],
[1368818467553, "public_access/charts/show", 809.0, 516.0],
[1368818467639, "articles/show", 1379.0, 276.0],
[1368818467665, "public_access/charts/show", 880.0, 554.0],
[1368818467687, "applications/show", 8274.0, 1561.0],
[1368818467705, "public_access/charts/show", 401.0, 324.0],
[1368818467787, "public_access/charts/show", 454.0, 388.0],
[1368818467827, "applications/index", 1268.0, 889.0],
[1368818467902, "applications/show", 4520.0, 966.0],
[1368818467910, "traced_errors/index", 3347.0, 2895.0],
[1368818467927, "traced_errors/index", 2624.0, 2295.0],
[1368818468068, "infrastructure/hosts/show", 881.0, 535.0],
[1368818468112, "applications/index", 2160.0, 1426.0],
[1368818468137, "public_access/charts/show", 331.0, 114.0],
[1368818468171, "public_access/charts/show", 1038.0, 124.0],
[1368818468199, "applications/index", 2057.0, 659.0],
[1368818468200, "applications/index", 1142.0, 427.0],
[1368818468216, "applications/index", 1267.0, 715.0],
[1368818468250, "applications/index", 1099.0, 563.0],
[1368818468252, "applications/show", 1202.0, 700.0],
[1368818468275, "named_transactions/index", 2331.0, 1325.0],
[1368818468277, "pages/signup_external", 618.0, 390.0],
[1368818468307, "categories/index", 1700.0, 1005.0],
[1368818468406, "infrastructure/hosts/index", 2078.0, 809.0],
[1368818468414, "infrastructure/hosts/show", 3127.0, 2008.0],
[1368818468421, "applications/show", 1339.0, 449.0],
[1368818468526, "mobile_applications/applications/show", 1207.0, 606.0],
[1368818468528, "applications/show", 1071.0, 529.0],
[1368818468594, "platform/plugin_pages/show", 1912.0, 1039.0],
[1368818468596, "applications/index", 1022.0, 627.0],
[1368818468628, "transactions/index", 1197.0, 381.0],
[1368818468667, "enduser_applications/regions", 1958.0, 716.0],
[1368818468673, "public_access/charts/show", 311.0, 154.0],
[1368818468791, "mobile_applications/applications/index", 557.0, 304.0],
[1368818468793, "traced_errors/index", 1607.0, 1137.0],
[1368818468810, "applications/show", 1277.0, 689.0],
[1368818469040, "infrastructure/hosts/show", 1433.0, 984.0],
[1368818469065, "public_access/charts/show", 313.0, 241.0],
[1368818469202, "applications/show", 1772.0, 1037.0],
[1368818469212, "public_access/charts/show", 342.0, 242.0],
[1368818469286, "infrastructure/hosts/index", 1202.0, 725.0],
[1368818469314, "public_access/charts/show", 429.0, 270.0],
[1368818469354, "public_access/charts/show", 391.0, 261.0],
[1368818469354, "public_access/charts/show", 508.0, 333.0],
[1368818469359, "applications/show", 1762.0, 1120.0],
[1368818469359, "public_access/charts/show", 518.0, 284.0],
[1368818469360, "public_access/charts/show", 422.0, 335.0],
[1368818469360, "public_access/charts/show", 537.0, 245.0],
[1368818469367, "public_access/charts/show", 498.0, 315.0],
[1368818469367, "public_access/charts/show", 472.0, 297.0],
[1368818469370, "applications/show", 1009.0, 545.0],
[1368818469370, "public_access/charts/show", 1103.0, 259.0],
[1368818469376, "applications/index", 883.0, 549.0],
[1368818469459, "applications/show", 1698.0, 794.0],
[1368818469497, "applications/show", 28121.0, 11526.0],
[1368818469531, "public_access/charts/show", 1122.0, 205.0],
[1368818469565, "applications/show", 1024.0, 558.0],
[1368818469635, "applications/show", 4915.0, 29.0],
[1368818469694, "infrastructure/hosts/index", 1662.0, 941.0],
[1368818469719, "public_access/charts/show", 284.0, 174.0],
[1368818469737, "applications/index", 1200.0, 641.0],
[1368818469821, "applications/show", 957.0, 702.0],
[1368818469871, "infrastructure/hosts/show", 5294.0, 711.0],
[1368818469892, "applications/show", 1039.0, 358.0],
[1368818469930, "applications/index", 970.0, 775.0],
[1368818469965, "public_access/charts/show", 919.0, 233.0],
[1368818469977, "applications/index", 1185.0, 473.0],
[1368818470058, "applications/map", 1951.0, 1428.0],
[1368818470088, "sessions/new", 1476.0, 460.0],
[1368818470124, "infrastructure/hosts/show", 1970.0, 922.0],
[1368818470148, "traced_errors/index", 1216.0, 414.0],
[1368818470155, "applications/show", 1614.0, 869.0],
[1368818470172, "applications/show", 1110.0, 567.0],
[1368818470185, "applications/show", 1175.0, 438.0],
[1368818470222, "infrastructure/hosts/index", 1355.0, 842.0],
[1368818470322, "infrastructure/hosts/show", 1039.0, 541.0],
[1368818470343, "public_access/charts/show", 478.0, 180.0],
[1368818470379, "infrastructure/hosts/show", 2982.0, 2267.0],
[1368818470395, "public_access/charts/show", 480.0, 180.0],
[1368818470423, "applications/index", 1006.0, 699.0],
[1368818470468, "public_access/charts/show", 611.0, 244.0],
[1368818470473, "applications/show", 2408.0, 697.0],
[1368818470526, "applications/show", 1290.0, 698.0],
[1368818470565, "infrastructure/hosts/show", 1020.0, 547.0],
[1368818470572, "public_access/charts/show", 602.0, 126.0],
[1368818470620, "applications/index", 793.0, 373.0],
[1368818470662, "infrastructure/hosts/index", 1305.0, 780.0],
[1368818470710, "infrastructure/hosts/index", 924.0, 304.0],
[1368818470841, "applications/index", 2151.0, 922.0],
[1368818470961, "infrastructure/hosts/index", 2644.0, 623.0],
[1368818471004, "mobile_applications/applications/show", 1117.0, 618.0],
[1368818471052, "infrastructure/hosts/show", 853.0, 511.0],
[1368818471067, "public_access/charts/show", 782.0, 87.0],
[1368818471220, "databases/index", 1345.0, 773.0],
[1368818471393, "infrastructure/hosts/index", 1049.0, 461.0],
[1368818471418, "applications/index", 1511.0, 531.0],
[1368818471500, "applications/show", 1047.0, 484.0],
[1368818471518, "public_access/charts/show", 574.0, 551.0],
[1368818471590, "infrastructure/hosts/index", 1606.0, 498.0],
[1368818471823, "public_access/charts/show", 344.0, 318.0],
[1368818471868, "applications/show", 873.0, 394.0],
[1368818471933, "applications/index", 11887.0, 894.0],
[1368818472236, "infrastructure/hosts/show", 812.0, 496.0],
[1368818472265, "public_access/charts/show", 359.0, 282.0],
[1368818472364, "externals/index", 2106.0, 428.0],
[1368818472404, "applications/show", 1096.0, 583.0],
[1368818472459, "applications/index", 1017.0, 392.0],
[1368818472512, "applications/show", 1326.0, 793.0],
[1368818472515, "public_access/charts/show", 206.0, 109.0],
[1368818472516, "infrastructure/hosts/index", 1927.0, 758.0],
[1368818472518, "public_access/charts/show", 285.0, 128.0],
[1368818472588, "infrastructure/hosts/show", 2946.0, 2050.0],
[1368818472650, "traced_errors/index", 1266.0, 312.0],
[1368818472724, "public_access/charts/show", 415.0, 226.0],
[1368818472794, "transactions/index", 1357.0, 495.0],
[1368818472842, "public_access/charts/show", 187.0, 116.0],
[1368818472852, "public_access/charts/show", 472.0, 207.0],
[1368818472937, "databases/index", 4386.0, 2395.0],
[1368818472944, "landing_pages/nlp_mobile_monitoring", 25582.0, 0.0],
[1368818473019, "sessions/new", 2435.0, 333.0],
[1368818473024, "users/edit", 1134.0, 419.0],
[1368818473035, "public_access/charts/show", 315.0, 254.0],
[1368818473152, "applications/index", 451.0, 2.0],
[1368818473256, "applications/show", 1092.0, 393.0],
[1368818473304, "landing_pages/nlp_mobile_monitoring", 27007.0, 0.0],
[1368818473401, "traced_errors/index", 1659.0, 651.0],
[1368818473417, "applications/show", 1134.0, 401.0],
[1368818473459, "public_access/charts/show", 388.0, 302.0],
[1368818473478, "applications/index", 965.0, 519.0],
[1368818473499, "public_access/charts/show", 448.0, 302.0],
[1368818473503, "public_access/charts/show", 518.0, 304.0],
[1368818473521, "public_access/charts/show", 243.0, 66.0],
[1368818473522, "public_access/charts/show", 593.0, 311.0],
[1368818473616, "applications/show", 2350.0, 720.0],
[1368818473638, "feature_unavailable/index", 1084.0, 635.0],
[1368818473750, "applications/index", 901.0, 402.0],
[1368818473789, "infrastructure/hosts/index", 83873.0, 3605.0],
[1368818473790, "enduser_applications/regions", 1901.0, 539.0],
[1368818473808, "public_access/charts/show", 620.0, 236.0],
[1368818473856, "infrastructure/hosts/show", 2385.0, 725.0],
[1368818473866, "public_access/charts/show", 155.0, 82.0],
[1368818473884, "public_access/charts/show", 152.0, 94.0],
[1368818473985, "infrastructure/hosts/index", 4585.0, 905.0],
[1368818474144, "public_access/charts/show", 308.0, 162.0],
[1368818474176, "applications/show", 2894.0, 498.0],
[1368818474305, "applications/show", 1254.0, 608.0],
[1368818474307, "public_access/charts/show", 137.0, 83.0],
[1368818474331, "public_access/charts/show", 525.0, 358.0],
[1368818474360, "applications/show", 907.0, 332.0],
[1368818474473, "applications/show", 1179.0, 614.0],
[1368818474508, "public_access/charts/show", 157.0, 99.0],
[1368818474508, "public_access/charts/show", 336.0, 171.0],
[1368818474526, "public_access/charts/show", 347.0, 152.0],
[1368818474578, "infrastructure/hosts/show", 4809.0, 2090.0],
[1368818474602, "applications/show", 2189.0, 1191.0],
[1368818474611, "infrastructure/hosts/show", 19451.0, 16734.0],
[1368818474669, "applications/index", 1580.0, 1171.0],
[1368818474705, "public_access/charts/show", 1397.0, 225.0],
[1368818474738, "applications/index", 867.0, 334.0],
[1368818474759, "public_access/charts/show", 548.0, 361.0],
[1368818474761, "public_access/charts/show", 581.0, 404.0],
[1368818474764, "applications/index", 1528.0, 948.0],
[1368818474765, "public_access/charts/show", 628.0, 341.0],
[1368818474775, "public_access/charts/show", 660.0, 372.0],
[1368818474787, "public_access/charts/show", 411.0, 229.0],
[1368818474840, "applications/index", 1430.0, 613.0],
[1368818474924, "public_access/charts/show", 467.0, 277.0],
[1368818474971, "infrastructure/hosts/index", 3149.0, 1277.0],
[1368818474981, "public_access/charts/show", 492.0, 276.0],
[1368818474982, "public_access/charts/show", 505.0, 276.0],
[1368818474995, "public_access/charts/show", 698.0, 285.0],
[1368818474996, "public_access/charts/show", 721.0, 286.0],
[1368818474996, "public_access/charts/show", 710.0, 298.0],
[1368818475020, "public_access/charts/show", 996.0, 374.0],
[1368818475062, "public_access/charts/show", 1012.0, 371.0],
[1368818475062, "public_access/charts/show", 1032.0, 404.0],
[1368818475063, "infrastructure/hosts/index", 1994.0, 472.0],
[1368818475063, "public_access/charts/show", 1036.0, 388.0],
[1368818475064, "public_access/charts/show", 1041.0, 410.0],
[1368818475082, "public_access/charts/show", 952.0, 356.0],
[1368818475087, "public_access/charts/show", 684.0, 264.0],
[1368818475089, "public_access/charts/show", 1062.0, 663.0],
[1368818475157, "infrastructure/hosts/show", 17133.0, 1180.0],
[1368818475207, "infrastructure/hosts/index", 1314.0, 1004.0],
[1368818475210, "applications/show", 1549.0, 788.0],
[1368818475217, "public_access/charts/show", 1115.0, 728.0],
[1368818475241, "applications/show", 1043.0, 490.0],
[1368818475278, "public_access/charts/show", 1345.0, 650.0],
[1368818475281, "public_access/charts/show", 1401.0, 623.0],
[1368818475300, "public_access/charts/show", 1419.0, 591.0],
[1368818475300, "public_access/charts/show", 1439.0, 601.0],
[1368818475310, "public_access/charts/show", 1505.0, 630.0],
[1368818475335, "applications/show", 1147.0, 543.0],
[1368818475396, "infrastructure/hosts/show", 1911.0, 1394.0],
[1368818475400, "public_access/charts/show", 870.0, 129.0],
[1368818475424, "public_access/charts/show", 955.0, 764.0],
[1368818475433, "applications/show", 1212.0, 663.0],
[1368818475496, "applications/index", 2754.0, 2176.0],
[1368818475503, "public_access/charts/show", 98.0, 62.0],
[1368818475509, "custom_views/show", 14506.0, 2242.0],
[1368818475516, "applications/show", 1063.0, 456.0],
[1368818475519, "public_access/charts/show", 1013.0, 223.0],
[1368818475528, "public_access/charts/show", 1020.0, 200.0],
[1368818475552, "public_access/charts/show", 1435.0, 296.0],
[1368818475562, "public_access/charts/show", 1443.0, 279.0],
[1368818475584, "public_access/charts/show", 1451.0, 234.0],
[1368818475639, "public_access/charts/show", 1441.0, 240.0],
[1368818475648, "public_access/charts/show", 139.0, 77.0],
[1368818475679, "applications/show", 2176.0, 878.0],
[1368818475681, "public_access/charts/show", 1003.0, 763.0],
[1368818475703, "applications/show", 3056.0, 479.0],
[1368818475715, "public_access/charts/show", 1599.0, 201.0],
[1368818475728, "traced_errors/index", 2621.0, 2003.0],
[1368818475728, "public_access/charts/show", 1594.0, 217.0],
[1368818475753, "public_access/charts/show", 1061.0, 764.0],
[1368818475808, "applications/show", 1290.0, 574.0],
[1368818475808, "infrastructure/hosts/index", 1484.0, 441.0],
[1368818475814, "public_access/charts/show", 1688.0, 241.0],
[1368818475885, "public_access/charts/show", 136.0, 68.0],
[1368818475897, "public_access/charts/show", 1144.0, 550.0],
[1368818475904, "applications/show", 1667.0, 1021.0],
[1368818475917, "public_access/charts/show", 1364.0, 769.0],
[1368818475925, "public_access/charts/show", 1518.0, 769.0],
[1368818475927, "public_access/charts/show", 1668.0, 801.0],
[1368818475968, "pages/home_signup", 10883.0, 1807.0],
[1368818475982, "applications/index", 2007.0, 1197.0],
[1368818476020, "applications/index", 3197.0, 1437.0],
[1368818476021, "infrastructure/hosts/index", 713.0, 495.0],
[1368818476102, "public_access/charts/show", 279.0, 110.0],
[1368818476112, "public_access/charts/show", 286.0, 98.0],
[1368818476173, "applications/show", 2870.0, 449.0],
[1368818476187, "applications/show", 2694.0, 1215.0],
[1368818476237, "public_access/charts/show", 1980.0, 1045.0],
[1368818476264, "infrastructure/hosts/show", 872.0, 454.0],
[1368818476281, "applications/index", 2083.0, 1228.0],
[1368818476293, "public_access/charts/show", 1755.0, 502.0],
[1368818476293, "public_access/charts/show", 343.0, 115.0],
[1368818476293, "public_access/charts/show", 1353.0, 671.0],
[1368818476294, "public_access/charts/show", 1782.0, 890.0],
[1368818476294, "public_access/charts/show", 1568.0, 765.0],
[1368818476378, "infrastructure/hosts/show", 3748.0, 2826.0],
[1368818476396, "public_access/charts/show", 182.0, 108.0],
[1368818476397, "traced_errors/index", 1082.0, 773.0],
[1368818476422, "transactions/index", 4208.0, 2003.0],
[1368818476423, "transactions/index", 4132.0, 645.0],
[1368818476452, "applications/index", 2835.0, 675.0],
[1368818476462, "applications/show", 1675.0, 894.0],
[1368818476541, "public_access/charts/show", 2181.0, 1155.0],
[1368818476612, "public_access/charts/show", 180.0, 78.0],
[1368818476658, "applications/show", 9378.0, 9105.0],
[1368818476660, "infrastructure/hosts/index", 3991.0, 799.0],
[1368818476679, "applications/show", 52933.0, 51981.0],
[1368818476681, "pages/signup_external", 346.0, 69.0],
[1368818476695, "help/index", 645.0, 1.0],
[1368818476722, "applications/index", 958.0, 410.0],
[1368818476756, "applications/show", 1437.0, 856.0],
[1368818476782, "public_access/charts/show", 1143.0, 800.0],
[1368818476863, "public_access/charts/show", 4309.0, 415.0],
[1368818476864, "public_access/charts/show", 122.0, 72.0],
[1368818476867, "public_access/charts/show", 4659.0, 1262.0],
[1368818476872, "feature_unavailable/index", 945.0, 727.0],
[1368818476900, "applications/show", 862.0, 388.0],
[1368818476945, "public_access/charts/show", 237.0, 151.0],
[1368818476962, "public_access/charts/show", 5120.0, 497.0],
[1368818476976, "public_access/charts/show", 5142.0, 478.0],
[1368818477019, "applications/show", 879.0, 396.0],
[1368818477110, "infrastructure/hosts/index", 859.0, 381.0],
[1368818477111, "public_access/charts/show", 135.0, 73.0],
[1368818477112, "applications/index", 4116.0, 3694.0],
[1368818477112, "applications/show", 2204.0, 1053.0],
[1368818477138, "public_access/charts/show", 184.0, 119.0],
[1368818477141, "applications/show", 1612.0, 445.0],
[1368818477155, "public_access/charts/show", 999.0, 648.0],
[1368818477156, "applications/show", 6387.0, 5965.0],
[1368818477157, "public_access/charts/show", 335.0, 210.0],
[1368818477169, "traced_errors/index", 1171.0, 496.0],
[1368818477244, "applications/show", 1120.0, 415.0],
[1368818477302, "public_access/charts/show", 393.0, 259.0],
[1368818477329, "public_access/charts/show", 178.0, 74.0],
[1368818477344, "applications/show", 2098.0, 1216.0],
[1368818477420, "public_access/charts/show", 453.0, 289.0],
[1368818477454, "traced_errors/index", 920.0, 508.0],
[1368818477455, "public_access/charts/show", 571.0, 353.0],
[1368818477496, "sessions/new", 2224.0, 924.0],
[1368818477524, "public_access/charts/show", 509.0, 319.0],
[1368818477575, "public_access/charts/show", 346.0, 137.0],
[1368818477647, "databases/index", 4453.0, 593.0],
[1368818477684, "public_access/charts/show", 3314.0, 326.0],
[1368818477724, "infrastructure/hosts/index", 4034.0, 1574.0],
[1368818477742, "applications/index", 737.0, 358.0],
[1368818477749, "press/index", 2665.0, 245.0],
[1368818477764, "applications/show", 3445.0, 2175.0],
[1368818477813, "articles/show", 460.0, 1.0],
[1368818477814, "pages/signup_external", 316.0, 86.0],
[1368818477881, "applications/index", 772.0, 446.0],
[1368818477886, "applications/show", 877.0, 413.0],
[1368818477966, "applications/show", 1001.0, 478.0],
[1368818477994, "applications/show", 1234.0, 508.0],
[1368818478043, "traced_errors/index", 1809.0, 1118.0],
[1368818478053, "traced_errors/index", 1244.0, 747.0],
[1368818478143, "applications/index", 722.0, 428.0],
[1368818478205, "custom_views/show", 7042.0, 473.0],
[1368818478220, "public_access/charts/show", 877.0, 748.0],
[1368818478333, "public_access/charts/show", 1728.0, 1525.0],
[1368818478367, "traced_errors/index", 2116.0, 469.0],
[1368818478407, "applications/index", 1188.0, 335.0],
[1368818478416, "public_access/charts/show", 460.0, 262.0],
[1368818478432, "infrastructure/hosts/show", 1484.0, 750.0],
[1368818478446, "applications/show", 1853.0, 1287.0],
[1368818478600, "platform/plugin_pages/show", 1211.0, 572.0],
[1368818478615, "applications/show", 983.0, 400.0],
[1368818478709, "applications/show", 1087.0, 356.0],
[1368818478765, "applications/index", 1045.0, 483.0],
[1368818478877, "applications/show", 2163.0, 699.0],
[1368818479054, "infrastructure/hosts/index", 845.0, 286.0],
[1368818479087, "traced_errors/index", 1022.0, 371.0],
[1368818479107, "infrastructure/hosts/show", 990.0, 426.0],
[1368818479190, "applications/show", 2600.0, 464.0],
[1368818479197, "peer_groups/new", 958.0, 659.0],
[1368818479282, "applications/show", 946.0, 418.0],
[1368818479325, "public_access/charts/show", 425.0, 312.0],
[1368818479346, "applications/edit", 5740.0, 16.0],
[1368818479382, "custom_views/show", 1186.0, 460.0],
[1368818479383, "infrastructure/hosts/index", 771.0, 355.0],
[1368818479435, "infrastructure/hosts/show", 1147.0, 520.0],
[1368818479475, "infrastructure/hosts/index", 1137.0, 325.0],
[1368818479565, "infrastructure/hosts/show", 1206.0, 509.0],
[1368818479586, "applications/show", 887.0, 362.0],
[1368818479678, "infrastructure/hosts/index", 1232.0, 826.0],
[1368818479709, "infrastructure/hosts/index", 5686.0, 913.0],
[1368818479718, "public_access/charts/show", 368.0, 231.0],
[1368818479756, "public_access/charts/show", 465.0, 299.0],
[1368818479882, "pages/home_signup", 1721.0, 124.0],
[1368818479924, "applications/show", 941.0, 527.0],
[1368818479937, "platform/plugin_pages/show", 2073.0, 747.0],
[1368818479940, "applications/index", 924.0, 425.0],
[1368818480032, "public_access/charts/show", 371.0, 250.0],
[1368818480036, "public_access/charts/show", 393.0, 237.0],
[1368818480130, "applications/show", 1143.0, 324.0],
[1368818480243, "applications/show", 957.0, 325.0],
[1368818480286, "applications/index", 2015.0, 848.0],
[1368818480289, "traced_errors/index", 1266.0, 449.0],
[1368818480430, "applications/index", 2694.0, 431.0],
[1368818480445, "databases/index", 1552.0, 783.0],
[1368818480646, "pages/home_signup", 9077.0, 328.0],
[1368818480687, "infrastructure/hosts/show", 938.0, 445.0],
[1368818480710, "public_access/charts/show", 375.0, 254.0],
[1368818480843, "public_access/charts/show", 591.0, 264.0],
[1368818480846, "public_access/charts/show", 487.0, 260.0],
[1368818481026, "infrastructure/hosts/index", 1593.0, 755.0],
[1368818481100, "applications/index", 3378.0, 1168.0],
[1368818481195, "applications/index", 1035.0, 549.0],
[1368818481248, "landing_pages/nlp_mobile_monitoring", 10962.0, 1901.0],
[1368818481420, "infrastructure/hosts/show", 939.0, 381.0],
[1368818481480, "traced_errors/index", 1233.0, 744.0],
[1368818481490, "applications/show", 1230.0, 543.0],
[1368818481635, "applications/show", 3166.0, 735.0],
[1368818481638, "platform/plugin_pages/show", 1192.0, 460.0],
[1368818481662, "applications/index", 441.0, 0.0],
[1368818481680, "infrastructure/hosts/show", 2192.0, 1785.0],
[1368818481684, "applications/index", 7226.0, 6403.0],
[1368818481736, "applications/show", 4920.0, 1647.0],
[1368818481760, "traced_errors/index", 1014.0, 509.0],
[1368818481770, "applications/show", 1453.0, 708.0],
[1368818481928, "transactions/index", 1084.0, 537.0],
[1368818481946, "applications/index", 1165.0, 545.0],
[1368818482023, "applications/show", 2621.0, 2131.0],
[1368818482034, "applications/show", 1760.0, 456.0],
[1368818482136, "applications/show", 1192.0, 387.0],
[1368818482173, "optimize/database_report/index", 1396.0, 413.0],
[1368818482191, "applications/show", 1319.0, 539.0],
[1368818482275, "applications/show", 2610.0, 1391.0],
[1368818482311, "applications/index", 1740.0, 730.0],
[1368818482313, "pages/home_signup", 2805.0, 207.0],
[1368818482332, "applications/index", 976.0, 552.0],
[1368818482396, "infrastructure/hosts/index", 1179.0, 468.0],
[1368818482575, "applications/index", 1718.0, 1227.0],
[1368818482669, "applications/show", 3087.0, 2124.0],
[1368818482685, "applications/index", 588.0, 333.0],
[1368818482691, "traced_errors/index", 895.0, 393.0],
[1368818482722, "optimize/scalability_analysis/index", 1909.0, 510.0],
[1368818482773, "pages/home_signup", 1350.0, 179.0],
[1368818482878, "public_access/charts/show", 2729.0, 2420.0],
[1368818482958, "public_access/charts/show", 5356.0, 654.0],
[1368818482961, "custom_views/show", 11477.0, 1483.0],
[1368818482983, "gadgets/dashboard", 930.0, 785.0],
[1368818483090, "environment/index", 2227.0, 1.0],
[1368818483091, "applications/show", 2540.0, 715.0],
[1368818483163, "applications/index", 2410.0, 774.0],
[1368818483195, "infrastructure/hosts/show", 1313.0, 438.0],
[1368818483467, "applications/show", 926.0, 425.0],
[1368818483475, "applications/show", 1379.0, 635.0],
[1368818483646, "applications/show", 1377.0, 882.0],
[1368818483654, "applications/show", 1257.0, 839.0],
[1368818483664, "applications/index", 3576.0, 3172.0],
[1368818483716, "applications/show", 1816.0, 554.0],
[1368818483948, "applications/show", 1197.0, 561.0],
[1368818484001, "infrastructure/hosts/show", 899.0, 405.0],
[1368818484028, "infrastructure/hosts/show", 1951.0, 701.0],
[1368818484046, "infrastructure/hosts/index", 1642.0, 933.0],
[1368818484123, "infrastructure/hosts/index", 2144.0, 453.0],
[1368818484200, "optimize/controller_report/index", 3160.0, 429.0],
[1368818484231, "applications/show", 1332.0, 590.0],
[1368818484236, "applications/show", 1676.0, 602.0],
[1368818484243, "traced_errors/index", 1862.0, 763.0],
[1368818484339, "applications/index", 1151.0, 555.0],
[1368818484376, "mobile_applications/applications/show", 7747.0, 499.0],
[1368818484420, "infrastructure/hosts/show", 1637.0, 583.0],
[1368818484467, "infrastructure/hosts/show", 2459.0, 932.0],
[1368818484511, "applications/show", 1742.0, 589.0],
[1368818484617, "applications/show", 1686.0, 474.0],
[1368818484646, "infrastructure/hosts/show", 1237.0, 406.0],
[1368818484795, "applications/show", 1921.0, 1267.0],
[1368818484931, "public_access/charts/show", 468.0, 151.0],
[1368818485030, "applications/index", 959.0, 425.0],
[1368818485203, "applications/show", 1719.0, 423.0],
[1368818485245, "sessions/new", 2009.0, 204.0],
[1368818485350, "infrastructure/hosts/index", 2123.0, 672.0],
[1368818485375, "applications/show", 3439.0, 730.0],
[1368818485534, "infrastructure/hosts/show", 2480.0, 1361.0],
[1368818485579, "public_access/charts/show", 691.0, 350.0],
[1368818485582, "public_access/charts/show", 692.0, 339.0],
[1368818485587, "public_access/charts/show", 901.0, 342.0],
[1368818485589, "public_access/charts/show", 971.0, 375.0],
[1368818485591, "public_access/charts/show", 988.0, 383.0],
[1368818485600, "public_access/charts/show", 977.0, 366.0],
[1368818485687, "public_access/charts/show", 1138.0, 261.0],
[1368818485702, "public_access/charts/show", 606.0, 253.0],
[1368818485842, "public_access/charts/show", 1150.0, 243.0],
[1368818485843, "public_access/charts/show", 1140.0, 491.0],
[1368818485843, "public_access/charts/show", 1156.0, 249.0],
[1368818485843, "public_access/charts/show", 1153.0, 246.0],
[1368818485844, "public_access/charts/show", 1151.0, 268.0],
[1368818485931, "public_access/charts/show", 1145.0, 478.0],
[1368818486046, "public_access/charts/show", 308.0, 237.0],
[1368818486055, "traced_errors/index", 1200.0, 560.0],
[1368818486059, "public_access/charts/show", 1169.0, 266.0],
[1368818486061, "public_access/charts/show", 1151.0, 493.0],
[1368818486138, "public_access/charts/show", 1565.0, 489.0],
[1368818486171, "public_access/charts/show", 375.0, 237.0],
[1368818486177, "public_access/charts/show", 1002.0, 264.0],
[1368818486178, "applications/index", 1479.0, 549.0],
[1368818486208, "applications/show", 2868.0, 1838.0],
[1368818486218, "infrastructure/hosts/show", 933.0, 420.0],
[1368818486264, "infrastructure/hosts/index", 1534.0, 623.0],
[1368818486286, "applications/show", 1656.0, 1109.0],
[1368818486333, "infrastructure/hosts/index", 1003.0, 505.0],
[1368818486428, "infrastructure/hosts/show", 1345.0, 510.0],
[1368818486435, "applications/show", 1919.0, 702.0],
[1368818486455, "applications/index", 5967.0, 2937.0],
[1368818486467, "applications/index", 1973.0, 418.0],
[1368818486565, "public_access/charts/show", 1687.0, 140.0],
[1368818486715, "applications/show", 9200.0, 853.0],
[1368818486756, "applications/show", 822.0, 340.0],
[1368818486793, "traced_errors/index", 1297.0, 541.0],
[1368818486813, "infrastructure/hosts/index", 31524.0, 1080.0],
[1368818486845, "traced_errors/index", 1519.0, 1051.0],
[1368818486859, "infrastructure/hosts/show", 1549.0, 944.0],
[1368818487029, "infrastructure/hosts/index", 916.0, 382.0],
[1368818487092, "traced_errors/index", 1462.0, 975.0],
[1368818487097, "infrastructure/hosts/show", 1588.0, 652.0],
[1368818487103, "applications/show", 1340.0, 408.0],
[1368818487174, "enduser_applications/regions", 1017.0, 425.0],
[1368818487281, "public_access/charts/show", 281.0, 80.0],
[1368818487329, "ping_targets/index", 966.0, 741.0],
[1368818487339, "applications/show", 787.0, 562.0],
[1368818487448, "platform/plugin_pages/show", 1886.0, 1210.0],
[1368818487448, "platform/plugin_pages/show", 1707.0, 893.0],
[1368818487456, "infrastructure/hosts/index", 3076.0, 749.0],
[1368818487526, "applications/index", 435.0, 0.0],
[1368818487542, "applications/show", 2260.0, 610.0],
[1368818487650, "applications/show", 1285.0, 367.0],
[1368818487652, "applications/index", 949.0, 533.0],
[1368818487676, "infrastructure/hosts/index", 940.0, 422.0],
[1368818487704, "infrastructure/hosts/show", 1619.0, 776.0],
[1368818487715, "public_access/charts/show", 1670.0, 500.0],
[1368818487716, "pages/jobs", 2209.0, 204.0],
[1368818487809, "applications/show", 5645.0, 1191.0],
[1368818487855, "infrastructure/hosts/index", 1742.0, 651.0],
[1368818487881, "landing_pages/slowresponsetime", 1119.0, 0.0],
[1368818487888, "public_access/charts/show", 1675.0, 552.0],
[1368818487931, "infrastructure/hosts/show", 1910.0, 720.0],
[1368818488010, "applications/show", 968.0, 355.0],
[1368818488089, "infrastructure/hosts/index", 2681.0, 345.0],
[1368818488109, "applications/show", 1623.0, 1012.0],
[1368818488226, "applications/index", 1499.0, 354.0],
[1368818488238, "applications/show", 953.0, 560.0],
[1368818488262, "infrastructure/hosts/show", 1000.0, 595.0],
[1368818488284, "public_access/charts/show", 2248.0, 105.0],
[1368818488284, "public_access/charts/show", 2284.0, 503.0],
[1368818488288, "public_access/charts/show", 2217.0, 99.0],
[1368818488291, "public_access/charts/show", 2249.0, 98.0],
[1368818488308, "public_access/charts/show", 2244.0, 110.0],
[1368818488321, "public_access/charts/show", 2285.0, 411.0],
[1368818488322, "public_access/charts/show", 2221.0, 114.0],
[1368818488368, "platform/plugin_pages/show", 1095.0, 390.0],
[1368818488402, "public_access/charts/show", 2293.0, 389.0],
[1368818488434, "custom_views/show", 2658.0, 898.0],
[1368818488435, "traced_errors/index", 927.0, 401.0],
[1368818488512, "public_access/charts/show", 2331.0, 376.0],
[1368818488526, "public_access/charts/show", 2319.0, 95.0],
[1368818488546, "applications/show", 1456.0, 732.0],
[1368818488546, "mobile_applications/applications/show", 1238.0, 568.0],
[1368818488567, "infrastructure/hosts/index", 1524.0, 588.0],
[1368818488574, "applications/index", 1019.0, 379.0],
[1368818488580, "public_access/charts/show", 434.0, 178.0],
[1368818488589, "platform/plugin_pages/show", 1313.0, 769.0],
[1368818488716, "articles/show", 4497.0, 219.0],
[1368818488776, "infrastructure/hosts/index", 1764.0, 1095.0],
[1368818488785, "deployments/index", 2076.0, 1534.0],
[1368818488832, "platform/plugin_pages/show", 2432.0, 661.0],
[1368818488882, "infrastructure/hosts/show", 2306.0, 787.0],
[1368818488882, "applications/show", 2438.0, 989.0],
[1368818488905, "infrastructure/hosts/show", 1643.0, 632.0],
[1368818489046, "infrastructure/hosts/index", 1384.0, 449.0],
[1368818489081, "traced_errors/index", 882.0, 539.0],
[1368818489141, "sessions/new", 1170.0, 94.0],
[1368818489145, "platform/plugin_pages/show", 3057.0, 449.0],
[1368818489215, "applications/show", 1293.0, 633.0],
[1368818489320, "applications/show", 3235.0, 2676.0],
[1368818489329, "infrastructure/hosts/index", 735.0, 347.0],
[1368818489331, "applications/show", 11540.0, 748.0],
[1368818489334, "applications/show", 3215.0, 1185.0],
[1368818489409, "applications/show", 3730.0, 528.0],
[1368818489411, "applications/show", 1259.0, 587.0],
[1368818489486, "infrastructure/hosts/show", 1187.0, 655.0],
[1368818489516, "applications/index", 1875.0, 671.0],
[1368818489537, "public_access/charts/show", 354.0, 130.0],
[1368818489555, "applications/show", 1766.0, 635.0],
[1368818489565, "applications/show", 1191.0, 0.0],
[1368818489647, "applications/show", 1367.0, 769.0],
[1368818489759, "databases/index", 1272.0, 682.0],
[1368818489773, "applications/show", 1459.0, 392.0],
[1368818489897, "public_access/charts/show", 2891.0, 777.0],
[1368818490038, "applications/show", 1768.0, 460.0],
[1368818490055, "infrastructure/hosts/index", 1345.0, 453.0],
[1368818490077, "applications/show", 1005.0, 541.0],
[1368818490238, "applications/show", 2186.0, 818.0],
[1368818490292, "applications/show", 2602.0, 426.0],
[1368818490321, "applications/index", 735.0, 427.0],
[1368818490375, "applications/index", 1469.0, 700.0],
[1368818490402, "infrastructure/hosts/show", 1454.0, 667.0],
[1368818490407, "public_access/charts/show", 213.0, 107.0],
[1368818490450, "infrastructure/hosts/index", 3507.0, 1832.0],
[1368818490467, "infrastructure/hosts/index", 1174.0, 938.0],
[1368818490500, "mobile_applications/applications/show", 906.0, 409.0],
[1368818490505, "infrastructure/hosts/show", 2540.0, 1342.0],
[1368818490506, "public_access/charts/show", 335.0, 251.0],
[1368818490543, "public_access/charts/show", 454.0, 336.0],
[1368818490543, "public_access/charts/show", 546.0, 398.0],
[1368818490546, "public_access/charts/show", 478.0, 360.0],
[1368818490548, "public_access/charts/show", 521.0, 376.0],
[1368818490554, "applications/show", 1410.0, 898.0],
[1368818490818, "applications/show", 1594.0, 546.0],
[1368818490835, "optimize/sla_report/index", 893.0, 514.0],
[1368818490932, "public_access/charts/show", 716.0, 195.0],
[1368818490937, "applications/index", 931.0, 591.0],
[1368818491043, "applications/index", 15313.0, 534.0],
[1368818491128, "public_access/charts/show", 739.0, 160.0],
[1368818491132, "public_access/charts/show", 743.0, 192.0],
[1368818491170, "traced_errors/index", 753.0, 385.0],
[1368818491215, "applications/index", 1454.0, 674.0],
[1368818491222, "public_access/charts/show", 757.0, 169.0],
[1368818491226, "public_access/charts/show", 768.0, 182.0],
[1368818491226, "infrastructure/hosts/show", 1354.0, 498.0],
[1368818491271, "public_access/charts/show", 971.0, 184.0],
[1368818491363, "mobile_applications/applications/show", 996.0, 585.0],
[1368818491372, "public_access/charts/show", 484.0, 135.0],
[1368818491407, "custom_views/show", 1259.0, 553.0],
[1368818491483, "databases/index", 3626.0, 1985.0],
[1368818491485, "public_access/charts/show", 926.0, 286.0],
[1368818491501, "public_access/charts/show", 941.0, 285.0],
[1368818491521, "applications/index", 829.0, 647.0],
[1368818491545, "public_access/charts/show", 993.0, 288.0],
[1368818491562, "public_access/charts/show", 1001.0, 285.0],
[1368818491617, "applications/show", 1435.0, 663.0],
[1368818491623, "public_access/charts/show", 921.0, 286.0],
[1368818491627, "public_access/charts/show", 909.0, 287.0],
[1368818491631, "public_access/charts/show", 897.0, 287.0],
[1368818491633, "public_access/charts/show", 876.0, 288.0],
[1368818491641, "public_access/charts/show", 863.0, 289.0],
[1368818491642, "applications/index", 998.0, 513.0],
[1368818491644, "public_access/charts/show", 851.0, 289.0],
[1368818491646, "public_access/charts/show", 11683.0, 2571.0],
[1368818491668, "traced_errors/index", 774.0, 422.0],
[1368818491668, "public_access/charts/show", 840.0, 290.0],
[1368818491672, "public_access/charts/show", 828.0, 290.0],
[1368818491744, "infrastructure/hosts/index", 1377.0, 617.0],
[1368818491891, "infrastructure/hosts/show", 1272.0, 783.0],
[1368818491965, "infrastructure/hosts/index", 1757.0, 670.0],
[1368818492022, "applications/show", 1635.0, 1003.0],
[1368818492046, "traced_errors/index", 1059.0, 461.0],
[1368818492051, "infrastructure/hosts/show", 1245.0, 537.0],
[1368818492084, "public_access/charts/show", 620.0, 281.0],
[1368818492181, "platform/plugin_pages/show", 5450.0, 877.0],
[1368818492313, "sessions/new", 35863.0, 15224.0],
[1368818492316, "applications/show", 789.0, 477.0],
[1368818492321, "public_access/charts/show", 827.0, 306.0],
[1368818492321, "public_access/charts/show", 361.0, 329.0],
[1368818492326, "public_access/charts/show", 327.0, 305.0],
[1368818492346, "enduser_applications/geographies", 752.0, 410.0],
[1368818492350, "public_access/charts/show", 2115.0, 497.0],
[1368818492501, "public_access/charts/show", 2195.0, 487.0],
[1368818492517, "public_access/charts/show", 2287.0, 488.0],
[1368818492683, "applications/show", 1861.0, 440.0],
[1368818492686, "infrastructure/processes/index", 2802.0, 458.0],
[1368818492769, "infrastructure/hosts/show", 1619.0, 692.0],
[1368818492822, "public_access/charts/show", 2312.0, 356.0],
[1368818492843, "infrastructure/hosts/show", 863.0, 533.0],
[1368818492941, "infrastructure/hosts/show", 2456.0, 663.0],
[1368818492993, "infrastructure/hosts/show", 1919.0, 1042.0],
[1368818493048, "public_access/charts/show", 236.0, 130.0],
[1368818493078, "infrastructure/hosts/get_started", 2072.0, 538.0],
[1368818493119, "applications/show", 809.0, 374.0],
[1368818493201, "infrastructure/hosts/index", 3453.0, 4.0],
[1368818493285, "infrastructure/hosts/index", 1201.0, 397.0],
[1368818493306, "infrastructure/hosts/show", 1973.0, 685.0],
[1368818493379, "public_access/charts/show", 206.0, 172.0],
[1368818493419, "public_access/charts/show", 238.0, 216.0],
[1368818493420, "public_access/charts/show", 209.0, 187.0],
[1368818493432, "public_access/charts/show", 218.0, 196.0],
[1368818493439, "public_access/charts/show", 205.0, 182.0],
[1368818493450, "public_access/charts/show", 209.0, 187.0],
[1368818493455, "public_access/charts/show", 641.0, 389.0],
[1368818493456, "public_access/charts/show", 795.0, 386.0],
[1368818493456, "public_access/charts/show", 309.0, 198.0],
[1368818493469, "infrastructure/hosts/show", 1102.0, 388.0],
[1368818493634, "public_access/charts/show", 233.0, 127.0],
[1368818493635, "applications/show", 960.0, 426.0],
[1368818493640, "infrastructure/hosts/index", 2912.0, 1036.0],
[1368818493641, "public_access/charts/show", 842.0, 386.0],
[1368818493671, "infrastructure/hosts/index", 943.0, 417.0],
[1368818493673, "applications/index", 1154.0, 513.0],
[1368818493673, "public_access/charts/show", 833.0, 388.0],
[1368818493673, "instances/index", 3817.0, 1719.0],
[1368818493708, "public_access/charts/show", 216.0, 194.0],
[1368818493741, "traced_errors/index", 1008.0, 483.0],
[1368818493816, "infrastructure/hosts/index", 1163.0, 483.0],
[1368818493825, "applications/edit", 886.0, 604.0],
[1368818493832, "applications/show", 1165.0, 657.0],
[1368818493858, "public_access/charts/show", 356.0, 230.0],
[1368818493859, "public_access/charts/show", 391.0, 246.0],
[1368818493938, "infrastructure/hosts/index", 2957.0, 1743.0],
[1368818493960, "traced_errors/index", 1748.0, 759.0],
[1368818493962, "applications/index", 993.0, 570.0],
[1368818493968, "public_access/charts/show", 463.0, 285.0],
[1368818493969, "public_access/charts/show", 425.0, 246.0],
[1368818494105, "applications/index", 5720.0, 3532.0],
[1368818494116, "public_access/charts/show", 498.0, 287.0],
[1368818494119, "public_access/charts/show", 527.0, 371.0],
[1368818494125, "applications/show", 2055.0, 663.0],
[1368818494138, "applications/index", 927.0, 811.0],
[1368818494159, "applications/show", 1077.0, 575.0],
[1368818494287, "public_access/charts/show", 594.0, 411.0],
[1368818494287, "public_access/charts/show", 559.0, 392.0],
[1368818494390, "infrastructure/hosts/show", 2032.0, 998.0],
[1368818494394, "public_access/charts/show", 628.0, 411.0],
[1368818494396, "public_access/charts/show", 689.0, 444.0],
[1368818494436, "infrastructure/hosts/show", 1479.0, 624.0],
[1368818494449, "applications/show", 1375.0, 890.0],
[1368818494510, "public_access/charts/show", 869.0, 605.0],
[1368818494512, "public_access/charts/show", 730.0, 476.0],
[1368818494628, "public_access/charts/show", 950.0, 662.0],
[1368818494629, "public_access/charts/show", 909.0, 629.0],
[1368818494657, "applications/show", 5352.0, 2142.0],
[1368818494658, "applications/index", 808.0, 352.0],
[1368818494665, "public_access/charts/show", 991.0, 705.0],
[1368818494708, "applications/show", 1235.0, 588.0],
[1368818494747, "applications/index", 2056.0, 1590.0],
[1368818494782, "applications/show", 1708.0, 450.0],
[1368818494809, "applications/index", 2056.0, 856.0],
[1368818494834, "applications/show", 2074.0, 1739.0],
[1368818494908, "applications/index", 1260.0, 490.0],
[1368818494923, "traced_errors/index", 1598.0, 1098.0],
[1368818494946, "optimize/sla_report/index", 619.0, 385.0],
[1368818495065, "public_access/charts/show", 2777.0, 955.0],
[1368818495065, "public_access/charts/show", 2769.0, 954.0],
[1368818495065, "public_access/charts/show", 2774.0, 956.0],
[1368818495103, "infrastructure/hosts/show", 2210.0, 1968.0],
[1368818495296, "applications/show", 6881.0, 2149.0],
[1368818495407, "applications/show", 1181.0, 477.0],
[1368818495420, "applications/show", 1826.0, 1002.0],
[1368818495449, "mobile_applications/applications/index", 425.0, 217.0],
[1368818495518, "public_access/charts/show", 9828.0, 760.0],
[1368818495554, "public_access/charts/show", 275.0, 177.0],
[1368818495555, "public_access/charts/show", 229.0, 146.0],
[1368818495556, "public_access/charts/show", 486.0, 250.0],
[1368818495558, "public_access/charts/show", 336.0, 211.0],
[1368818495582, "articles/show", 1417.0, 255.0],
[1368818495622, "infrastructure/hosts/show", 3468.0, 897.0],
[1368818495735, "platform/plugin_pages/show", 1165.0, 546.0],
[1368818495806, "infrastructure/hosts/index", 1260.0, 514.0],
[1368818495878, "infrastructure/hosts/index", 1341.0, 794.0],
[1368818495969, "applications/show", 1177.0, 524.0],
[1368818496011, "applications/show", 2410.0, 1386.0],
[1368818496128, "infrastructure/hosts/index", 3270.0, 2503.0],
[1368818496166, "applications/show", 2808.0, 2070.0],
[1368818496186, "infrastructure/hosts/show", 1826.0, 577.0],
[1368818496193, "public_access/charts/show", 4492.0, 955.0],
[1368818496270, "infrastructure/hosts/show", 1044.0, 467.0],
[1368818496433, "applications/index", 1349.0, 620.0],
[1368818496461, "applications/show", 2189.0, 720.0],
[1368818496714, "applications/index", 813.0, 318.0],
[1368818496715, "public_access/charts/show", 824.0, 172.0],
[1368818496762, "transactions/index", 1360.0, 432.0],
[1368818496778, "infrastructure/hosts/show", 1484.0, 756.0],
[1368818496799, "applications/index", 916.0, 402.0],
[1368818496871, "applications/index", 1487.0, 619.0],
[1368818496949, "platform/plugin_pages/show", 1797.0, 1484.0],
[1368818497000, "applications/index", 1534.0, 170.0],
[1368818497066, "databases/index", 3879.0, 2708.0],
[1368818497074, "mobile_applications/applications/show", 958.0, 848.0],
[1368818497146, "transactions/index", 1562.0, 835.0],
[1368818497242, "applications/index", 1057.0, 658.0],
[1368818497244, "sessions/new", 3497.0, 1285.0],
[1368818497264, "applications/index", 1302.0, 693.0],
[1368818497287, "applications/show", 1208.0, 388.0],
[1368818497304, "transactions/index", 1048.0, 401.0],
[1368818497329, "public_access/charts/show", 889.0, 252.0],
[1368818497340, "infrastructure/hosts/index", 12305.0, 628.0],
[1368818497342, "applications/index", 1918.0, 862.0],
[1368818497343, "public_access/charts/show", 903.0, 252.0],
[1368818497358, "infrastructure/hosts/show", 1721.0, 952.0],
[1368818497397, "applications/index", 1655.0, 741.0],
[1368818497406, "public_access/charts/show", 971.0, 256.0],
[1368818497430, "applications/show", 5093.0, 1265.0],
[1368818497433, "traced_errors/index", 4500.0, 1609.0],
[1368818497437, "public_access/charts/show", 980.0, 251.0],
[1368818497443, "applications/index", 446.0, 1.0],
[1368818497462, "public_access/charts/show", 884.0, 253.0],
[1368818497464, "public_access/charts/show", 325.0, 239.0],
[1368818497466, "public_access/charts/show", 873.0, 254.0],
[1368818497468, "public_access/charts/show", 862.0, 255.0],
[1368818497472, "public_access/charts/show", 841.0, 257.0],
[1368818497474, "public_access/charts/show", 829.0, 257.0],
[1368818497481, "public_access/charts/show", 818.0, 258.0],
[1368818497502, "public_access/charts/show", 806.0, 259.0],
[1368818497505, "public_access/charts/show", 795.0, 260.0],
[1368818497553, "applications/index", 7046.0, 2518.0],
[1368818497572, "infrastructure/hosts/index", 2336.0, 836.0],
[1368818497633, "applications/show", 2049.0, 1078.0],
[1368818497683, "public_access/charts/show", 498.0, 314.0],
[1368818497688, "public_access/charts/show", 488.0, 255.0],
[1368818497689, "applications/show", 8939.0, 858.0],
[1368818497723, "infrastructure/hosts/index", 1791.0, 599.0],
[1368818497787, "infrastructure/hosts/index", 3360.0, 974.0],
[1368818497791, "applications/show", 901.0, 402.0],
[1368818497979, "applications/show", 1422.0, 756.0],
[1368818498004, "infrastructure/hosts/index", 1895.0, 670.0],
[1368818498165, "enduser_applications/regions", 550.0, 0.0],
[1368818498168, "applications/show", 1609.0, 1085.0],
[1368818498212, "applications/show", 1062.0, 381.0],
[1368818498249, "traced_errors/index", 1994.0, 492.0],
[1368818498252, "traced_errors/index", 3014.0, 1916.0],
[1368818498275, "infrastructure/hosts/show", 8248.0, 1266.0],
[1368818498290, "users/edit", 1838.0, 1134.0],
[1368818498330, "traced_errors/index", 873.0, 388.0],
[1368818498410, "traced_errors/index", 984.0, 497.0],
[1368818498510, "applications/index", 5808.0, 2967.0],
[1368818498511, "public_access/charts/show", 1035.0, 262.0],
[1368818498534, "applications/show", 1274.0, 738.0],
[1368818498592, "applications/show", 1777.0, 712.0],
[1368818498609, "public_access/charts/show", 301.0, 257.0],
[1368818498620, "public_access/charts/show", 409.0, 273.0],
[1368818498620, "public_access/charts/show", 341.0, 258.0],
[1368818498621, "public_access/charts/show", 367.0, 259.0],
[1368818498623, "public_access/charts/show", 439.0, 285.0],
[1368818498712, "applications/index", 2792.0, 744.0],
[1368818498843, "public_access/charts/show", 1114.0, 272.0],
[1368818498843, "public_access/charts/show", 1064.0, 326.0],
[1368818498845, "public_access/charts/show", 1100.0, 275.0],
[1368818498845, "public_access/charts/show", 1090.0, 279.0],
[1368818498845, "public_access/charts/show", 1077.0, 293.0],
[1368818498866, "applications/index", 978.0, 513.0],
[1368818498958, "applications/show", 977.0, 619.0],
[1368818499001, "applications/show", 1976.0, 1486.0],
[1368818499075, "infrastructure/hosts/show", 2634.0, 1150.0],
[1368818499079, "public_access/charts/show", 1961.0, 506.0],
[1368818499081, "applications/show", 1382.0, 555.0],
[1368818499102, "databases/index", 1042.0, 664.0],
[1368818499280, "applications/index", 838.0, 403.0],
[1368818499293, "platform/plugin_pages/show", 1852.0, 1161.0],
[1368818499324, "public_access/charts/show", 2007.0, 550.0],
[1368818499324, "public_access/charts/show", 1993.0, 586.0],
[1368818499326, "public_access/charts/show", 2019.0, 525.0],
[1368818499327, "public_access/charts/show", 2030.0, 524.0],
[1368818499329, "public_access/charts/show", 2042.0, 515.0],
[1368818499404, "traced_errors/index", 1660.0, 677.0],
[1368818499450, "applications/index", 1615.0, 1143.0],
[1368818499473, "infrastructure/hosts/show", 1753.0, 530.0],
[1368818499518, "applications/show", 1907.0, 747.0],
[1368818499560, "instances/index", 9215.0, 599.0],
[1368818499674, "public_access/charts/show", 552.0, 460.0],
[1368818499727, "traced_errors/index", 1293.0, 471.0],
[1368818499762, "applications/index", 986.0, 624.0],
[1368818499828, "applications/show", 964.0, 344.0],
[1368818499881, "infrastructure/hosts/index", 1093.0, 617.0],
[1368818499892, "transactions/index", 1153.0, 630.0],
[1368818499933, "applications/index", 2174.0, 1681.0],
[1368818499959, "applications/show", 1199.0, 837.0],
[1368818499984, "applications/show", 931.0, 409.0],
[1368818500038, "infrastructure/hosts/index", 1861.0, 956.0],
[1368818500220, "infrastructure/hosts/show", 999.0, 428.0],
[1368818500348, "applications/show", 2269.0, 675.0],
[1368818500385, "public_access/charts/show", 457.0, 325.0],
[1368818500555, "applications/show", 1152.0, 663.0],
[1368818500713, "applications/show", 3272.0, 675.0],
[1368818500835, "applications/show", 2449.0, 1616.0],
[1368818500944, "applications/show", 2200.0, 395.0],
[1368818500952, "public_access/charts/show", 1042.0, 246.0],
[1368818500982, "named_transactions/show", 1064.0, 539.0],
[1368818501083, "applications/show", 1717.0, 760.0],
[1368818501087, "public_access/charts/show", 297.0, 191.0],
[1368818501113, "named_transactions/show", 1368.0, 751.0],
[1368818501268, "applications/index", 1353.0, 498.0],
[1368818501271, "applications/index", 1149.0, 694.0],
[1368818501324, "applications/index", 1056.0, 613.0],
[1368818501335, "applications/index", 862.0, 483.0],
[1368818501401, "applications/index", 1390.0, 886.0],
[1368818501404, "applications/index", 874.0, 347.0],
[1368818501485, "traced_errors/show", 2381.0, 796.0],
[1368818501588, "infrastructure/hosts/show", 2436.0, 771.0],
[1368818501620, "applications/show", 1858.0, 490.0],
[1368818501621, "infrastructure/hosts/index", 939.0, 499.0],
[1368818501709, "public_access/charts/show", 278.0, 101.0],
[1368818501725, "applications/index", 1132.0, 685.0],
[1368818501745, "instances/index", 11018.0, 621.0],
[1368818501784, "infrastructure/hosts/show", 8669.0, 461.0],
[1368818501820, "applications/show", 3275.0, 1950.0],
[1368818501930, "applications/index", 970.0, 551.0],
[1368818501945, "infrastructure/hosts/show", 8424.0, 478.0],
[1368818501949, "instances/index", 10835.0, 888.0],
[1368818501959, "platform/plugin_pages/show", 2300.0, 1011.0],
[1368818501995, "platform/plugin_pages/show", 4648.0, 1124.0],
[1368818502134, "applications/show", 1010.0, 498.0],
[1368818502174, "infrastructure/hosts/index", 850.0, 431.0],
[1368818502181, "pages/home_signup", 5583.0, 409.0],
[1368818502209, "applications/show", 1556.0, 610.0],
[1368818502260, "applications/index", 1187.0, 780.0],
[1368818502285, "applications/show", 1197.0, 520.0],
[1368818502345, "applications/show", 1378.0, 473.0],
[1368818502397, "applications/index", 912.0, 528.0],
[1368818502440, "instances/index", 11011.0, 1252.0],
[1368818502449, "applications/show", 2009.0, 805.0],
[1368818502464, "applications/show", 1306.0, 766.0],
[1368818502549, "applications/show", 1309.0, 436.0],
[1368818502561, "users/edit", 1829.0, 1352.0],
[1368818502570, "traced_errors/index", 1018.0, 533.0],
[1368818502573, "transactions/index", 1267.0, 648.0],
[1368818502631, "applications/show", 1942.0, 704.0],
[1368818502659, "public_access/charts/show", 686.0, 326.0],
[1368818502669, "infrastructure/hosts/show", 8821.0, 481.0],
[1368818502678, "applications/show", 4440.0, 621.0],
[1368818502839, "applications/index", 956.0, 350.0],
[1368818502862, "infrastructure/hosts/index", 1436.0, 501.0],
[1368818502902, "applications/show", 10072.0, 814.0],
[1368818502958, "public_access/charts/show", 610.0, 258.0],
[1368818502987, "applications/show", 1530.0, 818.0],
[1368818503001, "applications/index", 1115.0, 630.0],
[1368818503070, "traced_errors/index", 988.0, 424.0],
[1368818503107, "applications/show", 1858.0, 497.0],
[1368818503183, "infrastructure/hosts/index", 1139.0, 531.0],
[1368818503224, "applications/show", 987.0, 467.0],
[1368818503389, "applications/show", 1974.0, 926.0],
[1368818503409, "applications/index", 899.0, 457.0],
[1368818503483, "platform/plugin_pages/show", 1497.0, 566.0],
[1368818503485, "applications/show", 2855.0, 1232.0],
[1368818503508, "applications/show", 2997.0, 438.0],
[1368818503536, "applications/index", 693.0, 388.0],
[1368818503611, "applications/show", 872.0, 599.0],
[1368818503644, "traced_errors/index", 1029.0, 546.0],
[1368818503649, "traced_errors/index", 819.0, 425.0],
[1368818503755, "transactions/index", 3041.0, 1814.0],
[1368818503838, "applications/index", 2392.0, 567.0],
[1368818503840, "applications/index", 1500.0, 1046.0],
[1368818503936, "applications/show", 1237.0, 784.0],
[1368818503973, "applications/show", 1122.0, 433.0],
[1368818503985, "applications/show", 1001.0, 463.0],
[1368818504053, "applications/show", 887.0, 526.0],
[1368818504089, "applications/index", 892.0, 334.0],
[1368818504138, "applications/show", 1721.0, 882.0],
[1368818504172, "public_access/charts/show", 17850.0, 2753.0],
[1368818504196, "infrastructure/hosts/show", 10043.0, 453.0],
[1368818504364, "applications/show", 1288.0, 872.0],
[1368818504444, "applications/index", 1070.0, 379.0],
[1368818504467, "applications/index", 1231.0, 322.0],
[1368818504542, "public_access/charts/show", 959.0, 252.0],
[1368818504571, "public_access/charts/show", 1028.0, 253.0],
[1368818504572, "public_access/charts/show", 1015.0, 257.0],
[1368818504574, "public_access/charts/show", 1003.0, 262.0],
[1368818504575, "public_access/charts/show", 1043.0, 251.0],
[1368818504685, "traced_errors/index", 1489.0, 445.0],
[1368818504747, "applications/index", 4617.0, 1390.0],
[1368818504925, "applications/show", 772.0, 600.0],
[1368818504931, "applications/show", 1416.0, 654.0],
[1368818504937, "infrastructure/hosts/index", 2661.0, 799.0],
[1368818504969, "applications/index", 881.0, 520.0],
[1368818505001, "applications/show", 1379.0, 680.0],
[1368818505006, "applications/index", 719.0, 381.0],
[1368818505018, "applications/index", 979.0, 364.0],
[1368818505062, "applications/show", 1338.0, 519.0],
[1368818505122, "traced_errors/index", 1468.0, 923.0],
[1368818505448, "applications/index", 1218.0, 422.0],
[1368818505655, "applications/index", 1037.0, 533.0],
[1368818505687, "applications/show", 3292.0, 525.0],
[1368818505707, "applications/index", 1280.0, 844.0],
[1368818505734, "applications/index", 1044.0, 360.0],
[1368818505756, "public_access/charts/show", 431.0, 129.0],
[1368818505859, "applications/show", 1060.0, 896.0],
[1368818505880, "pages/signup_external", 1358.0, 1077.0],
[1368818505888, "articles/show", 2005.0, 229.0],
[1368818505956, "infrastructure/hosts/show", 1530.0, 712.0],
[1368818505964, "infrastructure/hosts/index", 1877.0, 791.0],
[1368818505994, "applications/show", 3368.0, 813.0],
[1368818506018, "applications/index", 866.0, 265.0],
[1368818506033, "applications/show", 3419.0, 601.0],
[1368818506077, "applications/index", 1881.0, 993.0],
[1368818506080, "applications/index", 2166.0, 1690.0],
[1368818506092, "applications/index", 1401.0, 427.0],
[1368818506113, "infrastructure/hosts/show", 1059.0, 528.0],
[1368818506129, "infrastructure/hosts/show", 950.0, 403.0],
[1368818506164, "applications/show", 1323.0, 615.0],
[1368818506265, "public_access/charts/show", 238.0, 121.0],
[1368818506302, "infrastructure/hosts/index", 3042.0, 827.0],
[1368818506335, "public_access/charts/show", 195.0, 125.0],
[1368818506408, "applications/index", 617.0, 415.0],
[1368818506465, "applications/show", 3058.0, 801.0],
[1368818506513, "public_access/charts/show", 219.0, 143.0],
[1368818506516, "applications/index", 2006.0, 560.0],
[1368818506534, "applications/index", 1209.0, 541.0],
[1368818506588, "applications/show", 1034.0, 338.0],
[1368818506616, "sessions/new", 1410.0, 964.0],
[1368818506678, "applications/show", 3268.0, 490.0],
[1368818506682, "applications/show", 2091.0, 383.0],
[1368818506686, "infrastructure/hosts/index", 1016.0, 323.0],
[1368818506720, "traced_errors/index", 772.0, 313.0],
[1368818506833, "infrastructure/hosts/index", 2182.0, 533.0],
[1368818506876, "public_access/charts/show", 1966.0, 343.0],
[1368818506910, "infrastructure/hosts/index", 1291.0, 623.0],
[1368818506949, "public_access/charts/show", 573.0, 250.0],
[1368818507002, "applications/show", 3248.0, 575.0],
[1368818507046, "traced_errors/index", 886.0, 370.0],
[1368818507162, "public_access/charts/show", 176.0, 105.0],
[1368818507190, "infrastructure/hosts/show", 961.0, 478.0],
[1368818507192, "optimize/scalability_analysis/index", 924.0, 583.0],
[1368818507196, "public_access/charts/show", 789.0, 257.0],
[1368818507343, "infrastructure/hosts/index", 1222.0, 521.0],
[1368818507364, "applications/show", 1252.0, 516.0],
[1368818507365, "infrastructure/hosts/index", 867.0, 279.0],
[1368818507398, "applications/show", 1566.0, 503.0],
[1368818507408, "public_access/charts/show", 509.0, 308.0],
[1368818507464, "applications/show", 1161.0, 633.0],
[1368818507664, "infrastructure/hosts/index", 4125.0, 1648.0],
[1368818507738, "applications/index", 950.0, 509.0],
[1368818507866, "infrastructure/hosts/show", 1851.0, 1346.0],
[1368818507962, "applications/show", 1147.0, 510.0],
[1368818508102, "applications/show", 5187.0, 1100.0],
[1368818508223, "applications/index", 1089.0, 361.0],
[1368818508227, "platform/plugin_pages/show", 2225.0, 750.0],
[1368818508261, "applications/show", 681.0, 357.0],
[1368818508390, "public_access/charts/show", 406.0, 307.0],
[1368818508494, "public_access/charts/show", 402.0, 346.0],
[1368818508733, "sessions/new", 764.0, 94.0],
[1368818508844, "applications/show", 1321.0, 606.0],
[1368818508902, "infrastructure/hosts/index", 1373.0, 474.0],
[1368818508925, "applications/index", 833.0, 474.0],
[1368818508925, "applications/show", 1605.0, 816.0],
[1368818508982, "infrastructure/hosts/show", 1336.0, 873.0],
[1368818509030, "infrastructure/hosts/show", 905.0, 519.0],
[1368818509044, "infrastructure/hosts/index", 961.0, 407.0],
[1368818509112, "applications/index", 1497.0, 395.0],
[1368818509350, "traced_errors/index", 3688.0, 1469.0],
[1368818509364, "applications/show", 1487.0, 481.0],
[1368818509422, "infrastructure/hosts/index", 1156.0, 357.0],
[1368818509486, "applications/index", 1593.0, 875.0],
[1368818509635, "traced_errors/index", 968.0, 534.0],
[1368818509668, "applications/show", 1562.0, 615.0],
[1368818509683, "applications/index", 1158.0, 629.0],
[1368818509780, "infrastructure/hosts/show", 2140.0, 185.0],
[1368818509879, "users/edit", 1910.0, 1217.0],
[1368818509887, "infrastructure/hosts/index", 1463.0, 393.0],
[1368818509926, "infrastructure/hosts/index", 1241.0, 494.0],
[1368818509955, "applications/show", 830.0, 386.0],
[1368818509972, "applications/index", 8904.0, 7245.0],
[1368818510007, "public_access/charts/show", 309.0, 121.0],
[1368818510015, "platform/plugin_pages/show", 1184.0, 811.0],
[1368818510046, "public_access/charts/show", 523.0, 309.0],
[1368818510113, "applications/index", 784.0, 314.0],
[1368818510135, "infrastructure/hosts/show", 1777.0, 1243.0],
[1368818510220, "public_access/charts/show", 593.0, 195.0],
[1368818510231, "public_access/charts/show", 370.0, 127.0],
[1368818510234, "public_access/charts/show", 343.0, 141.0],
[1368818510261, "public_access/charts/show", 420.0, 84.0],
[1368818510277, "public_access/charts/show", 418.0, 92.0],
[1368818510277, "public_access/charts/show", 401.0, 92.0],
[1368818510277, "public_access/charts/show", 368.0, 85.0],
[1368818510279, "public_access/charts/show", 439.0, 204.0],
[1368818510315, "components/index", 736.0, 647.0],
[1368818510420, "platform/plugin_pages/show", 2837.0, 2238.0],
[1368818510517, "public_access/charts/show", 599.0, 205.0],
[1368818510562, "public_access/charts/show", 446.0, 217.0],
[1368818510588, "public_access/charts/show", 321.0, 284.0],
[1368818510603, "public_access/charts/show", 168.0, 115.0],
[1368818510613, "infrastructure/hosts/show", 1085.0, 628.0],
[1368818510636, "traced_errors/index", 713.0, 548.0],
[1368818510655, "public_access/charts/show", 399.0, 339.0],
[1368818510696, "infrastructure/network/index", 1308.0, 656.0],
[1368818510723, "gadgets/dashboard", 902.0, 329.0],
[1368818510801, "infrastructure/hosts/show", 1206.0, 623.0],
[1368818510810, "infrastructure/hosts/show", 2904.0, 1803.0],
[1368818510854, "applications/index", 711.0, 377.0],
[1368818510875, "infrastructure/hosts/index", 1725.0, 916.0],
[1368818511013, "infrastructure/hosts/show", 1149.0, 384.0],
[1368818511165, "traced_errors/index", 2903.0, 2200.0],
[1368818511326, "applications/index", 1144.0, 658.0],
[1368818511335, "applications/show", 1063.0, 567.0],
[1368818511413, "infrastructure/hosts/show", 876.0, 549.0],
[1368818511418, "applications/show", 1664.0, 662.0],
[1368818511459, "public_access/charts/show", 954.0, 749.0],
[1368818511466, "applications/index", 1396.0, 823.0],
[1368818511568, "applications/show", 1499.0, 762.0],
[1368818511680, "applications/show", 957.0, 800.0],
[1368818511719, "public_access/charts/show", 692.0, 303.0],
[1368818511720, "public_access/charts/show", 555.0, 170.0],
[1368818511720, "public_access/charts/show", 770.0, 375.0],
[1368818511773, "public_access/charts/show", 1793.0, 1693.0],
[1368818511987, "infrastructure/processes/index", 1928.0, 837.0],
[1368818512021, "mobile_applications/applications/index", 909.0, 510.0],
[1368818512101, "public_access/charts/show", 308.0, 201.0],
[1368818512103, "public_access/charts/show", 209.0, 120.0],
[1368818512103, "public_access/charts/show", 346.0, 218.0],
[1368818512104, "public_access/charts/show", 270.0, 166.0],
[1368818512143, "applications/setup", 5155.0, 1029.0],
[1368818512272, "infrastructure/hosts/index", 1442.0, 591.0],
[1368818512341, "public_access/charts/show", 292.0, 101.0],
[1368818512375, "pages/home_signup", 882.0, 9.0],
[1368818512388, "accounts/(other)", 2590.0, 662.0],
[1368818512390, "accounts/trackers", 2844.0, 1157.0],
[1368818512495, "public_access/charts/show", 414.0, 71.0],
[1368818512496, "applications/show", 1474.0, 494.0],
[1368818512500, "platform/plugin_pages/show", 2157.0, 672.0],
[1368818512538, "applications/show", 1171.0, 713.0],
[1368818512629, "public_access/charts/show", 577.0, 206.0],
[1368818512705, "infrastructure/hosts/show", 1073.0, 592.0],
[1368818512731, "public_access/charts/show", 813.0, 394.0],
[1368818512875, "applications/show", 966.0, 397.0],
[1368818512898, "applications/show", 1406.0, 754.0],
[1368818512949, "infrastructure/hosts/show", 1621.0, 903.0],
[1368818513061, "traced_errors/index", 1714.0, 642.0],
[1368818513137, "infrastructure/hosts/index", 2535.0, 930.0],
[1368818513145, "traced_errors/index", 1178.0, 599.0],
[1368818513173, "public_access/charts/show", 346.0, 318.0],
[1368818513190, "infrastructure/hosts/index", 5978.0, 672.0],
[1368818513203, "public_access/charts/show", 575.0, 551.0],
[1368818513356, "traced_errors/index", 1367.0, 464.0],
[1368818513365, "public_access/charts/show", 1924.0, 341.0],
[1368818513394, "applications/index", 21800.0, 7779.0],
[1368818513465, "platform/plugin_pages/show", 2075.0, 1169.0],
[1368818513561, "applications/show", 1382.0, 804.0],
[1368818513602, "applications/index", 1030.0, 736.0],
[1368818513634, "infrastructure/hosts/show", 2047.0, 1380.0],
[1368818513655, "infrastructure/hosts/index", 1018.0, 423.0],
[1368818513681, "applications/show", 2521.0, 597.0],
[1368818513722, "applications/show", 867.0, 516.0],
[1368818513749, "infrastructure/hosts/index", 1077.0, 419.0],
[1368818513828, "sessions/new", 7111.0, 1164.0],
[1368818513929, "traced_errors/index", 1003.0, 502.0],
[1368818513978, "applications/show", 1129.0, 646.0],
[1368818514149, "applications/show", 902.0, 390.0],
[1368818514198, "applications/index", 1102.0, 487.0],
[1368818514220, "applications/index", 1454.0, 567.0],
[1368818514266, "public_access/charts/show", 436.0, 345.0],
[1368818514282, "traced_errors/index", 1423.0, 868.0],
[1368818514292, "sessions/new", 1539.0, 150.0],
[1368818514337, "public_access/charts/show", 505.0, 414.0],
[1368818514417, "applications/show", 1491.0, 468.0],
[1368818514532, "infrastructure/hosts/index", 3713.0, 2103.0],
[1368818514532, "platform/plugin_pages/show", 5867.0, 662.0],
[1368818514546, "traced_errors/index", 1037.0, 404.0],
[1368818514575, "infrastructure/hosts/show", 2178.0, 1837.0],
[1368818514579, "applications/index", 790.0, 403.0],
[1368818514597, "public_access/charts/show", 1045.0, 251.0],
[1368818514609, "public_access/charts/show", 1055.0, 249.0],
[1368818514611, "public_access/charts/show", 1058.0, 246.0],
[1368818514674, "public_access/charts/show", 324.0, 247.0],
[1368818514678, "applications/index", 1196.0, 435.0],
[1368818514791, "applications/show", 2206.0, 1051.0],
[1368818514815, "named_transactions/index", 1355.0, 739.0],
[1368818514864, "public_access/charts/show", 1354.0, 292.0],
[1368818514864, "public_access/charts/show", 1362.0, 264.0],
[1368818514872, "infrastructure/hosts/index", 1465.0, 790.0],
[1368818514922, "platform/plugin_pages/show", 35472.0, 11018.0],
[1368818515028, "named_transactions/index", 752.0, 371.0],
[1368818515118, "traced_errors/index", 4526.0, 3369.0],
[1368818515165, "infrastructure/hosts/show", 1227.0, 583.0],
[1368818515182, "applications/show", 953.0, 527.0],
[1368818515238, "public_access/charts/show", 184.0, 90.0],
[1368818515248, "infrastructure/hosts/show", 2069.0, 1389.0],
[1368818515267, "infrastructure/hosts/index", 1099.0, 307.0],
[1368818515268, "public_access/charts/show", 199.0, 123.0],
[1368818515335, "applications/index", 1072.0, 443.0],
[1368818515341, "public_access/charts/show", 275.0, 158.0],
[1368818515346, "public_access/charts/show", 273.0, 174.0],
[1368818515393, "applications/show", 1679.0, 1235.0],
[1368818515424, "public_access/charts/show", 440.0, 256.0],
[1368818515429, "public_access/charts/show", 420.0, 267.0],
[1368818515462, "public_access/charts/show", 169.0, 115.0],
[1368818515532, "gadgets/dashboard", 1668.0, 1223.0],
[1368818515565, "platform/plugin_pages/show", 2976.0, 803.0],
[1368818515592, "applications/show", 863.0, 624.0],
[1368818515598, "applications/show", 2497.0, 689.0],
[1368818515650, "infrastructure/hosts/show", 2695.0, 2197.0],
[1368818515651, "public_access/charts/show", 372.0, 312.0],
[1368818515659, "public_access/charts/show", 346.0, 312.0],
[1368818515667, "applications/index", 8290.0, 7282.0],
[1368818515700, "applications/show", 1606.0, 974.0],
[1368818515735, "applications/show", 1723.0, 743.0],
[1368818515789, "applications/index", 3721.0, 833.0],
[1368818515829, "public_access/charts/show", 294.0, 63.0],
[1368818515830, "applications/show", 1861.0, 648.0],
[1368818515989, "gadgets/dashboard", 293.0, 204.0],
[1368818516003, "public_access/charts/show", 475.0, 226.0],
[1368818516005, "public_access/charts/show", 558.0, 249.0],
[1368818516007, "public_access/charts/show", 681.0, 342.0],
[1368818516024, "platform/plugin_pages/show", 1453.0, 935.0],
[1368818516034, "public_access/charts/show", 264.0, 181.0],
[1368818516090, "public_access/charts/show", 287.0, 196.0],
[1368818516136, "applications/show", 2662.0, 512.0],
[1368818516203, "traced_errors/index", 692.0, 380.0],
[1368818516344, "pages/home_signup", 1193.0, 384.0],
[1368818516345, "public_access/charts/show", 986.0, 357.0],
[1368818516346, "applications/show", 3231.0, 1531.0],
[1368818516356, "applications/show", 1233.0, 665.0],
[1368818516357, "applications/show", 5465.0, 852.0],
[1368818516365, "public_access/charts/show", 191.0, 151.0],
[1368818516367, "public_access/charts/show", 1010.0, 233.0],
[1368818516370, "public_access/charts/show", 1036.0, 168.0],
[1368818516376, "public_access/charts/show", 1007.0, 383.0],
[1368818516390, "public_access/charts/show", 1042.0, 339.0],
[1368818516392, "public_access/charts/show", 1059.0, 189.0],
[1368818516398, "infrastructure/hosts/index", 1958.0, 719.0],
[1368818516403, "applications/show", 3994.0, 941.0],
[1368818516433, "public_access/charts/show", 220.0, 172.0],
[1368818516483, "applications/index", 1181.0, 587.0],
[1368818516493, "public_access/charts/show", 1102.0, 222.0],
[1368818516500, "public_access/charts/show", 231.0, 164.0],
[1368818516526, "public_access/charts/show", 1104.0, 179.0],
[1368818516526, "traced_errors/index", 714.0, 410.0],
[1368818516528, "public_access/charts/show", 243.0, 77.0],
[1368818516613, "traced_errors/index", 630.0, 401.0],
[1368818516680, "platform/plugin_pages/show", 1539.0, 603.0],
[1368818516753, "applications/show", 2176.0, 809.0],
[1368818516834, "infrastructure/hosts/index", 3779.0, 590.0],
[1368818516875, "public_access/charts/show", 1503.0, 204.0],
[1368818516915, "landing_pages/thirty_days", 4011.0, 233.0],
[1368818516933, "public_access/charts/show", 217.0, 141.0],
[1368818516987, "public_access/charts/show", 759.0, 312.0],
[1368818516990, "public_access/charts/show", 1205.0, 643.0],
[1368818516999, "public_access/charts/show", 906.0, 456.0],
[1368818517000, "public_access/charts/show", 963.0, 486.0],
[1368818517000, "public_access/charts/show", 1102.0, 573.0],
[1368818517070, "public_access/charts/show", 1944.0, 349.0],
[1368818517071, "public_access/charts/show", 249.0, 165.0],
[1368818517072, "public_access/charts/show", 273.0, 179.0],
[1368818517120, "traced_errors/index", 1445.0, 774.0],
[1368818517142, "applications/show", 1023.0, 575.0],
[1368818517150, "applications/show", 4620.0, 1099.0],
[1368818517329, "infrastructure/hosts/show", 4447.0, 3407.0],
[1368818517347, "applications/index", 2184.0, 384.0],
[1368818517358, "public_access/charts/show", 391.0, 257.0],
[1368818517365, "applications/show", 2678.0, 394.0],
[1368818517551, "public_access/charts/show", 200.0, 146.0],
[1368818517567, "applications/show", 1689.0, 651.0],
[1368818517568, "infrastructure/hosts/show", 1784.0, 892.0],
[1368818517631, "applications/index", 863.0, 451.0],
[1368818517800, "applications/index", 901.0, 304.0],
[1368818517899, "databases/index", 3552.0, 2938.0],
[1368818518011, "applications/show", 2689.0, 1454.0],
[1368818518051, "applications/show", 2753.0, 322.0],
[1368818518098, "applications/index", 1328.0, 838.0],
[1368818518101, "applications/show", 759.0, 369.0],
[1368818518118, "applications/show", 957.0, 410.0],
[1368818518124, "applications/show", 1666.0, 971.0],
[1368818518175, "traced_errors/index", 1304.0, 779.0],
[1368818518183, "mobile_applications/applications/index", 1194.0, 713.0],
[1368818518208, "applications/show", 1445.0, 1240.0],
[1368818518254, "applications/show", 924.0, 446.0],
[1368818518294, "traced_errors/index", 2096.0, 627.0],
[1368818518392, "named_transactions/show", 1180.0, 476.0],
[1368818518419, "infrastructure/hosts/index", 784.0, 300.0],
[1368818518427, "applications/show", 1085.0, 424.0],
[1368818518430, "platform/plugin_pages/show", 927.0, 458.0],
[1368818518455, "platform/plugin_pages/show", 2579.0, 618.0],
[1368818518474, "traced_errors/index", 1028.0, 495.0],
[1368818518494, "applications/index", 2034.0, 783.0],
[1368818518549, "platform/plugin_pages/show", 1244.0, 340.0],
[1368818518560, "public_access/charts/show", 421.0, 292.0],
[1368818518566, "pages/about", 2981.0, 89.0],
[1368818518592, "applications/index", 942.0, 381.0],
[1368818518654, "public_access/charts/show", 726.0, 154.0],
[1368818518664, "applications/index", 1186.0, 705.0],
[1368818518722, "traced_errors/index", 3516.0, 1609.0],
[1368818518876, "public_access/charts/show", 448.0, 90.0],
[1368818518988, "applications/index", 1755.0, 291.0],
[1368818518996, "applications/show", 2738.0, 900.0],
[1368818519037, "applications/show", 1289.0, 596.0],
[1368818519078, "applications/index", 1210.0, 817.0],
[1368818519081, "public_access/charts/show", 649.0, 94.0],
[1368818519082, "infrastructure/hosts/index", 3479.0, 843.0],
[1368818519083, "applications/index", 751.0, 295.0],
[1368818519090, "applications/index", 1171.0, 499.0],
[1368818519181, "applications/show", 2707.0, 645.0],
[1368818519225, "applications/show", 3490.0, 585.0],
[1368818519264, "public_access/charts/show", 690.0, 95.0],
[1368818519272, "applications/show", 2318.0, 1399.0],
[1368818519282, "applications/show", 3784.0, 265.0],
[1368818519293, "applications/show", 2047.0, 1578.0],
[1368818519307, "infrastructure/hosts/index", 3475.0, 590.0],
[1368818519366, "public_access/charts/show", 1071.0, 117.0],
[1368818519402, "public_access/charts/show", 718.0, 125.0],
[1368818519444, "infrastructure/hosts/show", 1652.0, 1103.0],
[1368818519481, "public_access/charts/show", 877.0, 107.0],
[1368818519487, "applications/index", 937.0, 704.0],
[1368818519577, "applications/index", 1252.0, 569.0],
[1368818519604, "custom_views/show", 995.0, 514.0],
[1368818519702, "applications/show", 1043.0, 803.0],
[1368818519702, "traced_errors/show", 753.0, 299.0],
[1368818519724, "applications/show", 906.0, 368.0],
[1368818519758, "applications/show", 2429.0, 524.0],
[1368818519773, "applications/index", 1260.0, 762.0],
[1368818519792, "named_transactions/show", 893.0, 346.0],
[1368818519844, "applications/show", 987.0, 699.0],
[1368818519924, "infrastructure/processes/index", 3460.0, 1033.0],
[1368818519943, "ping_targets/index", 983.0, 720.0]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment