python.d/redis: collect `maxmemory` (#9767)
Ilya Mashchenko committed
Aug 17, 2020 at 14:24 UTC
69bce4bc968b4e3b3107ccf8c1021bc1cd06f6cb
1 file changed
+2
-1
collectors/python.d.plugin/redis/redis.chart.py
+2
-1
@@ -51,8 +51,9 @@ CHARTS = {
51
]
52
},
53
'memory': {
54
- 'options': [None, 'Memory utilization', 'KiB', 'memory', 'redis.memory', 'line'],
54
+ 'options': [None, 'Memory utilization', 'KiB', 'memory', 'redis.memory', 'area'],
55
'lines': [
56
+ ['maxmemory', 'max', 'absolute', 1, 1024],
57
['used_memory', 'total', 'absolute', 1, 1024],
58
['used_memory_lua', 'lua', 'absolute', 1, 1024]
59
]