aegis icon indicating copy to clipboard operation
aegis copied to clipboard

Service Reliability Algorithm

Results 4 aegis issues
Sort by recently updated
recently updated
newest added

Background: I plan to use the API average RT (response time) or P95 RT as the adaptive current limiting startup threshold. But the current code design makes it difficult for...

I found `calling math.Ceil on a converted integer is pointless (SA4015)`, so reviewed this expression and it seems to be wrong.

link: https://dl.acm.org/doi/10.1145/3570937

Hi, 我在看internal/cpu/cgroup.go 中的 currentcGroup() 函数时, 我发现了一段奇怪的逻辑,这里的if 和 else 分支, 里面的逻辑是一样的。 虽然在else分支里,通过path.Join()做路径拼接的时候, 多了参数col[2], 但在else分支中,col[2] == "/", 所以这个参数是不起作用的。 这个代码的编写,是故意的吗, 它有什么特殊考虑吗? 还是说代码编写有误? 谢谢。 ``` dir := col[2] // When dir is not equal...