2016-12-29 70 views
0

我有2個格拉法納價格指標(數據源:石墨)顯示something以2種不同貨幣EURPLN的價格。我想顯示這2個指標中的maxSeries,但在比較它們之前,我需要將貨幣轉換爲常見貨幣。我使用divideSeries,PLN度量的貨幣兌換度量,將其轉換爲EUR格拉法納/石墨 - max系列#A和#B

我的問題是,我不能在同樣的方式使用maxSeries以2個參數,像maxSeries(#A,#C)你可以通過#B作爲參數divideSeries。它根本無法正常工作。

我的指標:

#A - stats.gauges.something.EUR.price.removeAbovePercentile(5) 
#B - stats.gauges.currency.EURPLN 
#C - stats.gauges.something.PLN.price.divideSeries(#B) 
#D - maxSeries(#A,#C)  <---- desired output 

當我使用maxSeries上通配符查詢列出多個指標,例如爲:stats.gauges.*.EUR.price.maxSeries()它工作正常。在我的例子中,我需要先做一些轉換,所以我不能簡單地使用通配符。

我該如何做到這一點?

回答

0

我已經使用了Toggle Edit Mode並手動鍵入:maxSeries(#A,#C),但輸出不正確,藍線應該是最大值,但由於某些原因,它不總是最大值。 grafana maxSeries

我必須首先從#A中刪除removeAbovePercentile(5)函數。

相關問題