我在timelion中有两个较长的时间序列,分别使用example1
和example2
这样的标签:
.es(q='(supported_version : true) && NOT (token : Alerter) && (upstream: example )').mvavg(window=1h).divide(.es(q='(supported_version : true) && NOT (token : Alerter) && NOT (_exists_:(enriched)) && upstream: example').mvavg(window=1h)).label('example1').yaxis(units='percent',tickDecimals=2).precision(5).lines(show=true,fill=0.5, width=2)
我想画出两者以及它们之间的差异。
当前要实现差异栏,我将它们复制并粘贴如下:
(...first time series...).subtract(...second time series...)
但这是两个漫长而混乱的地方。
如何在不复制和粘贴的情况下绘制差异? (例如,使用标签或将标签分配给两个变量)