如何绘制基巴纳的移动平均线?

时间:2018-12-07 11:30:36

标签: elasticsearch kibana moving-average

我想在Kibana画连裤袜。我已经使用timelion制作了一些图形,但是我已经看到,使用搜索集结可以使用更多选项。我知道如何进行搜索,但以后不知道如何绘制。 search-aggregations-pipeline-movavg-aggregation后面的这篇文章被很好地理解为搜索汇总,但没有说明如何绘制结果。

例如:

(function($) {
  var hash = window.location.hash
  href = window.location.href.replace(/#.*$/, "");

  $(document).ready(function() {
    if (hash) {
      $(window).scrollTop(0).scrollLeft(0);
      if (window.history && window.history.pushState) {
        window.history.pushState("", "", href);
      } else {
        window.location.href = href;
      }
    }
  });

  $(window).load(function() {
    $(".content").mCustomScrollbar();

    //scroll to location hash
    if (hash) {
      var target = $(hash).parents(".mCustomScrollbar");
      if (target.length) {
        target.mCustomScrollbar("scrollTo", hash);
      }
    }
  });
})(jQuery);

0 个答案:

没有答案