如何更改多维数据集指标的步骤?

时间:2012-10-24 15:52:46

标签: cubism.js

我刚开始使用cubism.js

删除示例代码我能够显示两个指标..一个计算(kpi1) - 随机函数,一个来自多维数据集(kpi2)。它在1e4的上下文步骤中完美地工作,只要我将其改为1e3,计算出的一个 - 随机 - 在1s的分辨率下显示正常,而Cube中的那个根本不显示。

这有效:

var context = cubism.context()
    .serverDelay(0)
    .clientDelay(0)
    .step(1e4)
    .size(960);

这不是:

var context = cubism.context()
    .serverDelay(0)
    .clientDelay(0)
    .step(1e3)
    .size(960);

我做错了什么?

<!DOCTYPE html>
<html><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta charset="utf-8">

<title>Dashboard</title>

</head><body><div id="body">


<div id="kpi1"></div>
<div id="kpi2"></div>


<script src="../d3.v2.js"></script>
<script src="../cubism.v1.js"></script>

<script>function random(name) {
  var value = 0,
      values = [],
      i = 0,
      last;
  return context.metric(function(start, stop, step, callback) {
    start = +start, stop = +stop;
    if (isNaN(last)) last = start;
    while (last < stop) {
      last += step;
      value = Math.max(-10, Math.min(10, value + .8 * Math.random() - .4 + .2 * Math.cos(i += .2)));
      values.push(value);
    }
    callback(null, values = values.slice((start - stop) / step));
  }, name);
}</script>

<script>

var context = cubism.context()
    .serverDelay(0)
    .clientDelay(0)
    .step(1e4)
    .size(960);

var foo = random("foo");
var cube = context.cube();

d3.select("#kpi1").call(function(div) {

   div.selectAll(".horizon")
      .data([foo])
    .enter().append("div")
      .attr("class", "horizon")
      .call(context.horizon());

});

d3.select("#kpi2").call(function(div) {

   div.selectAll(".horizon")
      .data([cube.metric("median(cube_compute(ms))")])
    .enter().append("div")
      .attr("class", "horizon")
      .call(context.horizon());

});

</script>

</body></html>

1 个答案:

答案 0 :(得分:4)

Cubism.js支持任何步骤,但Cube后端系统仅支持以下五个步骤之一从存储中进行度量聚合:

  1e4 or 10 seconds
  6e4 or 1 minute
  3e5 or 5 minutes
  36e5 or 1 hour
  864e5 or 1 day

如果您要使用介于这些之间或之下的步骤,则使用pyramidal reducers,Cube将无法利用在较低和最低支持级别进行的预先计算。