vega过滤器转换不适用于kibana索引

bprjcwpo  于 2021-06-13  发布在  ElasticSearch
关注(0)|答案(0)|浏览(196)

我想做一个 vega 用kibana索引模式绘图。我想先拆下 null 单个字段的第一个值。这个 null 值Map到 -1.0 在这个特定领域。
我遵循这种风格进行转换。我就是这么做的:

{
  $schema: https://vega.github.io/schema/vega-lite/v4.json    
  data: {
    url: {
      %context%: true
      index: test*
      body: {
        size: 10000
      }
    }

    format: {property: "hits.hits"}
    transform:[{
        type: "filter"
        expr: "datum._source['size'] > 0"
    }] 
  }
  mark:{
    type: "point"
    filled: true
    }

  encoding: {
    x: {
      field: _source.price
      type: quantitative
    }
    y: {
      field: _source.size
      type: quantitative
    }
  }
}

未筛选值。我正在尝试的任何转换都不起作用,我的代码可能有问题(尽管 vega 不给出任何错误)

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题