Све функције наведене овде су подржане у:
Функције су наведене без додатних информација. Кликните на функцију да бисте видели све детаље.
Function | Description |
---|---|
forecast | Будућа вредност, максимална, минимална, делта или просечна вредност ставке. |
timeleft | Време у секундама потребно да ставка достигне наведени праг. |
Неке опште напомене о параметрима функције:
Будућа вредност, максимална, минимална, делта или просечна вредност ставке.
Подржани типови вредности: Float, Integer.
Параметри:
now
+ time
; max, min, delta и avg истражују процену вредности ставке на интервалу између now
и now
+ time
.Коментари:
Примери:
forecast(/host/key,#10,1h) #forecast the item value in one hour based on the last 10 values
forecast(/host/key,1h,30m) #forecast the item value in 30 minutes based on the last hour data
forecast(/host/key,1h:now-1d,12h) #forecast the item value in 12 hours based on one hour one day ago
forecast(/host/key,1h,10m,"exponential") #forecast the item value in 10 minutes based on the last hour data and exponential function
forecast(/host/key,1h,2h,"polynomial3","max") #forecast the maximum value the item can reach in the next two hours based on last hour data and cubic (third degree) polynomial
forecast(/host/key,#2,-20m) #estimate the item value 20 minutes ago based on the last two values (this can be more precise than using last(), especially if the item is updated rarely, say, once an hour)
Време у секундама потребно да ставка достигне наведени праг.
Подржани типови вредности: Float, Integer.
Параметри:
Коментари:
Примери:
timeleft(/host/key,#10,0) #the time until the item value reaches zero based on the last 10 values
timeleft(/host/key,1h,100) #the time until the item value reaches 100 based on the last hour data
timeleft(/host/key,1h:now-1d,100) #the time until the item value reaches 100 based on one hour one day ago
timeleft(/host/key,1h,200,"polynomial2") #the time until the item value reaches 200 based on the last hour data and assumption that the item behaves like a quadratic (second degree) polynomial
Погледајте све подржане функције.