0

我需要一些关于 Loki 的帮助。我有如下的 json 日志

{"message": {"reason": "reason1"...}}
{"message": {"reason": "reason2"...}}

我需要打印前 N 个原因。我怎样才能做到这一点?

4

1 回答 1

1

试试下面的 LogQL

topk(N, sum by (reason) (count_over_time({filename="xxxxx"} | json [1d])))
于 2021-08-04T15:15:50.593 回答