-
Overview
向Grafana某个panel中添加超过26条线之后,后续的线显示不出来。
用英语表述maybe:
How to display more than 26 sqls in Grafana ?
-
Solution
You can manually edit the JSON file and replace the letters with numbers in
refId
.Grafana默认添加line后期refId是依据Alphabeta递增的,超过26个英文字母之后,
refId
就变成了NA
。因此改动
NA
为合适字母就可以了,比如AA
,AB
,AC
… -
References