cartodb/lib/assets/javascripts/cdb/test/demos/profiler.html
zhongjin a96ef233c9 cdb
2020-06-15 12:07:54 +08:00

19 lines
314 B
HTML

<html>
<body>
</body>
<script src="../src/core/profiler.js"></script>
<script>
setInterval(function() {
Profiler.new_value('test', Math.random());
}, 500);
setInterval(function() {
Profiler.new_value('test2', Math.random());
}, 1500);
Profiler.ui();
</script>
</html>