cartodb-4.42/lib/assets/javascripts/cdb/test/demos/profiler.html

19 lines
314 B
HTML
Raw Normal View History

2024-04-06 13:25:13 +08:00
<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>