LATENCY GRAPH

语法
LATENCY GRAPH event
可用时间
2.8.13
时间复杂度
O(1)
ACL 分类
@admin, @slow, @dangerous,

为指定事件生成 ASCII 艺术风格的图形。

LATENCY GRAPH 允许您通过最先进的视觉化直观地了解 事件 的延迟趋势。它可用于在诉诸解析 LATENCY HISTORY 中的原始数据或外部工具之前快速掌握情况。

event 的有效值为

  • active-defrag-cycle
  • aof-fsync-always
  • aof-stat
  • aof-rewrite-diff-write
  • aof-rename
  • aof-write
  • aof-write-active-child
  • aof-write-alone
  • aof-write-pending-fsync
  • command
  • expire-cycle
  • eviction-cycle
  • eviction-del
  • fast-command
  • fork
  • rdb-unlink-temp-file

示例

127.0.0.1:6379> latency reset command
(integer) 0
127.0.0.1:6379> debug sleep .1
OK
127.0.0.1:6379> debug sleep .2
OK
127.0.0.1:6379> debug sleep .3
OK
127.0.0.1:6379> debug sleep .5
OK
127.0.0.1:6379> debug sleep .4
OK
127.0.0.1:6379> latency graph command
command - high 500 ms, low 101 ms (all time high 500 ms)
--------------------------------------------------------------------------------
   #_
  _||
 _|||
_||||

11186
542ss
sss

每个图形列下的垂直标签表示事件发生前的秒、分钟、小时或天数。例如,"15s" 表示第一个绘制的事件发生在 15 秒前。

该图形在最小-最大范围内被规范化,因此下排的底线(下划线)是最小值,而上排的 # 是最大值。

有关更多信息,请参阅 延迟监控框架页面

RESP2/RESP3 响应

批量字符串响应: 延迟图形
RATE THIS PAGE
Back to top ↑