我有两个索引:
data_props and ch_groups
。data_props包含:
id, name
。ch_groups包含:
variable, value and timestamp
。
此数据已从MySQL TimeSeries Datasource导入ElasticSearch。
在MySQL中,ch_groups.variable
是引用data_props.id
我的要求是:
对于特定的data_props.id
,请在折线图上点ch_groups.value (Y-Axis)
而不是ch_groups.timestamp (X-Axis)
。
请告诉我如何实现这一目标。