云日志服务 LTS-同比和环比函数:ts_compare函数

时间:2024-07-04 10:52:12

ts_compare函数

用于对比当前时间周期内的计算结果与n秒之前时间周期内的计算结果。ts_compare函数必须按照时间列进行分组(GROUP BY)。

语法:ts_compare(x, n1, n2, n3...)

对比当前时间周期内的计算结果与n1、n2、n3秒之前时间周期内的计算结果。

表4 参数说明

参数名称

描述

类型

是否必选

x

待环比表达式。

double

n?

时间窗口,单位为毫秒。例如3600000(1小时)、86400000(1天)、604800000(1周)、31622400000(1年)。

long

返回值类型:数组。格式为[当前计算结果, n秒前的计算结果, 当前计算结果与n秒前计算结果的比值, n秒前的UNIX时间戳]。

示例:select time,ts_compare(pv,86400000) as diff from (select count(*) as pv,date_histogram(field=time, calendar_interval=day) as time group by time) as t group by time

表5 查询分析结果

类型

场景

查询语句

time,ts_compare(pv,86400000) as diff from (select count(*) as pv,date_histogram(field=time, calendar_interval=day) as time group by time) as t group by time

返回结果

[20,20,1,1698766080000]

support.huaweicloud.com/usermanual-lts/lts_07_0096.html