SLS日志查询遇到的一些问题
根据执行时间查询结果不准确的问题
原因:索引类型造成的;
解决:进入索引设置,改为double即可;注意,只对更改后的日志生效,之前的旧日志不生效;
一些常用查询语句
查询执行时间大于5秒的
* and __topic__: 访问记录日志 and operation_hours>5
查询平均执行时间大于5秒的
__topic__ : 访问记录日志 |select
avg(operation_hours) as ttm , url,request_time
group by
url,request_time
having
ttm >5
order by
ttm ASC
标签:__,查询,topic,ttm,日志,SLS
From: https://www.cnblogs.com/lovebing/p/17376810.html